Skip to main content

Cross-platform colored terminal text.

Project description

http://code.google.com/p/colorama/

Description

Provides a simple cross-platform API to print colored terminal text from Python applications.

ANSI escape character sequences are commonly used to produce colored terminal text on Macs and Unix. Colorama provides some shortcuts to generate these sequences, and makes them work on Windows too.

This has the happy side-effect that existing applications or libraries which already use ANSI sequences to produce colored output on Linux or Macs (eg. using packages like ‘termcolor’) can now also work on Windows, simply by calling colorama.init().

Status

In development. Some features, as noted below, are not implemented yet.

Dependencies

None, other than Python. Tested on Python 2.6.5.

Usage

Initialisation

Applications should initialise Colorama using:

from colorama import init
init()

If you are on Windows, the call to ‘’init()’’ will start filtering ANSI escape sequences out of any text sent to stdout or stderr, and will replace them with equivalent Win32 calls.

Calling ‘’init()’’ has no effect on other platforms (unless you use ‘autoreset’, see below) The intention is that all applications should call init() unconditionally, then their colored text output simply works on all platforms.

Colored Output

Cross-platform printing of colored text can then be done using Colorama’s constant shorthand for ANSI escape sequences:

from colorama import Fore, Back, Style
print Fore.RED + 'some red text'
print Back.GREEN + and with a green background'
print Style.DIM + 'and in dim text'
print + Fore.DEFAULT + Back.DEFAULT + Style.DEFAULT
print 'back to normal now'

or simply by manually printing ANSI sequences from your own code:

print '/033[31m' + 'some red text'
print '/033[30m' # and reset to default color

or Colorama can be used happily in conjunction with existing ANSI libraries such as Termcolor (http://pypi.python.org/pypi/termcolor):

# use Colorama to make Termcolor work on Windows too
from colorama import init
init()

# then use Termcolor for all colored text output
from termcolor import colored
print colored('Hello, World!', 'green', 'on_red')

Available formatting constants are:

Fore: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, DEFAULT.
Back: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, DEFAULT.
Style: DIM, NORMAL, BRIGHT, RESET_ALL

Style.RESET_ALL resets foreground, background and brightness. Colorama will perform this reset automatically on program exit (Not implemented).

Autoreset

If you find yourself repeatedly sending reset sequences to turn off color changes at the end of every print, then init(autoreset=True) will automate that:

from colorama import init
init(autoreset=True)
print Fore.RED + 'some red text'
print 'automatically back to default color again'

Without wrapping stdout

Colorama works by wrapping stdout and stderr with proxy objects, that override write() to do their work. Using autoreset (above) will do this wrapping on all platforms, not just Windows.

If these proxy objects wrapping stdout and stderr cause you problems, then this can be disabled using init(wrap=False) (Not implemented). You can then access Colorama’s AnsiToWin32 proxy directly. Any attribute access on this object will be forwarded to the stream it wraps, apart from .write(), which on Windows is overridden to first perform the ANSI to Win32 conversion on text:

from colorama import init, AnsiToWin32
init(wrap=False)

stream = AnsiToWin32(sys.stderr)
print >>stream, Fore.BLUE + 'blue text on stderr'

Development

Tests require Michael Foord’s Mock module. I have been using nosetests to run the tests although they may work without it, using:

python -m colorama.tests.<module>

Known Problems

Only the colors and dim/bright subset of ANSI ‘m’ commands are recognised. There are many other ANSI sequences (eg. moving cursor position) that could also be usefully converted into win32 calls. These are currently silently stripped from the output on Windows.

Project details


Download files

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

Source Distributions

colorama-0.1.2.zip (15.6 kB view details)

Uploaded Source

colorama-0.1.2.tar.gz (7.7 kB view details)

Uploaded Source

File details

Details for the file colorama-0.1.2.zip.

File metadata

  • Download URL: colorama-0.1.2.zip
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for colorama-0.1.2.zip
Algorithm Hash digest
SHA256 10e40ce2298c412a6b6a96c2a0d87dc652f7d481e830659daf400cbd2946d2d1
MD5 25ceefa49f41111928a17e436cb5ae86
BLAKE2b-256 be2c4e6eb6434f5d3974c125e8cb40262bf289518e6aa9d7e4d1b6bd4ce224a8

See more details on using hashes here.

File details

Details for the file colorama-0.1.2.tar.gz.

File metadata

  • Download URL: colorama-0.1.2.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for colorama-0.1.2.tar.gz
Algorithm Hash digest
SHA256 e54911d64d83a05489290232849b4c17b3f1a5b54246cd40ab94fdd9e5b0fcf3
MD5 37660e76426ba38f9afc32da47e69a71
BLAKE2b-256 57cc50b228f4a10b72e1b535832ccee3f1829e8bf49d9b72db8bf7060fc9e8c4

See more details on using hashes here.

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