Utilities for FastAPI projects.
Project description
FastAPI SDK
A powerful SDK for building FastAPI applications with built-in authentication, authorization, and CRUD operations.
Features
-
🔐 Authentication & Authorization
- JWT-based authentication
- Role-based access control
- Fine-grained permissions
- User claims management
-
🗄️ Database Operations
- Automatic CRUD operations
- Soft delete support
- Pagination
- Relationship handling
-
🛡️ Security
- Ownership-based access control
- Permission-based authorization
- Role-based access control
- Secure token handling
-
📝 Type Safety
- Pydantic model integration
- Type hints throughout
- Automatic validation
- OpenAPI documentation
Documentation
- Route Controller Documentation - Learn how to create CRUD routes with authentication and permissions
- Model Controller Documentation - Understand how to implement database operations and relationships
Quick Start
Using UV, start a new project from within the folder you wish to create it.
The project requires Python 3.13 or above.
uv init
uv venv
source .venv/bin/activaye
uv add fastapi-sdk
In order to test authentication, we need a set of asymmetric encryption keys for test access tokens. Generate the two keys using the command below:
openssl genrsa -des3 -out test_private_encrypted.pem 2048
openssl rsa -pubout -in test_private_encrypted.pem -out test_public_key.pem
openssl rsa -in test_private_encrypted.pem -out test_private_key.pem -outform PEM
This will create three keys:
test_private_encrypted.pem(keep safe somewhere)test_private_key.pemtest_public_key.pem
We will use the test_private_key.pem key to encrypt our JWT tokens and test_public_key.pem to decrypt them (asymmetric encryption).
Those test keys can added to the repository for ease of setup and running CI/CD testing.
Add the value of each key to your environment:
# .env.local
export TEST_PRIVATE_KEY_PATH="test_private_key.pem"
export TEST_PUBLIC_KEY_PATH="test_public_key.pem"
For the API to work in the real world, you will need settings for Fauthy authentication. Create a new tenant and use the client_id which will be required to get the public JWKs.
# .env.local
export AUTH_ISSUER="https://identity.piot.co.uk"
export AUTH_CLIENT_ID="test_client_id" # Replace with real client_id for production
Then some api settings:
# .env.local
export PUBLIC_ROUTES="/public/*,/other"
export ENVIRONMENT="development" # Replace with production when deploying to live server
A full .env.local complete included the MongoDB connection string:
export AUTH_PRIVATE_KEY="test_private_key.pem"
export AUTH_PUBLIC_KEY="test_public_key.pem"
export AUTH_ISSUER="https://identity.piot.co.uk"
export AUTH_CLIENT_ID="test_client_id" # Replace with real client_id for production
export PUBLIC_ROUTES="/public/*,/other"
export ENVIRONMENT="development" # Replace with production when deploying to live server
export MONGO_DATABASE_URI="mongodb://localhost:27017"
export MONGO_DATABASE_NAME="fastapi_sdk_test"
from fastapi import FastAPI
from fastapi_sdk.controllers.route import RouteController
from fastapi_sdk.middleware.auth import AuthMiddleware
from fastapi_sdk.controllers import ModelController
from fastapi_sdk.controllers.model import OwnershipRule
from tests.models import AccountModel
from tests.schemas import (
AccountCreate,
AccountResponse,
AccountUpdate,
)
class Account(ModelController):
"""Account controller."""
model = AccountModel
schema_create = AccountCreate
schema_update = AccountUpdate
schema_response = AccountResponse
cascade_delete = True # Will delete related projects and tasks
ownership_rule = OwnershipRule(
claim_field="account_id",
model_field="uuid",
allow_public=False,
)
relationships = {
"projects": {
"type": "one_to_many",
"controller": "Project",
"foreign_key": "account_id",
}
}
app = FastAPI()
# Add authentication middleware
app.add_middleware(
AuthMiddleware,
public_routes=["/docs", "/openapi.json"], # Routes that don't require authentication
auth_issuer="https://your-auth-server.com", # The issuer of the JWT tokens
auth_client_id="your-client-id", # Your application's client ID
env="prod", # Environment: "test" or "prod"
# Optional: Test environment keys
test_private_key_path="path/to/private.key", # Only needed for test environment
test_public_key_path="path/to/public.key", # Only needed for test environment
)
# Create a route controller
account_routes = RouteController(
prefix="/accounts",
tags=["accounts"],
controller=AccountController,
get_db=get_db,
schema_response=AccountResponse,
schema_response_paginated=BaseResponsePaginated[AccountResponse],
schema_create=AccountCreate,
schema_update=AccountUpdate,
)
# Include routes
app.include_router(account_routes.router)
Development
Setup
- Clone the repository
- Install dependencies:
uv sync
Running Tests
pytest
License
MIT License - see LICENSE file for details
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 fastapi_sdk-0.9.1.tar.gz.
File metadata
- Download URL: fastapi_sdk-0.9.1.tar.gz
- Upload date:
- Size: 39.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5adafcb7c8c6520165fa3ed02d9ab992c4ce056ed6d72bda7f7ae70a804c729f
|
|
| MD5 |
a44bd08d7b1478debbfb5a39cbc30e54
|
|
| BLAKE2b-256 |
e82186da6ce2b06cdf711d0ab9288e7dd74b7536e5e2d80b7a9d9c0de957df94
|
Provenance
The following attestation bundles were made for fastapi_sdk-0.9.1.tar.gz:
Publisher:
python-publish.yml on Studio-Piot/fastapi-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapi_sdk-0.9.1.tar.gz -
Subject digest:
5adafcb7c8c6520165fa3ed02d9ab992c4ce056ed6d72bda7f7ae70a804c729f - Sigstore transparency entry: 514615942
- Sigstore integration time:
-
Permalink:
Studio-Piot/fastapi-sdk@839d4550fe2cc54e774a07a926d89beb30b9fe16 -
Branch / Tag:
refs/tags/v0.9.1 - Owner: https://github.com/Studio-Piot
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@839d4550fe2cc54e774a07a926d89beb30b9fe16 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapi_sdk-0.9.1-py3-none-any.whl.
File metadata
- Download URL: fastapi_sdk-0.9.1-py3-none-any.whl
- Upload date:
- Size: 23.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
301b5b78a4285e2234636903ab966abf57884d79e079c6a3fef22345a6edb621
|
|
| MD5 |
58a4a049fc3dfab483c78691d393d660
|
|
| BLAKE2b-256 |
62c707f70528c7e251257a2429e71a9f062b1853e0468a751381e3a692e3b775
|
Provenance
The following attestation bundles were made for fastapi_sdk-0.9.1-py3-none-any.whl:
Publisher:
python-publish.yml on Studio-Piot/fastapi-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapi_sdk-0.9.1-py3-none-any.whl -
Subject digest:
301b5b78a4285e2234636903ab966abf57884d79e079c6a3fef22345a6edb621 - Sigstore transparency entry: 514615946
- Sigstore integration time:
-
Permalink:
Studio-Piot/fastapi-sdk@839d4550fe2cc54e774a07a926d89beb30b9fe16 -
Branch / Tag:
refs/tags/v0.9.1 - Owner: https://github.com/Studio-Piot
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@839d4550fe2cc54e774a07a926d89beb30b9fe16 -
Trigger Event:
release
-
Statement type: