Quart-Session is an extension for Quart that adds support for server-side sessions to your application.
Based on flask-session.
Quart-Session can be installed via pipenv or pip,
$ pipenv install quart-session
$ pip install quart-session
and requires Python 3.7.0 or higher. A minimal Quart-Session example is:
from quart import Quart, session
from quart_session import Session
app = Quart(__name__)
app.config['SESSION_TYPE'] = 'redis'
Session(app)
@app.route('/')
async def hello():
session["foo"] = "bar"
return "session key 'foo' set"
@app.route('/foo')
async def foo():
return session.get("foo", "session key 'foo' not found")
app.run()
via redis>=4.4.0
.
app = Quart(__name__)
app.config['SESSION_TYPE'] = 'redis'
Session(app)
By default, Quart-session connects to Redis at 127.0.0.1:6379
. If you
have a different location, use SESSION_URI
app = Quart(__name__)
app.config['SESSION_TYPE'] = 'redis'
app.config['SESSION_URI'] = 'redis://:password@localhost:6379'
Alternatively, for extra control, you may provide your own aioredis.Client
instance altogether.
app = Quart(__name__)
app.config['SESSION_TYPE'] = 'redis'
@app.before_serving
async def setup():
cache = await aioredis.Redis(
host="foobar.com",
port=6379,
password="foobar"
)
app.config['SESSION_REDIS'] = cache
Session(app)
Quart-Session comes with an (experimental) Redis client for use with the Trio eventloop.
from quart_trio import QuartTrio
from quart_session.redis_trio.client import RedisTrio
app = QuartTrio(__name__)
app.config['SESSION_TYPE'] = 'redis'
Session(app)
via aiomcache
.
app = Quart(__name__)
app.config['SESSION_TYPE'] = 'memcached'
Session(app)
via motor
.
app = Quart(__name__)
app.config['SESSION_TYPE'] = 'mongodb'
app.config['SESSION_MONGODB_URI'] = 'mongodb://localhost:27017/my_database'
app.config['SESSION_MONGODB_COLLECTION'] = 'sessions'
Session(app)
flask-session uses pickle
for session data while Quart-Session uses a JSON serializer
capable of serializing the usual JSON types, as well as: Tuple
, Bytes
,
Markup
, UUID
, and DateTime
.
JSON as session data allows for greater interoperability with other programs/languages that might want to read session data straight from a back-end.
If for some unholy reason you prefer pickle
or your own serializer,
app = Quart(__name__)
app.config['SESSION_TYPE'] = 'redis'
Session(app)
try:
import cPickle as pickle
except ImportError:
import pickle
app.session_interface.serialize = pickle
At any point you may interface with the session back-end directly:
from quart_session.sessions import SessionInterface
@app.route("/")
async def hello():
cache: SessionInterface = app.session_interface
await cache.set("random_key", "val", expiry=3600)
data = await cache.get("random_key")
The interface will have the get
, set
, and delete
methods available (regardless of
back-end - similar to how aiocache works).
flask-session sets a session for each incoming request, including static files. From experience, this often puts unneeded load on underlying session infrastructure, especially in high-traffic environments.
Quart-Session only contacts the back-end when a session changed (or created). In addition,
static file serves never emit a Set-Cookie
header. If you'd like to enable
this though, set SESSION_STATIC_FILE
to True
.
Associates an user's session to his/her IP address. This mitigates cookie stealing via XSS etc, and is handy for web applications that require extra security.
app = Quart(__name__)
app.config['SESSION_TYPE'] = 'redis'
app.config['SESSION_PROTECTION'] = True
Session(app)
Session reuse from a different IP will now result in the creation of a new session, and the deletion of the old.
Important: If your application is behind a reverse proxy, it most
likely provides the X-Forwarded-For
header which you must make use of
by explicitly setting SESSION_REVERSE_PROXY
to True
.
FileSystemSessionInterface
GoogleCloudDatastoreSessionInterface
- Pytest
This library works very similarly to flask-session. The changes are specified below:
- Quart-Session does not emit a
Set-Cookie
on every request. - Quart-Session does not emit a
Set-Cookie
on static file serves. - Quart-Session uses a different serializer:
quart.json.tag.TaggedJSONSerializer
instead ofpickle
. - Quart-Session disallows the client to supply their own made up
sid
cookie value. - Quart-Session can do session protection.
- Quart-Session might not have all the back-end interfaces implemented (yet), such as "filesystem".
Find the Quart folk on gitter or open an issue.
BSD