Skip to main content

Web based error utils

Project description

Web Errors v0.6.10

image image image style tests codecov

web_error is a set of exceptions and handlers for use in starlette/fastapi applications to support easy error management and responses

Each exception easily marshals to JSON based on the RFC9457 spec for use in api errors.

Migrating to 0.6 (RFC9457 support)

Check the discussion here for details on how to update usage to maintain legacy functionality or move over to problem details support.

Errors

The base web_error.error.HttpException accepts a title, details, status (default 500) and optional **kwargs. An additional code can be passed in, which will be used as the type, if not provided the type is derived from the class name.

And will return a JSON response with exc.status as the status code and response body:

{
    "type": "an-exception",
    "title": "title",
    "details": "details",
    "status": 500,
    "extra-key": "extra-value",
    ...
}

Derived types are generated using the class name after dropping ...Error from the end, and converting to kebab-case. i.e. PascalCaseError will derive the type pascal-case. If the class name doesn't suit your purposes, an optional code attribute can be set with the desired value of there response type field.

Some convenience Exceptions are provided with predefined status attributes. To create custom errors subclasss these and define the title attribute.

  • web_error.error.ServerException provides status 500 errors
  • web_error.error.BadRequestException provides status 400 errors
  • web_error.error.UnauthorisedException provides status 401 errors
  • web_error.error.NotFoundException provides status 404 errors

Custom Errors

Subclassing the convenience classes provide a simple way to consistently raise the same error with details/extras changing based on the raised context.

from web_error.error import NotFoundException


class UserNotFoundError(NotFoundException):
    title = "User not found."

raise UserNotFoundError(details="details")
{
    "type": "user-not-found",
    "title": "User not found",
    "details": "details",
    "status": 404,
}

Whereas a defined code will be used in the output.

class UserNotFoundError(NotFoundException):
    title = "User not found."
    code = "cant-find-user"

raise UserNotFoundError(details="details")
{
    "type": "cant-find-user",
    "title": "User not found",
    "details": "details",
    "status": 404,
}

If additional kwargs are provided when the error is raised, they will be included in the output (ensure the provided values are json seriablizable.

raise UserNotFoundError(details="details", user_id="1234", metadata={"hello": "world"})
{
    ...
    "details": "details",
    "user_id": "1234",
    "metadata": {"hello": "world"},
}

Starlette

    import starlette.applications
    import web_error.handler.starlette

    app = starlette.applications.Starlette()

    web_error.handler.starlette.add_exception_handler(app)

A custom logger can be provided to add_exception_handler(app, logger=...).

If you require cors headers, you can pass a web_error.cors.CorsConfiguration instance to add_exception_handler(cors=...).

add_exception_handler(
    app,
    cors=CorsConfiguration(
        allow_origins=["*"],
        allow_methods=["*"],
        allow_headers=["*"],
        allow_credentials=True,
    )
)

To handle unexpected errors provide unhandled_wrappers, a dict mapping http status code to HttpCodeException, the system key default is also accepted as the root wrapper for all unhandled exceptions.

If you wish to hide debug messaging from external users, strip_debug=True will log the debug message and remove it from the response.

    from web_error.error import HttpCodeException

    class NotFoundError(HttpCodeException):
        status = 404
        message = "Endpoint not found."

    web_error.handler.starlette.add_exception_handler(
        app,
        unhandled_wrappers={
            "404": NotFoundError,
        },
    )

FastAPI

The FastAPI handler is identical to the starlette handler with the additional handling of RequestValidationError.

    import fastapi
    import web_error.handler.fastapi


    app = fastapi.FastAPI()
    web_error.handler.fastapi.add_exception_handler(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

web_error-0.6.10.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

web_error-0.6.10-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

File details

Details for the file web_error-0.6.10.tar.gz.

File metadata

  • Download URL: web_error-0.6.10.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.9.19 Linux/6.5.0-1017-azure

File hashes

Hashes for web_error-0.6.10.tar.gz
Algorithm Hash digest
SHA256 44bfac089644e970ebb29e5206741720d497f5ee62307d89be1c59b66e72969f
MD5 03da053d4fe8584f0d3418edc9ecde30
BLAKE2b-256 f548337db1b2ef1553bd892eb70f44a1b164a1ab79cf7a5ec2e38695b202d4b0

See more details on using hashes here.

Provenance

File details

Details for the file web_error-0.6.10-py3-none-any.whl.

File metadata

  • Download URL: web_error-0.6.10-py3-none-any.whl
  • Upload date:
  • Size: 13.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.9.19 Linux/6.5.0-1017-azure

File hashes

Hashes for web_error-0.6.10-py3-none-any.whl
Algorithm Hash digest
SHA256 953ea3aba751375141ec7c87e7448fc5e2389edf7c4b28e166fd4da129d0e8e9
MD5 3164d6b6b38805d689366c23de2e4175
BLAKE2b-256 e0ef50dbb14c4ea6592dcbc729c722a472621d78f9fc342a4a703ef8093fa052

See more details on using hashes here.

Provenance

Supported by

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