Fixing bugs is easier with well formatted error messages. Console, HTML and JSON.
TraceRite formats Python errors in Jupyter notebooks, in plain HTML, and in the terminal: rich variable inspection (left), plus syntax-error highlighting and compact terminal tracebacks (right).
pip install traceriteimport tracerite; tracerite.load()Any error message after that call will be prettified. Handles any syntax errors and uncaught exceptions, even captures logging.exception (optionally).
%pip install tracerite
%load_ext tracerite
This enables tracebacks in text or HTML format depending on where you are running. Add to ~/.ipython/profile_default/startup/tracerite.ipy to make it load automatically for all your ipython and notebook sessions. Alternatively, put the two lines at the top of your notebook.
If you are using UV, consider running with your other dependencies:
uvx --with tracerite --with numpy jupyter labAdd the extension loader at the top of your app module:
from tracerite import patch_fastapi; patch_fastapi()This monkeypatches Starlette error handling and FastAPI routing to work with HTML tracebacks. Note: this runs regardless of whether you are in production mode or debug mode, so you might want to call that function only conditionally in the latter.
Comes with TraceRite built in. HTML reports are available in debug mode, and console messages are always formatted by Tracerite.
TraceRite renders complex exception chains in chronological order (left). The Python 3.15 built in traceback needs illustrative arrows to follow execution (right).
When a with or async with fails, the built in handling of Python 3.11 marks the whole block, and 3.12.9+ marks the initializing expression like it was the culprit (e.g. function call marked incorrectly). We bypass that logic and differentiate between (1) the expression failing, (2) entering and (3) exiting the block.
In cases 2 (left) and 3 (right) we mark the whole with statement but not the block, and emphasize the expression responsible (helpful when there are more than one). In case 3 we include the executed block body in context shown (up to 20 lines).
- Chronological order - Single timeline with the program entry point is at top, and the finally uncaught exception bottom.
- Minimalistic output - Smart pruning to show only relevant pieces of information, excluding library internals where not relevant and avoiding any repetition.
- ExceptionGroups - Full tracebacks of the subexceptions from exceptions that occurred in parallel execution.
- Variable inspection - See the values of your variables in a pretty printed HTML format, Terminal or JSON-compatible machine-readable dict.
- JSON output - Intermediady dict format is JSON-compatible, useful for machine processing and used by our HTML and TTY modules.
- HTML output - Works in Jupyter, Colab, and web frameworks such as FastAPI and Sanic as the debug mode error handler.
- TTY output - Colorful, formatted tracebacks for terminal applications and Python REPL.
- Custom Styling - Theme with your colors by defining CSS variables or tty.COLORS.
- Automatic dark mode - Saves your eyes.
Python 3.11+ concurrent execution errors with except* handling are shown clearly in both HTML and terminal output.
For the public API — including HTML rendering, terminal output, and the machine-readable chain format returned by extract_chain — see the API documentation. For contributors, see the Development guide.
Public Domain or equivalent.