Skip to main content

Starlette support for RFC9457 problems.

Project description

Starlette Problems

uv ruff image image image style tests codecov

starlette_problem is a set of exceptions and handlers for use in starlette applications to support easy error management and responses.

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

Check the docs for more details.

Custom Errors

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

from starlette_problem.error import NotFoundProblem


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

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

Usage

import starlette.applications
from starlette_problem.handler import add_exception_handler


app = starlette.applications.Starlette()
add_exception_handler(app)

@app.get("/user")
async def get_user():
    raise UserNotFoundError("No user found.")
$ curl localhost:8000/user
{

    "type": "user-not-found",
    "title": "User not found",
    "detail": "No user found.",
    "status": 404,
}

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

starlette_problem-0.13.5.tar.gz (83.1 kB view details)

Uploaded Source

Built Distribution

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

starlette_problem-0.13.5-py3-none-any.whl (11.7 kB view details)

Uploaded Python 3

File details

Details for the file starlette_problem-0.13.5.tar.gz.

File metadata

  • Download URL: starlette_problem-0.13.5.tar.gz
  • Upload date:
  • Size: 83.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for starlette_problem-0.13.5.tar.gz
Algorithm Hash digest
SHA256 f7839f1692971b0de77ee04c9df1c02afff841e8f47abea7f2ef54359ef2408e
MD5 d45d2bf0f28ccca724dad97f20a6ec09
BLAKE2b-256 89e0fa662f593314824e5a62b57e929e60b42050b53646c2a21bf93f9894e643

See more details on using hashes here.

File details

Details for the file starlette_problem-0.13.5-py3-none-any.whl.

File metadata

File hashes

Hashes for starlette_problem-0.13.5-py3-none-any.whl
Algorithm Hash digest
SHA256 3fa1f19141ac675dcbcefd1871bd52beeccf7c3375ce162931f6a82fd8707b70
MD5 8f7ce9b2051c35ed93b03a9cea223004
BLAKE2b-256 becce36cf52424ea3142e7b38de6ce3fe416f63173d2e18325cb1e682dda21f6

See more details on using hashes here.

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