Turbolinks for Flask.
Project description
Turbolinks for Flask.
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.
Note
This project does not contain the javascript code, you need to grab the code from turbolinks.js on GitHub. It is written in CoffeeScript, you can compile it with:
coffee -c turbolinks.js.coffee
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Flask-Turbolinks-0.1.0.tar.gz
(3.1 kB
view hashes)