Yet Another Color Print LibraryA simpleprint()-esque library that supports colors!
yes i know that this is like the simplest project that does the same as colorama and i really dont care tbh
$ python3 -m pip install yacplfrom yacpl import Bg, Fg, Printer
yacpl = Printer()
yacpl("Hello, world!", Bg.CYAN, Fg.RED)$ git clone https://github.com/fily-gif/yacpl.git # or `gh repo clone fily-gif/yacpl`
$ python3 -m pip install -r requirements.txt
# do your thing
# to test your changes: do
$ python3 -m pip install -e . 