Metadata-Version: 2.1
Name: yunopyutils
Version: 1.0.0a2
Summary: Utils for python
Project-URL: Homepage, https://github.com/yuno-payments/yuno-py-utils
Author-email: yunopayments <utils-tech@y.uno>
License: MIT
Requires-Python: >=3.9
Requires-Dist: python-dotenv>=1.0.0
Description-Content-Type: text/markdown

# yuno-py-utils

Utils for python

## Getting Started

```shell
pip install yunopyutils
```

or using PDM

```python
pdm add yunopyutils
```

## Modules

### Logs

```python
from yunopyutils import build_logger

logger = build_logger(__file__)

logger.info("Hello World !")

# Expected result
## {"timestamp": "2023-06-16T15:25:02.469Z", "level": "INFO", "filename": "log.py", "module": "log", "line": 5, "message": "Hello World !"}
```
