Skip to main content

Terminal string styling done right, in Python.

Project description

colorful

Build Status codecov.io PyPI version PyPI PyPI

Terminal string styling done right, in Python :tada:

Here's a tease

colorful example

import colorful

# create a colored string using clever method translation
print(colorful.bold_white('Hello World'))
# create a colored string using `str.format()`
print('{c.bold}{c.lightCoral_on_white}Hello World{c.reset}'.format(c=colorful))

# nest colors
print(colorful.red('red {0} red'.format(colorful.white('white'))))
print(colorful.red('red' + colorful.white(' white ', nested=True) + 'red'))

# combine styles with strings
print(colorful.bold & colorful.red | 'Hello World')

# use true colors
colorful.use_true_colors()

# extend default color palette
colorful.update_palette({'mint': '#c5e8c8'})
print(colorful.mint_on_snow('Wow, this is actually mint'))

# choose a predefined style
colorful.use_style('solarized')
# print the official solarized colors
print(colorful.yellow('yellow'), colorful.orange('orange'),
    colorful.red('red'), colorful.magenta('magenta'),
    colorful.violet('violet'), colorful.blue('blue'),
    colorful.cyan('cyan'), colorful.green('green'))

# directly print with colors
colorful.print('{c.bold_blue}Hello World{c.reset}')

# choose specific color mode for one block
with colorful.with_8_ansi_colors() as c:
    print(c.bold_green('colorful is awesome!'))

# create and choose your own color palette
MY_COMPANY_PALETTE = {
    'companyOrange': '#f4b942',
    'companyBaige': '#e8dcc5'
}
with colorful.with_palette(my_company_palette) as c:
    print(c.companyOrange_on_companyBaige('Thanks for choosing our product!'))

# use f-string (only Python >= 3.6)
print(f'{colorful.bold}Hello World')

# support for chinese
print(colorful.red('你好'))

Key Features

  • expressive and consistent API (docs)
  • support for different color modes (8 ANSI, 256 ANSI, true colors) (docs)
  • support for predefined awesome styles (solarized, ...) (docs)
  • support for custom color palettes (docs)
  • support nesting styles (docs)
  • support for different platforms (using colorama on Windows)
  • context managers for clean color mode, color palette or style switch (docs)
  • support len() on colored strings (docs)
  • support color names from X11 rgb.txt (docs)
  • no dependencies

Usage

colorful supports all major Python versions: 2.7, 3.4, 3.5, 3.6 and 3.7.
We recommend to use the latest version released on PyPI:

pip install colorful

colorful does not require any special setup in order to be used:

import colorful

print(colorful.italic_coral_on_beige('Hello World'))
print(colorful.italic & colorful.coral_on_beige | 'Hello World')
print('{c.italic_coral_on_beige}Hello World{c.reset}'.format(c=colorful))

See the Style a string section for more information!

Color modes

These days terminals not only support the ancient 8 ANSI colors but often they support up to 16 Million colors with true color. And if they don't support true color they might support the 256 ANSI color palette at least.

colorful supports the following color modes:

  • no colors / disable (colorful.NO_COLORS)
  • 8 colors -> 8 ANSI colors (colorful.ANSI_8_COLORS)
  • 256 colors -> 256 ANSI color palette (8bit colorful.ANSI_256_COLORS)
  • 16'777'215 colors -> true color (24bit, colorful.TRUE_COLORS)

By default colorful tries to auto detect the best supported color mode by your terminal. Consult colorful.terminal for more details.

However, sometimes it makes sense to specify what color mode should be used.
colorful provides multiple ways to do so:

(1) specify color mode globally via Python API

colorful.disable()
colorful.use_8_ansi_colors()
colorful.use_256_ansi_colors()
colorful.use_true_colors()

If you change the color mode during runtime it takes affect immediately and globally.

(2) enforce color mode globally via environment variable

COLORFUL_DISABLE=1 python eggs.py  # this process will not use ANY coloring
COLORFUL_FORCE_8_COLORS=1 python eggs.py  # this process will use 8 ANSI colors by default
COLORFUL_FORCE_256_COLORS=1 python eggs.py  # this process will use 256 ANSI colors by default
COLORFUL_FORCE_TRUE_COLORS=1 python eggs.py  # this process will use true colors by default

(3) specify color mode locally via Python API (contextmanager)

with colorful.with_8_ansi_colors() as c:
    print(c.italic_coral_on_beige('Hello world'))

with colorful.with_256_ansi_colors() as c:
    print(c.italic_coral_on_beige('Hello world'))

with colorful.with_true_colors() as c:
    print(c.italic_coral_on_beige('Hello world'))

Color palette

colorful's Python API is based on color names like in colorful.bold_white_on_black('Hello'). During runtime these color names are translated into proper ANSI escape code sequences supported by the color mode in use. However, all color names are registered in a color palette which is basically a mapping between the color names and it's corresponding RGB value. Very much like this:

color_palette_example = {
    'black': '#000000',
    'white': '#FFFFFF',
}

Note: Depending on the color mode which is used the RGB value will be reduced to fit in the value domain of the color mode.

The default color palette is the X11 rgb.txt palette - it's shipped with colorful, thus, you don't have to provide your own. colorful ships with a second built-in color palette called colornames. Those colors are from the curated list of the color-names repository. You can use those via the colorful.setup() method, like this:

colorful.setup(colorpalette=colorful.COLORNAMES_COLORS)

If you wish to have another color palette from a file as your default color palette you can set the COLORFUL_DEFAULT_COLOR_PALETTE environment variable to this file:

COLORFUL_DEFAULT_COLOR_PALETTE=/usr/share/X11/rgb.txt python spam.py

The file either has to be a txt file like the X11 rgb.txt or a JSON file:

[
    {"name": "18th Century Green", "hex":"#a59344"},
    {"name": "1975 Earth Red", "hex":"#7a463a"}
]

Custom color palette

colorful supports to update or replace the default color palette with custom colors. The colors have to be specified as RGB hex or channel values:

# corporate identity colors
ci_colors = {
    'mint': '#c5e8c8',  # RGB hex value
    'darkRed': '#c11b55',  # RGB hex value
    'lightBlue': (15, 138, 191)  # RGB channel triplet
}

# replace the default palette with my custom one
colorful.use_palette(ci_colors)
# update the default palette with my custom one
colorful.update_palette(ci_colors)

# we can use these colors
print(colorful.italic_mint_on_darkRed('My company'))

Styles

colorful supports some famous color palettes using what's called styles in colorful:

colorful.use_style('solarized')

# print the official solarized colors
print(colorful.yellow('yellow'), colorful.orange('orange'),
    colorful.red('red'), colorful.magenta('magenta'),
    colorful.violet('violet'), colorful.blue('blue'),
    colorful.cyan('cyan'), colorful.green('green'))

The following styles are already supported:

solarized - Website
solarized colors
monokai
monokai colors

Note: if you know some awesome color palettes which could be a new style in colorful, please contribute it!

Style a string

colorful provides multiple ways to use style a string. Most useful and expressive is probably the method syntax where you specify the modifiers and colors in the method name itself and pass the string as argument to this method. However, you can use all the following methods to achive similars things:

(1) Style a string with a method call colorful.[<modifiers...>]_[<fgColor>]_[on_<bgColor>](str, nested=False)

print(colorful.red('I am red'))
print(colorful.italic_yellow('I am italic and yellow'))
print(colorful.black_on_white('I am black on white'))

The method syntax can be one of:

  • colorful.<modifier>
  • colorful.<modifier1>_<modifier2>
  • colorful.<fg_color>
  • colorful.on_<bg_color>
  • colorful.<modifiers>_<fg_color>
  • colorful.<modifiers>_<bg_color>
  • colorful.<fg_colors>_on_<bg_color>
  • colorful.<modifiers>_<fg_color>_on_<bg_color>

Note that multiple <modifier>s can be specified at once.

Available modifiers are:

  • reset (explicitely reset all styles before the passed argument)
  • bold
  • dimmed (not widely supported)
  • italic
  • underlined
  • blinkslow
  • blinkrapid
  • inversed (not widely supported)
  • concealed (not widely supported)
  • struckthrough

The available colors depend on the color palette you are using. By default all X11 rgb.txt colors are available.

The type of the return value of such a style method is colorful.ColorfulString. It correctly supports all str() methods including len().

As you can see from the syntax in the section name, colorful supports nesting styles. See Nesting styles.

(2) Style a string with & and |

colorful implements the __or__ and __and__ protocol to combine styles and pipe strings into them:

print(colorful.bold & colorful.red | 'Hello World')
print(colorful.bold_red_on_black | 'Hello World')
print(colorful.bold | colorful.red_on_black('Hello World')

Note: the piping | has the same effect as doing a method call to the style.
So you could do (colorful.bold & colorful.red)('Hello World')

(3) Style a string with colorful.format(string, *args, **kwargs)

print(colorful.format('{c.red}I am {what}{c.close_fg_color}', what='red'))
# alternatively to ``c.close_fg_color`` you can reset every style with ``c.reset``
print(colorful.format('{c.red}I am red{c.reset}'))

print(colorful.format('{c.italic_yellow}I am italic and yellow{c.no_italic}{c.close_fg_color}'))
print(colorful.format('{c.black_on_white}I am black on white{c.close_fg_color}{c.close_bg_color}'))

colorful will replace the {c.<style>} with the correspnding style. It's not necessary to pass a colorful object for c to format() - colorful will handle that. Every other format argument ({<name>}) has to be pass to the colorful.format() call as args or kwarg.

Note: The same syntax, modifiers and colors for the style in {c.<style>} can be used as for (1) Style a string with a method call.

(4) Style and print a string with colorful.print(*strings, sep=' ', end='\n', file=sys.stdout, flush=False)

colorful.print('{c.italic_yellow}I am italic and yellow{c.no_italic}{c.close_fg_color}')
colorful.print('{c.red}I am red{c.reset}', end='', file=open('log.txt', 'a+'))

The colorful.print() method accepts the same arguments as the Python 3.X built-in print() function.

Note: for Python 2 you have to import the print function: from __future__ import print_function.

(5) Style a string with str.format()

print('{c.red}I am red{c.close_fg_color}'.format(c=colorful))
# alternatively to ``c.close_fg_color`` you can reset every style with ``c.reset``
print('{c.red}I am red{c.reset}'.format(c=colorful))

print('{c.italic_yellow}I am italic and yellow{c.no_italic}{c.close_fg_color}'.format(
    c=colorful))
print('{c.black_on_white}I am black on white{c.close_fg_color}{c.close_bg_color}'.format(
    c=colorful))

Note: The same syntax, modifiers and colors for the style in {c.<style>} can be used as for (1) Style a string with a method call.

Nesting styles

colorful supports to nest styles with it's method call syntax when setting the parameter nested to True. If you are using str.format() like in the first example below you don't even need the nested=True flag!

The following examples show the behavior:

print(colorful.red('red {0} red'.format(colorful.white('white'))))
print(colorful.red('red' + colorful.white(' white ', nested=True) + 'red'))

# if using ``nested=True`` but you don't actually nest
# it's absolutely fine and will work as expected.
print(colorful.red('red', nested=True) + ' default color')

Correctly support the len() protocol

colorful correctly supports the len() protocol (__len__) on the styled strings. As mentioned above, when you style a string a colorful.ColorfulString object is returned. This object returns the length (when calling len()) as it would be for the unstyled string to integrate styled strings seemlessly into your application.

>>> s = 'Hello World'
>>> len(s)
11
>>> len(colorful.yellow(s))
11
>>> assert len(s) == len(colorful.yellow(s))

Temporarily change colorful settings

colorful provides a hand full of convenient context managers to change the colorful settings temporarily:

(1) change color mode

Use 8 ANSI colors:

with colorful.with_8_ansi_colors() as c:
    print(c.red('I am red'))

Use 256 ANSI colors:

with colorful.with_256_ansi_colors() as c:
    print(c.red('I am red'))

Use true colors:

with colorful.with_true_colors() as c:
    print(c.red('I am red'))

(2) change color palette

# replace the entire color palette
with colorful.with_palette(my_palette) as c:
    print(c.customRed('I am custom red'))

# update the color palette
with colorful.with_updated_palette(my_palette) as c:
    print(c.customRed('I am custom red'))

(3) change style

with colorful.with_style('solarized') as c:
    print(c.red('I am solarized red'))

This project is published under MIT.
A Timo Furrer project.
- :tada: -

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

colorful-0.5.3.tar.gz (203.5 kB view hashes)

Uploaded Source

Built Distribution

colorful-0.5.3-py2.py3-none-any.whl (201.9 kB view hashes)

Uploaded Python 2 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