/PyTerm-Colors

A small python library that makes coding colored terminal programs easier

Primary LanguagePython

Terminal Colors handler for Python

Makes the world a better place by easing the process of making a colored terminal program

Usage Instruction :

  • Import the library - from pyterm_colors import *
  • Create instance of color class - c = color()
  • set color using 2 methods:
    1. c.setc("blue")
    1. print c.blue
  • In either case, all the following lines will be blue colored untill another such statement is called

For example:

Example Code Output of example code