ChromaTerm

Build status Language grade: Python Coverage status Documentation status PyPI version

ChromaTerm is a Python module and script used for coloring the output to terminals.

Installation

pip3 install chromaterm

Command Line Script

You can pipe a program into ct to have its output colored according to user-configurable rules. For instance, ssh | ct:

alt text

Check out the script's documentation for more details on usage.

API

You can color your module's output with ChromaTerm's API. Here's a simple example:

from chromaterm import Color

color = Color('bold')

# The string is bold-styled
color.print('Hello World!')

Have a look at the introduction for the API.

Help

If you've got any questions or suggestions, please open up an issue (always appreciated).