Flask-Session is an extension for Flask that adds support for server-side sessions to your application.
Install and update using pip:
$ pip install flask-session
from flask import Flask, session
from flask_session import Session
app = Flask(__name__)
# Check Configuration section for more details
SESSION_TYPE = 'redis'
app.config.from_object(__name__)
Session(app)
@app.route('/set/')
def set():
session['key'] = 'value'
return 'ok'
@app.route('/get/')
def get():
return session.get('key', 'not set')
- Redis
- Memcached
- FileSystem
- MongoDB
- SQLALchemy
Learn more at the official Flask-Session Documentation.
The Pallets organization develops and supports Flask-Session and other popular packages. In order to grow the community of contributors and users, and allow the maintainers to devote more time to the projects, please donate today.