Skip to main content

Server-side session support for Flask

Project description

Flask-Session

Flask-Session

Flask-Session is an extension for Flask that adds support for server-side sessions to your application.

GitHub Actions Workflow Status Documentation status BSD-3 Clause License Common Changelog Code style: ruff PyPI - Latest Version PyPI - Python Version Discord PyPI - Downloads

Installing

Install and update using pip:

$ pip install flask-session

A Simple Example

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')

Supported Storage Types

  • Redis

  • Memcached

  • FileSystem

  • MongoDB

  • SQLALchemy

Documentation

Learn more at the official Flask-Session Documentation.

Maintainers

Contribute

Thanks to all those who have contributed to Flask-Session. A full list can be found at CONTRIBUTORS.md.

If you want to contribute, please check the CONTRIBUTING.rst.

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_session-0.8.0.tar.gz (940.3 kB view details)

Uploaded Source

Built Distribution

flask_session-0.8.0-py3-none-any.whl (24.4 kB view details)

Uploaded Python 3

File details

Details for the file flask_session-0.8.0.tar.gz.

File metadata

  • Download URL: flask_session-0.8.0.tar.gz
  • Upload date:
  • Size: 940.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for flask_session-0.8.0.tar.gz
Algorithm Hash digest
SHA256 20e045eb01103694e70be4a49f3a80dbb1b57296a22dc6f44bbf3f83ef0742ff
MD5 88b4e9839faf8a8111f08c5b90ae44da
BLAKE2b-256 86d70ba4180513abe28eadc208123c76f9f09e290d5939fb2eb68323b9733354

See more details on using hashes here.

File details

Details for the file flask_session-0.8.0-py3-none-any.whl.

File metadata

File hashes

Hashes for flask_session-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5dae6e9ddab334f8dc4dea4305af37851f4e7dc0f484caf3351184001195e3b7
MD5 8dd4168434905828552425b544881630
BLAKE2b-256 671bf085ceebb825d1cfaf078852b67cd248a33af2905f40ba9860cc006d966b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page