A session middleware for Starlette and FastAPI
Project description
FastSession
FastSession is a session management library for FastAPI.
It provides a middleware, FastSessionMiddleware
,
that helps you manage user sessions effectively in your FastAPI applications.
Features
Only the session ID is stored as a browser cookie. (Similar to Java Servlet and Node.js express session)
The session ID can be shared only through signed and confidential communication channels, and since no session contents are stored in the browser, an extremely secure session system can be built.
- Session ID generation and session data storage.
- Session cookie management with signature verification for enhanced security.
- In-memory store for session data enabled.
Installation
Use the package manager PIP to install FastSession.
pip install fastsession
Usage
Here is a basic usage example:
import uvicorn
from fastapi import FastAPI, Request
from fastapi.staticfiles import StaticFiles
from fastsession import FastSessionMiddleware, MemoryStore
HOST = 'localhost'
PORT = 18080
app = FastAPI()
app.add_middleware(FastSessionMiddleware,
secret_key="my-secret-key", # Key for cookie signature
store=MemoryStore(), # Store for session saving
http_only=True, # True: Cookie cannot be accessed from client-side scripts such as JavaScript
secure=False, # True: Requires Https
max_age=0,
# When 0 is specified, it is only effective while the browser is active. If a value greater than 0 is specified, the session will continue for the specified time even after closing the browser
session_cookie="sid", # Name of the session cookie
session_object="session" # Attribute name of the Session manager under request.state
)
@app.get("/session_test")
async def session_test(request: Request):
# get session manager
session_mgr = request.state.session
# get session store (dictionary)
session = session_mgr.get_session()
# get session id
session_id = session_mgr.get_session_id()
print(f"sessionID:{session_id}")
if "test_counter" not in session:
session["test_counter"] = 0
session["test_counter"] += 1
return {"test_counter": session['test_counter']}
app.mount("/", StaticFiles(directory="html", html=True), name="public")
def start_server():
uvicorn.run(app, host=HOST, port=PORT)
def main():
start_server()
if __name__ == "__main__":
main()
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
Built Distribution
File details
Details for the file FastSession-0.1.1.tar.gz
.
File metadata
- Download URL: FastSession-0.1.1.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2365b8a1a5bfc4ef828886739f60f85eba9a469683722e15fa30af530ecc405 |
|
MD5 | f253e236d52d904d15d1d5eb9e447b92 |
|
BLAKE2b-256 | 9e89aeeadd6415ff304231ee8fe32af806f839f6683aad10f4e99f3e440b46be |
File details
Details for the file FastSession-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: FastSession-0.1.1-py3-none-any.whl
- Upload date:
- Size: 16.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33aa2c865995af3e65c6654e1c55e203c8bc1b7907071ad070e946f2ad283163 |
|
MD5 | 2614751843d6c3982ba36900f0e9d692 |
|
BLAKE2b-256 | dae30722fdaf7fd9fd4ddbf7e7a98d82a6151e62f000c568e02355222ca0df1f |