Skip to main content

ANSI colors for Python

Project description

A simple module to add ANSI colors and decorations to your strings.

Example Usage

You can choose one of the 8 basic ANSI colors: black, red, green, yellow, blue, magenta, cyan, white.

from colors import red, green, blue
print red('This is red')
print green('This is green')
print blue('This is blue')

Optionally you can specify a background color.

print red('red on blue', bg='blue')
print green('green on black', bg='black')

You can additionally specify one of the supported styles: bold, faint, italic, underline, blink, blink2, negative, concealed, crossed. Not all styles are supported by all terminals.

from colors import bold, underline
print bold('This is bold')
print underline('underline red on blue', fg='red', bg='blue')
print green('bold green on black', bg='black', style='bold')

You can also use more than one styles at once.

print red('This is very important', style='bold+underline')

xterm-256 colors are supported as well, to use them give an integer instead of a color name.

from colors import color
for i in range(256):
    print color('Color #%d' % i, fg=i)

License

colors is licensed under the ISC license.

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

ansicolors-1.0.2.tar.gz (3.1 kB view details)

Uploaded Source

File details

Details for the file ansicolors-1.0.2.tar.gz.

File metadata

  • Download URL: ansicolors-1.0.2.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for ansicolors-1.0.2.tar.gz
Algorithm Hash digest
SHA256 7664530bb992e3847b61e3aab1580b4df9ed00c5898e80194a9933bc9c80950a
MD5 d3a19fcd75c89772360e0d2b693fc50f
BLAKE2b-256 acc1e21f0a1258ff927d124a72179669dcc7efcb57b22df8cd0e49ed8f1a308c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page