A simple solution to analysis and extract information from traceback.
Project description
A simple solution to analysis and extract information from traceback
usage
from graiax.mod.unwind import Report
with Report() as report:
a = 1
b = 2
c = 'a'
d = 1 + c
print(report.errors)
print(report.reports)
or
from graiax.mod.unwind import get_report
try:
a = 1
b = 2
c = 'a'
d = 1 + c
except Exception as e:
print(get_report(e))
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for graiax_mod_unwind-0.2.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9be7fb4286fcec059a05423aedf3321b6907a133790579863bf6b6d1563a63c1 |
|
MD5 | 7f3d3792170b479469c20a248d583452 |
|
BLAKE2b-256 | 958d0117e91c984ae05a548e8449e749e46ed4d2c230c59894b5f0100a12eb58 |