Your own expressive painter who colors text in your terminal.
Project description
Painter is an ANSI coloring library based on the excellent chalk and colors.js libraries for Node.js. However, painter attempts to provide an even more expressive API which reads like English.
Painter is fully tested with 100% coverage and also completely Flake8 compliant too!
Quick Start
Install Painter in your virtualenv as follows:
pip install painter
And now, go ahead and use it to output colors to your terminal:
from __future__ import print_function
from painter import paint
# Simple printing of colors
print('Welcome to Painter!', paint.red('I can paint things red'),
paint.blue('and blue'))
# Chaining colors and styles
print(paint.blue.on_red.bold.underline('and far more complex combos too'))
print()
# Using color patterns
print(paint.rainbow('Awww look, a pretty rainbow :)'))
print(paint.zebra('and a scary looking zebra!'))
print()
# Nested painting
print(paint.on_red('I can also use a background color across',
paint.blue('multiple'),
paint.yellow('foreground colors')))
# Custom separator
print(paint('and', 'allow', 'you to use', paint.red('custom separators'),
sep='-'))
print()
# Creating themes
cool_theme = paint.green.on_red.underline.bold
print('Creating', cool_theme('your own theme'), 'is easy')
# Easily disable painting of colors
paint.enabled = False
print('and I allow you to easily', paint.red('disable'), paint.blue('me'))
print()
paint.enabled = True
print('Hope you have a', paint.blue('lovely day!'), paint.green(':)'))
The output of this script looks something like this:
Documentation
For full details on using Painter, please check out the Painter GitHub Page.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
painter-0.3.1.tar.gz
(5.7 kB
view details)
File details
Details for the file painter-0.3.1.tar.gz
.
File metadata
- Download URL: painter-0.3.1.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3373463d584ba9bbbb23d570c37893e7930b93704fe1149df88e9d2ef906fc88 |
|
MD5 | 64fa1e0f1866f72e5e147acc0480a105 |
|
BLAKE2b-256 | 82a16b98ddf98374c29f930eae8cbdcde25480e1b83d21c32a3c4e61b0df019c |