Metadata-Version: 2.1
Name: exception-handler
Version: 1.0.1
Summary: Exception Handler
Home-page: https://github.com/PartyouPay/exception-handler.git
Author: Bruno Henrique de Paula
Author-email: bruno.henriquy@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: dynaconf
Requires-Dist: loguru

# Introdução

Lib para tratamento de erros

## Como instalar

```
$ python setup.py install
```

No seu projeto, ao iniciar o app:

- Importar

```
from exception_handler.factory_logging import init_log
```

- Chamar

```
init_log()
```

## Como utilizar

- Pode utilizar algum metodo diretamente:

```
from exception_handler.factory_logging import report_log_error
report_log_error()
```




