Metadata-Version: 2.1
Name: SimplePyLogger
Version: 0.3.0
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

# Simple Python Logger

SimplePyLogger 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.

# Install

First, update `pip` by running `python -m pip install --upgrade pip`. Then, run `python -m pip install SimplePyLogger`.

# (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.


