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

Installation

pip install fastapi-sdk

Quick Start

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.4.0.tar.gz (16.9 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.4.0-py3-none-any.whl (13.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: fastapi_sdk-0.4.0.tar.gz
  • Upload date:
  • Size: 16.9 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.4.0.tar.gz
Algorithm Hash digest
SHA256 9b00314b36da6bc866adf2dde8eee529f12c6c5bd1dd9d0abf0aa8f780ce30a6
MD5 1e0c683baa99cda1fd4245d16c08dd7c
BLAKE2b-256 22a29c3176ad5322853be231f487f5485f0e3fad763c80b9389c6ab9ec1ecbb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastapi_sdk-0.4.0.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.4.0-py3-none-any.whl.

File metadata

  • Download URL: fastapi_sdk-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 13.8 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.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2b31628cb13f88316569cb9f34afed87835587b7d6d9a70481e8629938faa88d
MD5 ac27f32d0553ff80a78209696fa6c8be
BLAKE2b-256 0cdb5474c4c28d8c2f9d7c61e8462824b851ce7d74c2bc6315398a1b257ef4fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastapi_sdk-0.4.0-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