Skip to main content

A collection of utilities for running FastAPI applications at Explosion AI

Project description

FastAPI Extras

This library is a collection of utilities for running FastAPI applications at Explosion AI.

HttpizeErrorsAPIRouter

This custom router's main functionality is to handle errors per route instead of through a global exception handler by adding the httpize_errors keyword argument to the FastAPI route declaration. This allows each route to return normal informative Python errors instead of the FastAPI HTTPException class to get valid responses.

It also times each request and sets the X-Response-Time header on the Response

An example route

@router.get("/testing", httpize_errors={ValueError: 400})
def test_route(i: int):
    if i < 1:
        raise ValueError("Bad Input Data")
    return {"i": i}

If the ValueError is raised, this custom router knows to return a Response with a status code of 400 (Bad Request) and the message provided to the ValueError

Usage

FastAPI doesn't have built-in support for overriding the app Router, however this is required since we add a new keyword argument to the route declaration. FastAPI doesn't pass **kwargs forward, it only passes explict named keyword arguments.

To get around this, we need to overwrite the app router manually and refresh the routes after all of them have been included in the main app. This looks like:

from fastapi import FastAPI
from fastapi_extras import HttpizeErrorsAPIRouter, init_app
import uvicorn


# API Router (could be in another module)
api_router = HttpizeErrorsAPIRouter(tags=["tests"])


@api_router.get("/testing", httpize_errors={ValueError: 400})
def test_route(i: int):
    if i < 1:
        raise ValueError("Bad Input Data")
    return {"i": i}


# Main app definition
app = FastAPI()

# Overwrite App Router to use the custom HttpizeErrorsAPIRouter
app.router = HttpizeErrorsAPIRouter.from_app(app)

# Include API Router from above
app.include_router(api_router)

# Refresh the App (this rebuilds the Starlette Middleware Stack)
init_app(app)

uvicorn.run(app)

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

fastapi_explosion_extras-0.5.1.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

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

fastapi_explosion_extras-0.5.1-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_explosion_extras-0.5.1.tar.gz.

File metadata

  • Download URL: fastapi_explosion_extras-0.5.1.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastapi_explosion_extras-0.5.1.tar.gz
Algorithm Hash digest
SHA256 593e57de868c7db4658127dc4cd410408d028ee1987648bae77692397a46acf9
MD5 55faf3a706a501af1e80bf4a18e2bff9
BLAKE2b-256 316cd4ee21e0825950b36d4815e345166530ddf52d2bb4fc6743855dd2b766f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastapi_explosion_extras-0.5.1.tar.gz:

Publisher: publish_pypi.yml on explosion/fastapi-explosion-extras

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastapi_explosion_extras-0.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for fastapi_explosion_extras-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c9924c57f3453a4fd4f3a58bb4d2efb1a80c43225aa9e5c87e5e59aabfaef108
MD5 a835a33162293cb3ba9fb68d3213e24e
BLAKE2b-256 8ba078c5bd3eff621c1b024b3b192952f9e2d65d4971b6f8f2b632f29d00e6f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastapi_explosion_extras-0.5.1-py3-none-any.whl:

Publisher: publish_pypi.yml on explosion/fastapi-explosion-extras

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page