JWT validation middleware for Swarmauri applications.
Project description
Swarmauri Middleware JWT
JWTMiddleware validates JSON Web Tokens (JWT) issued to FastAPI-based
Swarmauri services. The middleware expects a Bearer token in the
Authorization header, decodes it with the configured secret and algorithm,
and stores the decoded payload on request.state.jwt_payload. Requests with
missing or invalid tokens receive an HTTP 401 response.
Installation
pip
pip install swarmauri_middleware_jwt
Poetry
poetry add swarmauri_middleware_jwt
uv
# Install uv (see https://docs.astral.sh/uv/) if it is not already available
curl -LsSf https://astral.sh/uv/install.sh | sh
# Use uv to add the middleware to your environment
uv pip install swarmauri_middleware_jwt
Example
The example below attaches JWTMiddleware to a FastAPI application, issues a
token using PyJWT, and performs a request that reads the decoded payload
from request.state.
from fastapi import FastAPI, Request
from starlette.testclient import TestClient
import jwt
from swarmauri_middleware_jwt import JWTMiddleware
SECRET_KEY = "change-me"
app = FastAPI()
# Register the middleware with the FastAPI app
jwt_middleware = JWTMiddleware(secret_key=SECRET_KEY)
app.middleware("http")(jwt_middleware.dispatch)
@app.get("/protected")
async def protected_route(request: Request):
return {"subject": request.state.jwt_payload["sub"]}
def run_example() -> dict:
token = jwt.encode({"sub": "demo-user"}, SECRET_KEY, algorithm="HS256")
client = TestClient(app)
response = client.get(
"/protected", headers={"Authorization": f"Bearer {token}"}
)
response.raise_for_status()
return response.json()
if __name__ == "__main__":
print(run_example())
Want to help?
If you want to contribute to swarmauri-sdk, read up on our guidelines for contributing that will help you get started.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swarmauri_middleware_jwt-0.8.0.dev46.tar.gz.
File metadata
- Download URL: swarmauri_middleware_jwt-0.8.0.dev46.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef35c797541b1a4d5179f70427599e46a136a47f553fda2638bb0050cc2f5d49
|
|
| MD5 |
d0cb158dc800c365314d794cc4dea6bb
|
|
| BLAKE2b-256 |
7e94170e3f2f8c2858defa53964d365254956ab65215380315782fe503e6484a
|
File details
Details for the file swarmauri_middleware_jwt-0.8.0.dev46-py3-none-any.whl.
File metadata
- Download URL: swarmauri_middleware_jwt-0.8.0.dev46-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e26e23da98e294cc1d8d5614ff2196c4d6e88ac1dfb3661f4ff8fbe4f2a4da9
|
|
| MD5 |
96cfb2c0100d4292eea860b86e8e1f07
|
|
| BLAKE2b-256 |
7cf0561626ae5ed4b22d01ac0492df6356033eeda445e8a52f10c85862871e8f
|