Provides server-backed sessions for Sanic using Redis, Memcache and more.
Project description
Sanic session management for humans
sanic_session
is session management extension for Sanic that integrates server-backed sessions with most convenient API.
sanic_session
provides a number of session interfaces for you to store a client's session data. The interfaces available right now are:
- Redis (supports both drivers
aioredis
andasyncio_redis
) - Memcache (via
aiomcache
) - Mongodb (via
sanic_motor
andpymongo
) - In-Memory (suitable for testing and development environments)
Installation
Install with pip
(there is other options for different drivers, check documentation):
pip install sanic_session
or if you prefer Pipenv
:
pipenv install sanic_session
Documentation
Documentation is available at sanic-session.readthedocs.io.
Example
A simple example uses the in-memory session interface.
from sanic import Sanic
from sanic.response import text
from sanic_session import Session, InMemorySessionInterface
app = Sanic()
session = Session(app, interface=InMemorySessionInterface())
@app.route("/")
async def index(request):
# interact with the session like a normal dict
if not request['session'].get('foo'):
request['session']['foo'] = 0
request['session']['foo'] += 1
return text(request['session']['foo'])
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000, debug=True)
Examples of using redis and memcache backed sessions can be found in the documentation, under Using the Interfaces.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sanic_session-0.4.0.tar.gz
.
File metadata
- Download URL: sanic_session-0.4.0.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5e8e21935eb38e3dfe8ab13551b0f3b18cbb9f927bba4c1599b39ad3232d65e |
|
MD5 | ffc783a0bdab606a4e662d6cfc33e73a |
|
BLAKE2b-256 | dd567b77fb86e6bbb60c11a36293d97f689c7383561ceb62be0f60c481d4776a |
File details
Details for the file sanic_session-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: sanic_session-0.4.0-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74cece1ba89d586fe10e11848edca9d4f0d367f5a4a969f7b5325e86285b3a72 |
|
MD5 | bb6874424c53e634b8c8190f24436cef |
|
BLAKE2b-256 | 4c5ccf7686d9d2f074e1f62910eeff3b3e4303366a44d34a8f880f49d3960bbf |