termcolor2

simple termcolor wrapper


License
MIT
Install
pip install termcolor2==0.0.3

Documentation

A simple wrapper for termcolor

install

pip install termcolor2

useage

from termcolor2 import c

# termcolor2
print c("hello").red.on_white.blink.underline.dark

# ---  this is equal to the following ---

# termcolor
print colored("hello", "red", "on_white", ["blink", "underline", "dark"])