Metadata-Version: 2.4
Name: meowlogs
Version: 0.0.3
Summary: Python library to simplify working with the standard logging library
Project-URL: Documentation, https://github.com/PyBackDev/meowlogs/blob/main/README.md
Project-URL: Source, https://github.com/PyBackDev/meowlogs
Author-email: PyBackDev <evbalbukova@gmail.com>
License-Expression: MIT
License-File: LICENSE.txt
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# meowlogs

[![PyPI - Version](https://img.shields.io/pypi/v/meowlogs.svg)](https://pypi.org/project/meowlogs)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/meowlogs.svg)](https://pypi.org/project/meowlogs)

-----
Python library to simplify working with the standard logging library.

The key features are:

- The library creates a configuration for logging. 
- Writes logs to the console and a file. 
- The file name is the current date. 
- When writing logs to a file, the logging level is taken into account. 
- Can be used to configure logging in Django, Celery, and custom logs.

## Table of Contents

- [Installation](#installation)
- [Example of use](#example-of-use)
- [License](#license)

## Installation

```console
pip install meowlogs
```

## Example of use

### [Using a library with a class](https://github.com/PyBackDev/meowlogs/blob/main/ready_made_solutions/meowlogs_class.py)

### [Using a library with a function](https://github.com/PyBackDev/meowlogs/blob/main/ready_made_solutions/meowlogs_func.py)

## License

`meowlogs` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
