Skip to main content

Human-readable HTML tracebacks for Python exceptions

Project description

TraceRite

Beautiful, readable error messages for Python, with text and HTML formatting.

PyPI version Tests Coverage

TraceRite features

Installation

Python scripts or REPL

pip install tracerite
import tracerite; tracerite.load()

Any error message after that call will be prettified. Handles any syntax errors and uncaught exceptions, even captures logging.exception (optionally).

IPython or Jupyter Notebook

%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.

FastAPI

Add 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.

Sanic

Comes with TraceRite built in whenever running in debug mode.

Clarity in complex situations

Exception chain comparison TraceRite shows even complex exception chains in chronological order, as opposed to the convoluted order of Python's own tracebacks where the entry point func() is near bottom and the flow jumps back and forth.

Features

  • 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.

ExceptionGroup comparison Python 3.11+ introduced ExceptionGroup for parallel execution errors (e.g., asyncio.TaskGroup). TraceRite displays these clearly.

Usage

html_traceback(exc)

Renders an exception as interactive HTML that can be included on a page. Pass an exception object, or call with no arguments inside an except block to use the current exception.

html_page(exc)

Renders a complete HTML5 document with a TraceRite traceback, ready to serve from a web framework error handler. See tracerite.fastapi.patch_fastapi() for FastAPI integration.

extract_chain(exc)

Extracts exception information as a list of dictionaries—useful for logging, custom formatting, or machine processing.

prettyvalue(value)

Formats any value with smart truncation, array shape display, and SI-scaled numerics. Useful beyond exceptions for debugging tools or custom logging.

extract_variables(locals, source)

Extracts and formats variables mentioned in a line of source code.

load() / unload()

Load or remove TraceRite as the default exception handler for terminal applications. Handles both sys.excepthook and threading.excepthook.

Granular loaders are also available: load_hooks() / unload_hooks(), load_logging_capture() / unload_logging_capture(), and load_suppressions() / unload_suppressions().

tty_traceback(exc)

Renders an exception as colorful terminal output with ANSI escape codes. Pass an exception object, or call with no arguments inside an except block.

See the API documentation for details, or Development guide for contributors.

License

Public Domain or equivalent.

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

tracerite-2.5.0.tar.gz (62.4 kB view details)

Uploaded Source

Built Distribution

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

tracerite-2.5.0-py3-none-any.whl (69.7 kB view details)

Uploaded Python 3

File details

Details for the file tracerite-2.5.0.tar.gz.

File metadata

  • Download URL: tracerite-2.5.0.tar.gz
  • Upload date:
  • Size: 62.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tracerite-2.5.0.tar.gz
Algorithm Hash digest
SHA256 0c86aeb75ea8f4913e555e9edbb6e4832b3dce7e687de568bbd8d5d4fd578d62
MD5 aff5818110562415929afd7c8454ce5c
BLAKE2b-256 486b3b27265c4795a9badb35c021fb8c031fcff971e1707a356b83d5f5aefbc6

See more details on using hashes here.

File details

Details for the file tracerite-2.5.0-py3-none-any.whl.

File metadata

  • Download URL: tracerite-2.5.0-py3-none-any.whl
  • Upload date:
  • Size: 69.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tracerite-2.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 22bf75ca55d7a865ff64c15c890da549b5298180b7c0011addb58677b7d48443
MD5 92879b76956df2a6d6ae2f121eda787a
BLAKE2b-256 b5645b2376e5f46efb663fa84ef96044e0783d09677ab70405e762f0495a9aa9

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