Socket
Socket
Sign inDemoInstall

Flask-Turbolinks

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    Flask-Turbolinks

Turbolinks for Flask.


Maintainers
1

Readme

.. image:: https://travis-ci.org/lepture/flask-turbolinks.png?branch=master :target: https://travis-ci.org/lepture/flask-turbolinks .. image:: https://coveralls.io/repos/lepture/flask-turbolinks/badge.png?branch=master :target: https://coveralls.io/r/lepture/flask-turbolinks

Turbolinks for Flask.

Turbolinks makes following links in your web application faster. For more information, visit the original rails repo: turbolinks.js_.

Installation

To install Flask-Turbolinks, simply::

$ pip install Flask-Turbolinks

Or alternatively if you don't have pip::

$ easy_install Flask-Turbolinks

Usage

To enable turbolinks, you need to put turbolinks.js_ in the <head> of your html templates.

The backend flask app should be wrapped with turbolinks::

from flask import Flask
from flask_turbolinks import turbolinks

app = Flask(__name__)
# you app should has a secret key for session
app.secret_key = 'secret'

turbolinks(app)

And everything works now, no more configuration.

.. _turbolinks.js: https://github.com/rails/turbolinks

Note

You can install the javascript code with component::

$ component install lepture/flask-turbolinks

You can also grab the code from turbolinks.js on GitHub. It is written in CoffeeScript, you can compile it with::

coffee -c turbolinks.js.coffee

Demo

There is a demo in the example directory, start a server and open the url with Chrome. View the requests with developer tools of Chrome.

Credits

Thanks for rails, thanks for the help of Rei_.

.. _Rei: https://github.com/chloerei

Changelog

We keep the changelog on GitHub releases_.

.. _GitHub releases: https://github.com/lepture/flask-turbolinks/releases

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc