Metadata-Version: 2.1
Name: cemir-error
Version: 202231003.3.3
Summary: Catching and Detailing Python/PyPy Errors with Colored Print
Home-page: https://github.com/muslu/cemir_error
Author: muslu yüksektepe
Author-email: musluyuksektepe@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
License-File: LICENSE

```python
from cemir_error.ccerror import error_tracking

def bolum_hesapla(a, b):
    return a / b


try:
    sonuc = bolum_hesapla(5, 0)
except Exception as e:
    import sys
    error_tracking(e, sys, "de")


```

![Örnek Çıktı](https://raw.githubusercontent.com/muslu/cemir_error/main/output.png)

[](https://)


