Skip to main content

Tools for distilling tracebacks for offline viewing

Project description

offlinetb is a small utility module for serializing python tracebacks for later examination. Its simple premise is:

>>> from offlinetb import distill
>>> try:
...    some_code()
... except:
...    offline_tb = distill()

distill returns a Pythonic data structure describing the exception caught. It holds, among else:

  • The exception object caught, its type, value representation, and data members

  • The traceback itself, frame by frame

  • Each frame contains its filename, function name, line number, sample lines before and after, the faulty line itself, and the locals. Each local has its data members, value representation and name distilled.

Distilled tracebacks use only simple datatypes (numbers, strings, lists, dictionaries), guaranteeing their ability to be serialized to other formats (e.g. JSON).

The original purpose of offlinetb was to display tracebacks caught via a web app, and an example for this usage is included; under the rendering/ directory you can find a sample Javascript, CSS and HTML that displays a given JSON traceback in a <div>.

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

offlinetb-0.0.8.tar.gz (3.0 kB view details)

Uploaded Source

File details

Details for the file offlinetb-0.0.8.tar.gz.

File metadata

  • Download URL: offlinetb-0.0.8.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for offlinetb-0.0.8.tar.gz
Algorithm Hash digest
SHA256 40040535ab7912e6cd40376cd3e60b198e6574f83fa36c817e136be1ce79f163
MD5 9c7bfc81d34760b5c5f1e68c083fe016
BLAKE2b-256 e6584916992ffc4c140dd866ca9c3461a7dc4337a1cd7d97c3d4f86354edc8a0

See more details on using hashes here.

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