FastAPI plugin to derive route responses based on source code.
Project description
FastAPI Derive Responses Plugin
fastapi-derive-responses is a Python library that extends FastAPI by automatically generating OpenAPI responses based
on your endpoint's source code.
This plugin helps you reduce boilerplate code by deriving response statuses and descriptions directly from your code.
With fastapi-derive-responses you can omit ~4 lines on endpoint definition:
@app.get(
"/add_user",
responses={
200: {"description": "User added successfully"},
- 400: {"description": "User already exists"},
- 401: {"description": "Invalid token"},
- 403: {"description": "Only admins and moderators can add users or You are banned"},
- 404: {"description": "Invalid role or User not found"},
},
)
def add_user(
current_user_id: Annotated[int, Depends(auth_user)],
new_user_id: int,
user_role: str
):
if statuses[current_user_id] not in ("admin", "moderator"):
raise HTTPException(403, "Only admins and moderators can add users")
if new_user_id in statuses:
raise HTTPException(400, "User already exists")
if user_role not in ROLES:
raise HTTPException(400, "Invalid role")
statuses[new_user_id] = user_role
return {"message": "User added successfully"}
TODO
-
raise HTTPException(401, detail="Invalid token")in endpoint source ->{401: {description: "Invalid token"}} -
raise HTTPException(404, detail=f"User with id={id} not found")in endpoint source ->{404: {description: "User with id={id} not found"}} -
raise HTTPException(404, headers={"X-Error": "User not found"})in endpoint source ->{404: {headers: {"X-Error": "User not found"}}} - Multiple derived responses for the same endpoint merged into one ->
{401: {description: "Invalid token OR Token is expired"}} - Don't override manually defined responses in decorators
- ^ Same behavior for dependency functions ^
-
:raises HTTPException: 401 Invalid tokenin dependency function docstring parses ->{401: {description: "Invalid token"}} - Avoid false positives (e.g.,
raise HTTPException(401)whereHTTPExceptionis not fromstarletteorfastapi) - Parse custom classes that inherit from
HTTPException - Check for custom response models
- Allow to omit some responses from parsing
- Code analysis for complex structures in detail and headers
Known Issues
Plugin works through AST parsing, so it may not work correctly with complex code structures or runtime generated code.
Also, it may produce false positives: for example, if you raise an exception with name HTTPException yet not from starlette or fastapi and you have imported starlette.HTTPException in the same module but in some isolated scope then your exception will be considered as starlette.HTTPException.
Installation
pip install fastapi-derive-responses
Quick Start
Basic Usage
You can just raise subclasses of starlette.HTTPException in endpoint.
It will propagate {404: {"description": "Item not found"}, 400: {"description": "Invalid item id"}} to OpenAPI schema.
from fastapi import FastAPI, HTTPException
from fastapi_derive_responses import AutoDeriveResponsesAPIRoute
app = FastAPI()
app.router.route_class = AutoDeriveResponsesAPIRoute
# router = APIRouter(route_class=AutoDeriveResponsesAPIRoute) # for router
class CustomExeption(HTTPException):
...
@app.get("/items/{item_id}")
def read_item(item_id: int):
if item_id == 0:
raise HTTPException(status_code=404, detail="Item not found")
if item_id == -1:
raise CustomExeption(status_code=400, detail="Invalid item id")
return {"id": item_id, "name": "Item Name"}
Example with Dependencies
It will propagate {401: {"description": "Invalid token"}}, {403: {"description": "You are banned"}} and {404: { "description": "User not found"}} to OpenAPI schema.
from typing import Annotated
from fastapi import Depends, FastAPI
from fastapi_derive_responses import AutoDeriveResponsesAPIRoute
app = FastAPI()
app.router.route_class = AutoDeriveResponsesAPIRoute
def auth_user(token: int) -> int:
"""
Authenticate user
:raises HTTPException: 401 Invalid token
:raises HTTPException: 403 You are banned
:raises HTTPException: 404 User not found
"""
call_some_func_that_may_raise()
return token
@app.get("/users/me")
def get_current_user(user_id: Annotated[int, Depends(auth_user)]):
return {"id": user_id, "role": "admin"}
Also, you can just raise subclasses of starlette.HTTPException in your dependency function:
class CustomException(HTTPException):
...
def auth_user(token: int) -> int:
if token < 100:
raise HTTPException(401, "Invalid token")
user_id = token - 100
if user_id not in statuses:
raise CustomException(404, "User not found")
if user_id in banlist:
raise HTTPException(403, "You are banned")
return user_id
Also, it works then you import your custom exception from other modules:
# exceptions.py
from starlette.exceptions import HTTPException
class ImportedCustomException(HTTPException):
...
# main.py
from exceptions import ImportedCustomException
...
app = FastAPI(title="Custom Exception App")
app.router.route_class = AutoDeriveResponsesAPIRoute
@app.get("/")
def raise_custom_exception():
raise ImportedCustomException(status_code=601, detail="CustomException!")
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
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 fastapi_derive_responses-0.1.6.tar.gz.
File metadata
- Download URL: fastapi_derive_responses-0.1.6.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.12.12 Linux/6.17.9-200.nobara.fc43.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce9196eeb4a648a373f08978f24718132e0c7feb9294c73b832ab405c4fa028c
|
|
| MD5 |
870577b7ecb02a5725899222e100ead1
|
|
| BLAKE2b-256 |
9198f9d2045939cc843f837f244940ed224206e1abfa1c517c5fd6a4ca36e90a
|
File details
Details for the file fastapi_derive_responses-0.1.6-py3-none-any.whl.
File metadata
- Download URL: fastapi_derive_responses-0.1.6-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.12.12 Linux/6.17.9-200.nobara.fc43.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
595f0fb535f4a254d54fee9a9cdf0be14e6b49f45fb170cd9db4b71b1cf8d4a1
|
|
| MD5 |
bf1adc874a8c22bdf1dbc8928fa5e701
|
|
| BLAKE2b-256 |
508eda0d7d393913f198c2968287a43746708aeb0e8a4773f7bdbc479153d328
|