Metadata-Version: 2.4
Name: customTraceback
Version: 0.5.0
Summary: A quick way to customize your Tracebacks
Author-email: Anthony <anthony@bloodcircuit.org>
License: MIT
Keywords: traceback,error,debug,custom,fun
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown

# customTraceback

## A quick and easy way to customize your Python tracebacks

```py
import customTraceback

def myTraceback(name, value, tb):
    print(f"🔥 Exception: {name}")
    print(f"💬 {value}")
    print(f"📜 Trace: {tb}")

customTraceback.setTraceBack(myTraceback)

1 / 0
```
### This replaces the division by 0 error with a custom traceback
**This is a basic example this package is a fun package to make cool tracebacks**
