Skip to main content

Small package to facilitate colored terminal output.

Project description

Python module to facilitate effortless color terminal output.

Installation

Chromaprint requires Python 3.X.

Install via pip with pip install chromaprint

Usage

from chromaprint import print
print('green on magenta', fg='green', bg='magenta')

It’s that easy.

Chromaprint contains one property colors and two methods print and set_default.

colors

chromaprint.colors is a tuple containing the names of all available colors. Attempts to use colors not in this tuple will raise an exception.

print()

The print() method functions the same as Python’s built-in print method. Simply pass any strings you wish to print with the foreground color as fg='green' and background color as bg='magenta'. Color selections only apply to a single print, so the next print call will use the default colors. You can change the default colors using chromaprint.set_default()

set_default()

A custom set of default colors may be specified and changed at will. Simply call set_default() using the same syntax as chromaprint.print(), ie chromaprint.set_default(bg='green', fg='magenta'). You may set either bg, fg, or both. To return to the system default color output pass bg='default', fg='default'

Project details


Release history Release notifications | RSS feed

This version

0.5

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chromaprint-0.5.tar.gz (2.3 kB view hashes)

Uploaded Source

Built Distribution

chromaprint-0.5-py3-none-any.whl (2.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page