Metadata-Version: 2.1
Name: quicklogs
Version: 1.1.2
Summary: Easily configure Python loggers.
Author-email: Dan Kelleher <kelleherjdan@gmail.com>
License: MIT
Keywords: logs,logger,loggers,logging
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Logging
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: pytest; extra == "dev"

Easily create and configure Python loggers from single function call, optionally using environment variable instead of function arguments.

### Install
`pip install quicklogs`
### Usage
There is one function: `get_logger`
```py
from quicklogs import get_logger
```
See [arguments and docs](./quicklogs/quicklogs.py#20)
