Skip to main content

fastapi-canon

fastapi-canon is an opinionated composition library for feature-oriented FastAPI applications. A feature groups its routers, Dishka providers, error contracts, exception handlers, and lifespan into one immutable value. The application installs an explicitly ordered set of those values at its composition root.

CanonRouter is the canonical API for declaring application routes. It adds composable raises= and response= contracts to FastAPI's familiar route decorators. Ordinary APIRouter declarations and the lower-level response compilers remain supported for generated code and incremental migration.

Dishka is a deliberate part of this canon, not an optional integration. fastapi-canon defines one dependency-injection approach: features contribute Dishka providers, and the composition builds and owns one shared Dishka container. Applications that choose another dependency-injection framework are outside the library's intended architecture.

Contents

Quick start

from fastapi import FastAPI
from fastapi_canon import CanonRouter, Composition, Feature

projects = CanonRouter(prefix="/projects", tags=["projects"])


@projects.get("")
async def list_projects() -> list[str]:
    return []


project_feature = Feature(name="projects", routers=[projects])

app = Composition(project_feature).apply(FastAPI())

Feature composition

Every contribution is optional:

feature = Feature(
    name="projects",
    routers=[router],
    providers=[provider],
    errors=feature_errors,
    exception_handlers=[handler_spec],
    lifespan=feature_lifespan,
)

Mutable sequences passed to Feature are copied to tuples. Installing features preserves declaration order for routes and startup. Shutdown runs in reverse order, including cleanup of features that started before a later feature failed. Feature names are required, unique within a composition, and included in configuration diagnostics.

Shared API router

Use router_factory to create one application router per installed composition. Feature routers are included in that router before it is mounted on the app, so the factory can supply a shared prefix, tags, and dependencies. Returning a CanonRouter keeps the application boundary on the canonical router API:

from fastapi import Depends
from fastapi_canon import CanonRouter


async def require_request_id() -> None: ...


composition = Composition(
    project_feature,
    router_factory=lambda: CanonRouter(
        prefix="/api/v1",
        tags=["api"],
        dependencies=[Depends(require_request_id)],
    ),
)

The factory is called during apply() and must return a fresh, empty APIRouter; custom APIRouter subclasses remain supported. Omitting it preserves direct router installation.

Dishka

Dishka is a required runtime dependency and the canonical dependency-injection mechanism. A feature accepts provider instances, provider classes, and zero-argument factories:

feature = Feature(
    name="projects",
    providers=[ProjectProvider, lambda: DatabaseProvider(settings.database)],
)

Classes and factories are materialized once per application during apply(); instances are used as supplied. The providers from every feature are validated together and used to build one AsyncContainer.

Composition manages the container lifecycle. It configures Dishka's FastAPI middleware, exposes the container as app.state.dishka_container, and closes it during application shutdown. Existing application lifespans are composed automatically. Applications should treat the exposed container as composition-owned and not close it independently.

Error contracts

Error contracts are implemented directly by fastapi-canon; no separate error library is required. Each feature may expose one ErrorRegistry. Registries are merged and installed once, so runtime RFC 9457 Problem Details and OpenAPI use the same definitions:

from fastapi_canon import (
    CanonRouter,
    Composition,
    Error,
    ErrorOptions,
    ErrorRegistry,
    Feature,
)


class ProjectNotFound(Exception):
    pass


project_not_found = Error(
    ProjectNotFound,
    status=404,
    code="project_not_found",
    title="Project not found",
    detail="The requested project does not exist.",
)

project_errors = ErrorRegistry(
    name="projects",
    errors=[project_not_found],
)

projects = CanonRouter(
    prefix="/projects",
    tags=["projects"],
    errors=project_errors,
)

project_feature = Feature(
    name="projects",
    routers=[projects],
    errors=project_errors,
)

app = Composition(
    project_feature,
    errors=ErrorOptions(
        type_base="https://api.example.com/problems",
    ),
).apply(FastAPI())

Declare operation failures from the same registry used at runtime:

@projects.get(
    "/{project_id}",
    raises=[project_not_found],
)
async def get_project(project_id: str) -> dict[str, str]:
    raise ProjectNotFound(project_id)

Generic normalized HTTPException contracts remain available through the low-level compatibility API described below. A domain error and a generic HTTP problem may share a status; the generated response then uses the same discriminated oneOf representation.

FastAPI responses={...} entries without canon error declarations require no additional metadata. Success contracts and other media types can be declared alongside problem responses.

OpenAPI representation

Every declared error becomes a reusable schema in components.schemas. The corresponding operation references it as an application/problem+json response:

paths:
  /projects/{project_id}:
    get:
      responses:
        "404":
          description: Project not found
          content:
            application/problem+json:
              schema:
                $ref: "#/components/schemas/ProjectNotFoundProblem"

components:
  schemas:
    ProjectNotFoundProblem:
      type: object
      required: [type, title, status, code]
      properties:
        type:
          type: string
          const: https://api.example.com/problems/project_not_found
        title:
          type: string
          const: Project not found
        status:
          type: integer
          const: 404
        code:
          type: string
          const: project_not_found
        detail:
          type: [string, "null"]

Typed extension fields and documented response headers are added to that same schema and response. If multiple errors share one status code, the response uses oneOf with code as its discriminator. When validation normalization is enabled, FastAPI's default 422 response is replaced by RequestValidationProblem using the same media type.

When all local registries already share a type_base, it is inferred. The ErrorOptions settings include_validation_error, include_http_exceptions, and include_unhandled_error are passed to the integrated error engine and default to True.

Use ExceptionHandlerSpec for a deliberately custom Starlette/FastAPI handler:

from fastapi_canon import ExceptionHandlerSpec

feature = Feature(
    name="projects",
    exception_handlers=[ExceptionHandlerSpec(DomainError, domain_error_handler)],
)

Error.code is the stable client contract. Dynamic detail, extensions, and headers are public response data and should contain only information classified for API exposure. Exception text can be used as detail when it is itself a reviewed public contract. Domain registries should use specific exception types; broad built-ins such as Exception, ValueError, and RuntimeError can also match unrelated programming failures.

Canon routers

CanonRouter separates errors shared by a router context from the errors that belong to one operation. Give the router its registry through errors= and declare shared contracts once with raises=:

from fastapi.responses import StreamingResponse
from fastapi_canon import CanonResponse, CanonRouter

router = CanonRouter(
    prefix="/sessions",
    errors=SESSION_ERRORS,
    raises=[
        AUTHENTICATION_REQUIRED_ERROR,
        SESSION_NOT_FOUND_ERROR,
        SESSION_ACCESS_DENIED_ERROR,
    ],
)


@router.post(
    "/{session_id}/playlist/spotify",
    raises=[
        SESSION_PLAYLIST_EMPTY_ERROR,
        SESSION_PLAYLIST_MISSING_SPOTIFY_TRACKS_ERROR,
        SESSION_EXPORT_REQUIRES_SPOTIFY_CONNECTION_ERROR,
    ],
    response=CanonResponse.sse(description="Server-sent session events."),
)
async def export_session_playlist_to_spotify(...) -> StreamingResponse: ...

Canon composes router-level and operation-level errors with the success response and passes the compiled declaration through FastAPI's normal route API. It does not patch APIRouter or APIRoute. Its documented app.openapi hook compiles contracts from the generated OpenAPI document without traversing FastAPI's internal route tree. The standard get, put, post, delete, options, head, patch, and trace decorators support raises= and response=; api_route() supports them for custom method sets.

The error registry is optional for success-only routers, but any raises= declaration requires one. Every declared error must belong to that exact registry. The same error declared at both levels is included only once.

response= uses its own status as the route's status_code when none is given. Canon rejects mismatched status codes, bodyless responses with an explicit response_model, and status collisions with FastAPI's manual responses= declarations at route declaration time. Other FastAPI decorator options continue to pass through unchanged.

Application-registry membership and HTTP-normalization checks run when app.openapi() is generated. Call it after registering all routes in a startup check or test to catch configuration errors early. Compilation failures are not cached. Routes excluded with include_in_schema=False are outside this document-level validation; CanonRouter still validates their explicit declarations when they are registered. Router-level raises= applies to operations declared on that router, not to separately included child routers.

Success response contracts

CanonResponse describes one successful response directly on a CanonRouter operation:

from fastapi_canon import CanonResponse


@router.get(
    "/events",
    raises=[AUTHENTICATION_REQUIRED_ERROR, ACCESS_DENIED_ERROR],
    response=CanonResponse.sse(),
)
async def events() -> StreamingResponse: ...

The generic form accepts a status, media type, OpenAPI schema, description, and response headers:

success = CanonResponse(
    status=200,
    media_type="application/example+json",
    schema={"type": "object"},
    description="Example document",
    headers=["X-Request-ID"],
)

The available constructors are:

Constructor Default contract
CanonResponse.json() application/json with status 200
CanonResponse.empty() No response content with status 204
CanonResponse.stream(media_type) String stream with status 200
CanonResponse.binary(media_type) Binary string stream with status 200
CanonResponse.sse() CanonResponse.stream("text/event-stream")

Success-only routers do not need an empty ErrorRegistry:

@router.get(
    "/health",
    response=CanonResponse.json(
        schema={"type": "object"},
        description="Service health",
    ),
)
async def health() -> dict[str, str]: ...

The route declaration is independent of the application's error definitions.

Bodyless contracts also replace FastAPI's generated success content for 2xx and 3xx responses, so a redirect needs no matching response_class solely for OpenAPI purposes:

@router.get(
    "/elsewhere",
    response=CanonResponse.empty(status=307),
)
async def elsewhere() -> RedirectResponse: ...

A bodyless contract combined with an explicit response_model raises ResponseConfigurationError at declaration time.

Schemas and header definitions are copied into immutable mappings. Header names may be supplied as a list for standard string-valued header schemas or as a mapping containing complete OpenAPI header definitions. CanonRouter derives the route status from the success contract when status_code is omitted.

Server-sent events

from collections.abc import AsyncIterator

from fastapi.responses import StreamingResponse
from fastapi_canon import CanonResponse, CanonRouter


router = CanonRouter(
    errors=api_errors,
    raises=[AUTHENTICATION_REQUIRED_ERROR, ACCESS_DENIED_ERROR],
)


async def event_chunks() -> AsyncIterator[str]:
    yield "event: ready\ndata: {}\n\n"
    yield 'event: message\ndata: {"id": 1}\n\n'


@router.get(
    "/events",
    response=CanonResponse.sse(),
)
async def events() -> StreamingResponse:
    return StreamingResponse(
        event_chunks(),
        media_type="text/event-stream",
        headers={
            "Cache-Control": "no-cache",
            "X-Accel-Buffering": "no",
        },
    )

Binary and PDF streams

from collections.abc import Iterator
from pathlib import Path
from uuid import UUID

from fastapi.responses import StreamingResponse
from fastapi_canon import CanonResponse, CanonRouter


router = CanonRouter(
    errors=document_errors,
    raises=[AUTHENTICATION_REQUIRED_ERROR, ACCESS_DENIED_ERROR],
)


def pdf_chunks(path: Path) -> Iterator[bytes]:
    with path.open("rb") as source:
        while chunk := source.read(64 * 1024):
            yield chunk


@router.get(
    "/documents/{document_id}",
    raises=[document_missing],
    response=CanonResponse.binary(
        "application/pdf",
        headers=["Content-Disposition"],
    ),
)
async def document(document_id: UUID) -> StreamingResponse:
    path = Path("documents") / f"{document_id}.pdf"
    if not path.is_file():
        raise DocumentMissing
    return StreamingResponse(
        pdf_chunks(path),
        media_type="application/pdf",
        headers={
            "Content-Disposition": f'inline; filename="{document_id}.pdf"',
        },
    )

The generated operation documents only text/event-stream or application/pdf for the successful response. Error responses continue to use application/problem+json.

Streaming boundary

Authentication, authorization, validation, and resource lookup should complete before returning StreamingResponse. Once response headers have been sent, an exception inside the iterator cannot be converted into another HTTP response. SSE protocols can define an application-specific failure event; a failed binary iterator produces an incomplete download.

Low-level FastAPI compatibility

CanonRouter is the canonical API for new application code. The lower-level compilers remain supported for ordinary APIRouter, generated routers, and incremental migrations:

from fastapi import APIRouter
from fastapi_canon import CanonResponse

legacy_router = APIRouter()


@legacy_router.get(
    "/private",
    responses=api_errors.responses(
        project_not_found,
        http_statuses=[401, 403],
        success=CanonResponse.json(),
    ),
)
async def private_project() -> dict[str, str]: ...

ErrorRegistry.responses() still combines domain errors, normalized HTTPException statuses, and an optional success contract. CanonResponse.responses() still supports success-only declarations. Because these primitives populate FastAPI's responses={...} mapping directly, they do not provide all declaration-time consistency checks of CanonRouter.

Installation guarantees

  • Feature order is explicit and deterministic.
  • Feature names identify conflicting contributions in diagnostics.
  • Reinstalling the exact same feature objects with the same options is a no-op.
  • A different second installation is rejected.
  • Duplicate routers, providers, handlers, and error collisions fail during configuration.
  • Registry and handler configuration is checked against a temporary application before installation. Operation contracts are checked during OpenAPI generation.
  • Provider-backed features must be installed before the application starts.
  • Disabling a feature means omitting it from Composition, which removes all of its contributions together.

Configuration failures raise FeatureConfigurationError.

Requirements

  • CPython 3.12, 3.13, or 3.14
  • FastAPI 0.115 or newer, below 1.0
  • Dishka 1.10 or newer, below 2.0
  • Pydantic 2.9 or newer, below 3.0

Development

Install the development dependencies and run the quality gates:

uv sync --all-groups
uv run pre-commit install --config .pre-commit-config.yml
uv run pre-commit run --config .pre-commit-config.yml --all-files
uv run ruff format --check .
uv run ruff check .
uv run mypy
uv run pytest
uv build

Showcase

See examples/showcase for a runnable two-feature FastAPI application. It keeps error contracts alongside their feature routes and merges them once at the composition root.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastapi_canon-0.3.0.tar.gz (99.8 kB view details)

Uploaded Source

Built Distribution

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

fastapi_canon-0.3.0-py3-none-any.whl (34.7 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_canon-0.3.0.tar.gz.

File metadata

  • Download URL: fastapi_canon-0.3.0.tar.gz
  • Upload date:
  • Size: 99.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.2

File hashes

Hashes for fastapi_canon-0.3.0.tar.gz
Algorithm Hash digest
SHA256 3146ca5efdf9e364717b44736c0756b485239c3037332412aba1dc0fcc3229b1
MD5 10420e9680e67251f8592d5f7759ec6a
BLAKE2b-256 a1cf16c6790774cb3202ab9a396dae38c61736a89001d1580f84eea6bd9b53ff

See more details on using hashes here.

File details

Details for the file fastapi_canon-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for fastapi_canon-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b1a9ed647159380bfeac0056ebe5d254be92e97da39d9c95d15e0e35c081229c
MD5 be39eabad0d7db62708c670d9e83bdf6
BLAKE2b-256 2d0e9ce5dac3e3467668c61bd3d7bdf6ae672923e287133691b442b6b880ebd8

See more details on using hashes here.

Release history Release notifications | RSS feed

0.4.0

2 files

This release

0.3.0 This release

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page