API documentation and validation for aiohttp using apispec
Project description
aiohttp-apigami
aiohttp-apigami brings seamless OpenAPI/Swagger integration and request validation to your aiohttp applications using apispec and marshmallow.
📋 Overview
Think of aiohttp-apigami as the bridge between your aiohttp web services and OpenAPI documentation. It solves two key challenges:
- Documentation: Automatically generate interactive OpenAPI/Swagger documentation from your route handlers
- Validation: Enforce request/response schema validation with minimal boilerplate code
Key Features
- Decorator-driven API: Simple
@docsand@request_schemadecorators add Swagger/OpenAPI support to your existing code - Granular Request Validation: Specialized decorators for headers, query params, JSON body, etc.
- Middleware Integration: Easy validation with
validation_middleware - Built-in Swagger UI: Ready-to-use interactive documentation (currently v5.20.1)
- Class-Based View Support: Fully compatible with aiohttp's CBV pattern
- Dataclass Support: Use Python dataclasses directly as schemas for cleaner code
💡 aiohttp-apigami builds upon the foundation of
aiohttp-apispec(no longer maintained), with inspiration from theflask-apispeclibrary.
🚀 Installation
With uv package manager:
uv add aiohttp-apigami
Or with pip:
pip install aiohttp-apigami
Requirements
- Python 3.10+
- aiohttp 3.10+
- apispec 5.0+
- webargs 8.0+
- marshmallow 3.0+
- marshmallow-recipe (optional, required for dataclass support)
🧩 Core Components
aiohttp-apigami operates on three main building blocks:
- Decorators: Add metadata and validation rules to your handlers
- Middleware: Process requests according to your schemas
- Setup Function: Configure OpenAPI generation and Swagger UI
🔍 Quickstart Example
from aiohttp_apigami import (
docs,
request_schema,
response_schema,
setup_aiohttp_apispec,
)
from aiohttp import web
from marshmallow import Schema, fields
class RequestSchema(Schema):
id = fields.Int()
name = fields.Str(description="name")
class ResponseSchema(Schema):
msg = fields.Str()
data = fields.Dict()
@docs(
tags=["mytag"],
summary="Test method summary",
description="Test method description",
)
@request_schema(RequestSchema())
@response_schema(ResponseSchema(), 200)
async def index(request):
# Access validated data from request
# data = request["data"]
return web.json_response({"msg": "done", "data": {}})
app = web.Application()
app.router.add_post("/v1/test", index)
# Initialize documentation with all parameters
setup_aiohttp_apispec(
app=app,
title="My Documentation",
version="v1",
url="/api/docs/swagger.json",
swagger_path="/api/docs",
)
# Now you can find:
# - OpenAPI spec at 'http://localhost:8080/api/docs/swagger.json'
# - Swagger UI at 'http://localhost:8080/api/docs'
web.run_app(app)
🏗️ Usage Patterns
Class-Based Views
class TheView(web.View):
@docs(
tags=["mytag"],
summary="View method summary",
description="View method description",
)
@request_schema(RequestSchema())
@response_schema(ResponseSchema(), 200)
async def delete(self):
return web.json_response(
{"msg": "done", "data": {"name": self.request["data"]["name"]}}
)
app.router.add_view("/v1/view", TheView)
Compact Documentation Style
Document responses directly in the @docs decorator for a more compact approach:
@docs(
tags=["mytag"],
summary="Test method summary",
description="Test method description",
responses={
200: {
"schema": ResponseSchema,
"description": "Success response",
}, # regular response
404: {"description": "Not found"}, # responses without schema
422: {"description": "Validation error"},
},
)
@request_schema(RequestSchema())
async def index(request):
return web.json_response({"msg": "done", "data": {}})
✅ Adding Validation
Enable validation with the middleware:
from aiohttp_apigami import validation_middleware
app.middlewares.append(validation_middleware)
Now you can access validated data from request["data"]:
@docs(
tags=["mytag"],
summary="Test method summary",
description="Test method description",
)
@request_schema(RequestSchema(strict=True))
async def index(request):
uid = request["data"]["id"] # Validated data!
name = request["data"]["name"]
return web.json_response(
{"msg": "done", "data": {"info": f"name - {name}, id - {uid}"}}
)
Customizing Data Location
You can change the request attribute where validated data is stored:
# Global setting
setup_aiohttp_apispec(
app=app,
request_data_name="validated_data",
)
# Or per-view setting
@request_schema(RequestSchema(strict=True), put_into="validated_data")
async def index(request):
uid = request["validated_data"]["id"]
# ...
🎯 Request Part Decorators
For more targeted validation, use these specialized decorators:
| Decorator | Validates | Default Data Location |
|---|---|---|
match_info_schema |
URL path parameters | request["match_info"] |
querystring_schema |
URL query parameters | request["querystring"] |
form_schema |
Form data | request["form"] |
json_schema |
JSON request body | request["json"] |
headers_schema |
HTTP headers | request["headers"] |
cookies_schema |
Cookies | request["cookies"] |
Example:
@docs(
tags=["users"],
summary="Create new user",
description="Add new user to our toy database",
responses={
200: {"description": "Ok. User created", "schema": OkResponse},
401: {"description": "Unauthorized"},
422: {"description": "Validation error"},
500: {"description": "Server error"},
},
)
@headers_schema(AuthHeaders) # Validate headers
@json_schema(UserMeta) # Validate JSON body
@querystring_schema(UserParams) # Validate query parameters
async def create_user(request: web.Request):
headers = request["headers"] # Validated headers
json_data = request["json"] # Validated JSON
query_params = request["querystring"] # Validated query parameters
# ...
🔄 Using Dataclasses
Python dataclasses provide a cleaner and more concise way to define request and response schemas:
from dataclasses import dataclass, field
from typing import Any
from aiohttp import web
from aiohttp_apigami import docs, request_schema, response_schema
@dataclass
class NestedData:
id: int
name: str
@dataclass
class RequestData:
id: int
name: str
is_active: bool
tags: list[str]
nested: NestedData | None = None
@dataclass
class ResponseData:
message: str
data: dict[str, Any] = field(default_factory=dict)
@docs(tags=["example"], summary="Dataclass example")
@request_schema(RequestData) # Use dataclass directly
@response_schema(ResponseData, 200, description="Success")
async def dataclass_handler(request: web.Request):
# data is an instance of RequestData, not a dictionary
data: RequestData = request["data"] # Validated data as a dataclass instance
return web.json_response({
"message": "Success",
"data": {"id": data.id, "name": data.name} # Access fields as object attributes
})
When using dataclasses with aiohttp-apigami, the validated data is available in the request as actual dataclass instances, not dictionaries. This provides proper type hints and attribute access, improving code readability and IDE support.
Dataclass support requires the marshmallow-recipe package. To install it:
uv add "aiohttp-apigami[dataclass]"
or with pip:
pip install aiohttp-apigami[dataclass]
🛡️ Custom Error Handling
Create custom validation error handlers with the error_callback parameter:
from marshmallow import ValidationError, Schema
from aiohttp import web
from typing import Optional, Mapping, NoReturn
def my_error_handler(
error: ValidationError,
req: web.Request,
schema: Schema,
error_status_code: Optional[int] = None,
error_headers: Optional[Mapping[str, str]] = None,
) -> NoReturn:
raise web.HTTPBadRequest(
body=json.dumps(error.messages),
headers=error_headers,
content_type="application/json",
)
setup_aiohttp_apispec(app, error_callback=my_error_handler)
You can also create custom exceptions and handle them in middleware:
class MyException(Exception):
def __init__(self, message):
self.message = message
# Can be a coroutine for async operations
async def my_error_handler(
error, req, schema, error_status_code, error_headers
):
await req.app["db"].do_smth() # Async operations
raise MyException({"errors": error.messages, "text": "Oops"})
# Middleware to handle custom exceptions
@web.middleware
async def intercept_error(request, handler):
try:
return await handler(request)
except MyException as e:
return web.json_response(e.message, status=400)
# Configure error handler
setup_aiohttp_apispec(app, error_callback=my_error_handler)
# Add your middleware BEFORE the validation middleware
app.middlewares.extend([intercept_error, validation_middleware])
📝 Swagger UI Integration
Enable Swagger UI by adding the swagger_path parameter:
setup_aiohttp_apispec(app, swagger_path="/docs")
Then navigate to /docs in your browser to see the interactive API documentation.
🔄 Updating Swagger UI
This package includes Swagger UI v5.20.1. Updates are managed through:
- Automated Checks: A weekly GitHub workflow checks for new Swagger UI versions and creates PRs
- Manual Updates: Run
make update-swagger-uiorpython tools/update_swagger_ui.py
📚 Example Application
A complete example is included in the example/ directory demonstrating:
- Request/response validation
- Swagger UI integration
- Different schema decorators
- Error handling
To run it:
make run-example
Visit http://localhost:8080 with Swagger UI at http://localhost:8080/api/docs
📋 Versioning
This library follows semantic versioning:
- Major version: Breaking API changes
- Minor version: New backward-compatible features
- Patch version: Backward-compatible bug fixes
See GitHub releases for version history.
💬 Support
If you encounter issues or have suggestions, please open an issue.
Please ⭐ this repository if it helped you!
📜 License
This project is licensed under the Apache License 2.0. See the 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 aiohttp_apigami-0.5.1.tar.gz.
File metadata
- Download URL: aiohttp_apigami-0.5.1.tar.gz
- Upload date:
- Size: 3.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df01de4ff2a35348063dc34f12d78cec85f51d8856db7f1f7267bf35345577e7
|
|
| MD5 |
ef1dffaeb2c2ca207e131aaf71d3f6cd
|
|
| BLAKE2b-256 |
fdf1e4f4087ccb280df1a63265e07edf8726e0a8915689cbb5b018c60731db05
|
Provenance
The following attestation bundles were made for aiohttp_apigami-0.5.1.tar.gz:
Publisher:
publish.yml on kulapard/aiohttp-apigami
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiohttp_apigami-0.5.1.tar.gz -
Subject digest:
df01de4ff2a35348063dc34f12d78cec85f51d8856db7f1f7267bf35345577e7 - Sigstore transparency entry: 188481233
- Sigstore integration time:
-
Permalink:
kulapard/aiohttp-apigami@56471616f14434ade4c5be56e33f83bf8c9dffc3 -
Branch / Tag:
refs/tags/0.5.1 - Owner: https://github.com/kulapard
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@56471616f14434ade4c5be56e33f83bf8c9dffc3 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aiohttp_apigami-0.5.1-py3-none-any.whl.
File metadata
- Download URL: aiohttp_apigami-0.5.1-py3-none-any.whl
- Upload date:
- Size: 3.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76b53419a6eefabe4dab4abc58edaa771cd301df3bc438bc1cdaf8c4355cb9f1
|
|
| MD5 |
8e632db0300a7573d84aa606ef1c37f8
|
|
| BLAKE2b-256 |
5b6c6c2c44b0903cca3f38c341d7fe2cd668d130660989fb1b8343213e275cfd
|
Provenance
The following attestation bundles were made for aiohttp_apigami-0.5.1-py3-none-any.whl:
Publisher:
publish.yml on kulapard/aiohttp-apigami
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiohttp_apigami-0.5.1-py3-none-any.whl -
Subject digest:
76b53419a6eefabe4dab4abc58edaa771cd301df3bc438bc1cdaf8c4355cb9f1 - Sigstore transparency entry: 188481236
- Sigstore integration time:
-
Permalink:
kulapard/aiohttp-apigami@56471616f14434ade4c5be56e33f83bf8c9dffc3 -
Branch / Tag:
refs/tags/0.5.1 - Owner: https://github.com/kulapard
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@56471616f14434ade4c5be56e33f83bf8c9dffc3 -
Trigger Event:
release
-
Statement type: