Printing Colored Messages in the Terminal

Adding colors to terminal output can make messages easier to identify and improve the debugging experience.
Documentation: https://pypi.org/project/jaime38130/

 

Available colors: green, white, black, cyan, magenta, red, blue, yellow

 

Installation

pip install jaime38130

 

Examples with green color

from jaime38130 import *
green("I needed color")
# Output
I needed color

 

from jaime38130 import *
green("I needed color", "header")
# Output
I needed color

Python