Unicode class with automatic (light/dark background) terminal colors support.
Project description
Yet another ANSI color text library for Python. Provides “auto colors” for dark/light terminals.
In Python2.x this library subclasses unicode, while on Python3.x it subclasses str. colorclass is supported on Python 2.6, 2.7, 3.3, and 3.4.
Quickstart
Install:
pip install colorclass
Example Implementation
Source code for the example code is: example.py
Usage
Different colors are chosen using curly-bracket tags, such as {red}{/red}. For a list of available colors, call colorclass.list_tags().
The available “auto colors” tags are:
autoblack
autored
autogreen
autoyellow
autoblue
automagenta
autocyan
autowhite
Methods of Class instances try to return sane data, such as:
from colorclass import Color
color_string = Color('{red}Test{/red}')
color_string
u'\x1b[31mTest\x1b[39m'
len(color_string)
4
color_string.istitle()
True
There are also a couple of helper attributes for all Color instances:
color_string.value_colors
'\x1b[31mTest\x1b[39m'
color_string.value_no_colors
'Test'
Changelog
1.0.1
Fixed splitlines() method.
1.0.0
Initial release.
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
File details
Details for the file colorclass-1.0.1.tar.gz
.
File metadata
- Download URL: colorclass-1.0.1.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 397f59ae3ecaa978f4b23b59aea78d71032758ed6c229e177ba58fd23ca6f147 |
|
MD5 | 23445df818711fbc07ea6ac54061151c |
|
BLAKE2b-256 | a39b63567084dbfb29dd007f2cf415bd5db655b90b2d04956133a09cff242165 |