Skip to main content

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

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.pem
  • test_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

  1. Clone the repository
  2. Install dependencies:
uv sync

Running Tests

pytest

License

MIT License - see LICENSE file for details

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

fastapi_sdk-0.5.5.tar.gz (26.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fastapi_sdk-0.5.5-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_sdk-0.5.5.tar.gz.

File metadata

  • Download URL: fastapi_sdk-0.5.5.tar.gz
  • Upload date:
  • Size: 26.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fastapi_sdk-0.5.5.tar.gz
Algorithm Hash digest
SHA256 28d28d5c0f0833efca5fe2f97d66bcf13047f335a48d53b20daa6986fc560e74
MD5 62d541a71d5839c3a19c5f1a3ffbf323
BLAKE2b-256 b184db7fb3ceaa1b5896d67f1e256b91dcea5b7696e6585d0e85c010097779a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastapi_sdk-0.5.5.tar.gz:

Publisher: python-publish.yml on Studio-Piot/fastapi-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastapi_sdk-0.5.5-py3-none-any.whl.

File metadata

  • Download URL: fastapi_sdk-0.5.5-py3-none-any.whl
  • Upload date:
  • Size: 17.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fastapi_sdk-0.5.5-py3-none-any.whl
Algorithm Hash digest
SHA256 e9080f029102a47de74b0e083323c348d1d6a2a323332f066acac36804cd8081
MD5 187ab46937e01c9e7f1848a65c929526
BLAKE2b-256 def92846e980f5f2155f4eec130d4cd0b5b644ab1e33846032057273fce78bb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastapi_sdk-0.5.5-py3-none-any.whl:

Publisher: python-publish.yml on Studio-Piot/fastapi-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page