openapi_first
openapi_first
Summary
FastAPI OpenAPI First — strict OpenAPI-first application bootstrap for FastAPI.
FastAPI OpenAPI First is a contract-first infrastructure library that enforces OpenAPI as the single source of truth for FastAPI services.
The library removes decorator-driven routing and replaces it with
deterministic, spec-driven application assembly. Every HTTP route,
method, and operation is defined in OpenAPI first and bound to Python
handlers explicitly via operationId.
Installation
Install using pip:
Or with Poetry:
Quick Start
Minimal OpenAPI-first FastAPI application:
OperationId-driven HTTP client:
Architecture
The library is structured around four core responsibilities:
loader: Load and validate OpenAPI 3.x specifications (JSON/YAML).binder: Bind OpenAPI operations to FastAPI routes viaoperationId.app: OpenAPI-first FastAPI application bootstrap.client: OpenAPI-first HTTP client driven by the same specification.errors: Explicit error hierarchy for contract violations.
Public API
The supported public API consists of the following top-level modules:
openapi_first.appopenapi_first.binderopenapi_first.loaderopenapi_first.clientopenapi_first.errors
Design Guarantees
- OpenAPI is the single source of truth.
- No undocumented routes can exist.
- No OpenAPI operation can exist without a handler or client callable.
- All contract violations fail at application startup or client creation.
- No hidden FastAPI magic or implicit behavior.
- Deterministic, testable application assembly.