session-fernet-asgi

Provides an encrypted and signed session that is stored as a Fernet token on the client


Keywords
middleware, asgi, session, fernet
License
MIT
Install
pip install session-fernet-asgi==0.2

Documentation

ASGI session middleware

Provides an encrypted and signed session that is stored as a Fernet token on the client.

Contributing

Before committing, run the following and check if it succeeds:

pip install --user -r requirements-dev.txt && \
black session_fernet_asgi.py && \
pylint session_fernet_asgi.py && \
pytest && \
coverage report --fail-under=100