Basic logging library with a customizable log message and progress bar!
The best way to utilize the Faye library is by installing via pip
. You can install the library by running the following command:
pip install faye
Usage
The library is currently limited due to it being updated on a necessity basis, but there are a few examples below to help with using it.
from faye import Faye
print(Faye.log(msg="Faye is awesome!", level="CRITICAL"))
print(Faye.log(msg="Faye is awesome!", level=5))
print(Faye.log(msg="Faye is awesome!", level="CRITICAL", color=True))
print(Faye.progress(total=100, description="Downloading..."))