Skip to main content

A simple Python module to colorize your Linux terminal

Project description

clicolors - Command Line Interface::Colors

Usage:

>>> from clicolors import colorize

Example 1

>>> print colorize('Example text 1', fg='blue',bg='red',attr='bold')

Example 2

>>> print colorize('Example text 2', 'blue','red','bold')

Example 3

>>> print colorize('Example text 3', fg='yellow')

Example 4

>>> print colorize('Example text 4', 'yellow')

Example 5

>>> print colorize('Example text 5', bg='green')

Example 6

>>> print colorize('Example text 6',attr='underline')

Example 7

>>> print colorize('Example text 6',bg='cyan',attr='underline',fg='black')

Example: clicolors Demo

>>> from clicolors import colorize, COLORS, ATTRIBUTES
>>> print colorize('clicolors : A simple Python module to colorize your Linux terminal',fg='black',bg='white',attr='underline')
>>> print ('Foreground: '+' '.join([colorize(color, fg=color) for color in COLORS]))
>>> print ('Background: '+' '.join([colorize(color, bg=color) for color in COLORS]))
>>> print ('Attributes: '+' '.join([colorize(attributes, attr=attributes) for attributes in ATTRIBUTES]))

Project details


Download files

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

Source Distribution

clicolors-0.2.tar.gz (2.2 kB view hashes)

Uploaded Source

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