Metadata-Version: 2.1
Name: SimplePyLogger
Version: 0.1.4
Summary: Simple Python logger.
Home-page: https://github.com/lucas-meira/Logger
Author: Lucas Meira
Author-email: lima07.lucas@gmail.com
License: UNKNOWN
Project-URL: Source, https://github.com/lucas-meira/PyLogger
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: colorama

# Python Logger

PySimpleLogger is a very simple logging library for Python.

Its main functionalities are based on the Python logging library with some tweaks.

Currently, it is based on the Singleton pattern. So, only one logger instance can be created.

# (Very short) Tutorial

First create a `Logger` instance:

```python
from PyLogger import Logger
logger = Logger() # using current work directory
logger = Logger(path_to_log_file) # or using custom path
```

Then log whatever you want to:

```
logger.info("Some info")
logger.warning("Some warning")
logger.error("Some error")
```

It currently accepts prefix, end and sep kwargs for logging.


