Metadata-Version: 2.1
Name: lgg
Version: 0.1.5
Summary: A simple yet fancy logger for Python scripts
Home-page: https://github.com/blurry-mood/python-logger
License: MIT
Keywords: Python,Logger,Fancy Logger
Author: Ayoub Assis
Author-email: assis.ayoub@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/blurry-mood/python-logger
Description-Content-Type: text/markdown

# python-logger
A simple yet fancy logger for Python scripts

Each log has the following syntax:
```{filename}.py:{line} - [INFO-WARNING-DEBUG-ERROR]: log message```

## Install
- Using pip:
```shell
pip install lgg
```

- Using Poetry:
```shell
poetry add lgg
```

## Usage
```python
from lgg import get_logger
logger = get_logger()

logger.info('This is an info message')

logger.debug('Debugging message')

logger.error('error message')

logger.warning('File not found! An empty one is created')
```
![Result](.resources/overview.png)

