Metadata-Version: 2.4
Name: cozy_logger
Version: 1.1.0
Summary: Custom logger with singleton pattern
Author-email: Vitaly Kargin <super_set@mail.ru>
License: MIT
Project-URL: Homepage, https://github.com/superset1/Python_module_cozy_logger
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Requires-Dist: packaging>=20.0
Provides-Extra: test
Requires-Dist: pytest>=7.0.0; extra == "test"
Requires-Dist: pytest-cov>=4.0.0; extra == "test"
Dynamic: license-file

# Python module Cozy Logger

## Installation

```bash
pip install cozy_logger
```

## Usage

```
from cozy_logger import Logger

Logger = Logger()
logger = Logger.get_logger()
if Logger.LOG_FILE:
    print(f"See log here: {Logger.LOG_FILE}")
```
