Printing and debugging with color
Reason this release was yanked:
pyproject.toml file in the pypi package
Project description
cprint
Do you find it annoying when you have to search for a certain debug, or error, line in your console? Have you ever dreamed of a simple and quick way to make your debug print truly visible? Well here is your solution!
cprint is a minimalist python library which gives you the possibility to print in color.
Install
pip install cprint
Usage
from cprint import *
cprint(arg) # WHITE
cprint.ok(arg) # BLUE
cprint.info(arg) # GREEN
cprint.warn(arg) # YELLOW
cprint.err(arg, interrupt=False) # BROWN
cprint.fatal(arg, interrupt=False) # RED
In case you have issues under Windows, try installing colorama with pip install colorama
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cprint-1.2.1.tar.gz
(2.5 kB
view hashes)