Metadata-Version: 2.1
Name: faye
Version: 0.1.3
Summary: Basic logging library created for any Python project with little overhead, an awesome progress bar, and customizable logging!
Home-page: https://github.com/cybersuki/faye
Author: Hifumi1337
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

<h1 align="center">
    <img src="https://raw.githubusercontent.com/stience/faye/main/.github/assets/faye_logo.jpg" />
    <br />
    Faye
</h1>

Basic logging library created for any Python project with little overhead, an awesome progress bar, and customizable logging!

This project was created as a logging necessesity for [Shinigami](https://github.com/stience/shinigami), but is compatible with almost any project.

Faye can also be installed using pip!
```bash
pip3 install faye
```

## Example
```python
from faye.faye import Faye

# Logging
print(Faye.log(msg="Faye is awesome", level="CRITICAL"))

# Progress Bar
print(Faye.progress(total=100, description="Downloading..."))
```
