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
File details
Details for the file graiax_mod_unwind-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: graiax_mod_unwind-0.3.0-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe902ede6f0dabb8b7de7a8b734889cfbe647c729101ea8df0a9154ad8cd1141 |
|
MD5 | 225844997e38857c918b12e6438b85a9 |
|
BLAKE2b-256 | 4e56814376ee292feb9a64c7515a8dc9ba4fa25af1c1c08461f0a8d95466a18e |