Beautiful debugging page for Starlette apps.
Project description
Starception
Beautiful exception page for Starlette and FastAPI apps.
Installation
Install starception
using PIP or poetry:
pip install starception
# or
poetry add starception
Screenshot
Features
- secrets masking
- solution hints
- code snippets
- display request info: query, body, headers, cookies
- session contents
- request and app state
- platform information
- environment variables
The middleware will automatically mask any value which key contains key
, secret
, token
, password
.
Quick start
See example application in examples/ directory of this repository.
Usage
To render a beautiful exception page you need to install a StarceptionMiddleware
middleware to your application.
The middleware will work only in debug mode so don't forget to set
debug=True
for local development.
Note, to catch as many exceptions as possible the middleware has to be the first one in the stack.
import typing
from starlette.applications import Starlette
from starlette.middleware import Middleware
from starlette.requests import Request
from starlette.routing import Route
from starception import StarceptionMiddleware
async def index_view(request: Request) -> typing.NoReturn:
raise TypeError('Oops, something really went wrong...')
app = Starlette(
debug=True,
routes=[Route('/', index_view)],
middleware=[
Middleware(StarceptionMiddleware),
# other middleware go here
],
)
Integration with FastAPI
Attach StarceptionMiddleware
middleware to your FastAPI application:
import typing
from fastapi import FastAPI, Request
from starception import StarceptionMiddleware
app = FastAPI(debug=True)
app.add_middleware(StarceptionMiddleware) # must be the first one!
@app.route('/')
async def index_view(request: Request) -> typing.NoReturn:
raise TypeError('Oops, something really went wrong...')
Integration with other frameworks
starception
exports starception.exception_handler(request, exc)
function, which you can use in your
framework.
But keep in mind, Starlette will not call any custom exception handler
in debug mode (it always uses built-in one).
The snipped below will not work as you expect (unfortunately).
from starlette.applications import Starlette
from starception import exception_handler
app = Starlette(
debug=True,
exception_handlers={Exception: exception_handler}
)
Solution hints
If exception class has solution
attribute then its content will be used as a solution hint.
class WithHintError(Exception):
solution = (
'The connection to the database cannot be established. '
'Either the database server is down or connection credentials are invalid.'
)
Credentials
- Look and feel inspired by Phoenix Framework.
Project details
Release history Release notifications | RSS feed
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
Hashes for starception-0.3.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b1dddd657415269c1d2ac43570351433fc6735c2588c1bf2117b19c782026f9 |
|
MD5 | 5b1ee4e2efa9d5be1cfd8cecc01b599a |
|
BLAKE2b-256 | e55766242c19435e8e651bab27f687f79823662437f6c9ba8c6360cd1d6aff50 |