Metadata-Version: 2.4
Name: PrintVerbose
Version: 1.1.0
Summary: Colorized logging with traceback dumping
Author: Quad
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: colorama
Dynamic: license-file

# PrintVerbose

A small logging helper with colored output and traceback dumping.

Dependencies:
- colorama (BSD License)
```bash
pip install colorama
```

Install:
```bash
pip install printverbose
```

Usage:
```python
from PrintVerbose import get_logger, write_traceback_to_file

log = get_logger("app")
log.info("Hello")

try:
   oneplusone = 1 + 1
except:
   write_traceback_to_file() # work only inside a except block
   log.critical("Error doing math!")
```
