Metadata-Version: 2.1
Name: exencolorlogs
Version: 1.1.1
Summary: A module for nice looking colored logs.
Home-page: https://github.com/Exenifix/exencolorlogs
License: MIT
Author: Exenifix
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: exencolor (>=1.1,<2.0)
Project-URL: Repository, https://github.com/Exenifix/exencolorlogs
Description-Content-Type: text/markdown

![PyPI - Downloads](https://img.shields.io/pypi/dm/exencolorlogs)
![License](https://img.shields.io/github/license/Exenifix/exencolorlogs)
![PyPI - Version](https://img.shields.io/pypi/v/exencolorlogs)
![CodeFactor](https://www.codefactor.io/repository/github/exenifix/exencolorlogs/badge)

# ExenColorLogs

A module for nice looking colored logs. Does not have much customization, just a Logger class with special formatting.

## Installation

The module is available for installation from PyPI via pip.
```shell
$ pip install exencolorlogs
```

## Basic Usage

```python
from exencolorlogs import Logger

log = Logger()
log.info("Greeting...")
log.ok("Hello!")
```

