Transfer copyright, bump version

This commit is contained in:
Kroket Ltd
2022-11-13 02:12:23 +02:00
parent 65b44db7df
commit 3e6b102b34
8 changed files with 22 additions and 14 deletions
+3 -1
View File
@@ -144,9 +144,11 @@ app.session_interface.serialize = pickle
At any point you may interface with the session back-end directly:
```python3
from quart_session.sessions import SessionInterface
@app.route("/")
async def hello():
cache = app.session_interface
cache: SessionInterface = app.session_interface
await cache.set("random_key", "val", expiry=3600)
data = await cache.get("random_key")
```