I made this package to make my work with http exceptions more easier. In FastAPI I had problem
with HTTP exceptions - they are too simple. Only detail
field and that is all. And other tools
that make http exceptions more verbose works not like I expect.
This package was inspired by drf-exceptions-hog, but implemented for other Web-frameworks.
To install the package you need to run the following commands.
For pip:
pip install verbose_http_exceptions
For poetry:
poetry add verbose_http_exceptions
For PDM:
pdm add verbose_http_exceptions
You can use all these exceptions for your need even without any web-framework, but mostly, it may be useless, so use extensions in this package or write your own, if you need.
Then all (or some specific part of) your exceptions will be returned to users in JSON like this:
{
"code": "validation_error",
"type": "literal_error",
"message": "Input should be 1 or 2",
"attr": "a",
"location": "query",
}
or this (multiple exceptions supported too):
{
"code": "multiple",
"type": "multiple",
"message": "Multiple exceptions ocurred. Please check list for details.",
"attr": null,
"location": null,
"nested_errors": [
{
"code": "validation_error",
"type": "literal_error",
"message": "Input should be 1 or 2",
"attr": "a",
"location": "query",
},
{
"code": "validation_error",
"type": "missing",
"message": "Field required",
"attr": "b",
"location": "query",
}
]
}
To work with this utility you must add exception handlers in your FastAPI project like this:
from fastapi import FastAPI
from verbose_http_exceptions.ext.fastapi import (
apply_verbose_http_exception_handler,
apply_all_handlers,
)
app = FastAPI()
apply_all_handlers(app)
# or
apply_verbose_http_exception_handler(app)
# See document-strings of functions for more information.
Note
Package contains appliers, which add handlers to FastAPI instance, and handlers itself, so
you can work with them directly. Import them from regular package path or pass .handlers
to it.
Tip
apply_all_handler
function also has override_422_openapi
param (default True). You can turn
it off to avoid overriding 422 errors in your application OpenAPI schema.
To work with this utility you must add exception handlers in your Litestar project like this:
from litestar import Litestar
from verbose_http_exceptions.ext.litestar import ALL_EXCEPTION_HANDLERS_MAP
app = Litestar(
exception_handlers=ALL_EXCEPTION_HANDLERS_MAP
)
Note
ALL_EXCEPTION_HANDLERS_MAP
is a ready to use dictionary with all exception handlers. Extension
has other handlers and handler mappings, so you can import them directly with Litestar instance.
Warning
Make sure, you pass handlers and handler mappings correctly, because they are not general,
so algorithms inside them can be different, and if you pass, for example, python_error_handler
with litestar ValidationException
, server will always return 500 internal server error without
any context, if there is validation request error raised.
I like this project, and I want to implement it for many web-frameworks and add new functionality, so my goals are to:
- Integrate this package with litestar.
- Add OpenAPI override for Litestar. FastAPI already has override functionality to add to 422 errors verbose schema and description.
- Integrate this package with django.
- Add all http-exceptions for all status codes.
- Add status codes module to make work with my package easier.
- Add tests for all exceptions (Now only specific errors tested for coverage).
- Add extra mapping to response (Litestar compatibility + good idea itself), but pass only important context.
- Add other content response types like XML.