ppc64le/linux-1.0.0/: termcolor-2.1.0 metadata and description

Simple index Newer version available

ANSI color formatting for output in terminal

author_email Konstantin Lepa <[email protected]>
classifiers
  • Development Status :: 5 - Production/Stable
  • Environment :: Console
  • Intended Audience :: Developers
  • License :: OSI Approved :: MIT License
  • Operating System :: OS Independent
  • Programming Language :: Python
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3 :: Only
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: Implementation :: CPython
  • Programming Language :: Python :: Implementation :: PyPy
  • Topic :: Terminals
  • Environment :: MetaData :: IBM Python Ecosystem
description_content_type text/markdown
keywords ANSI,ANSI color,ANSI colour,color,colour,formatting,termcolor,terminal
license MIT
license_file
  • COPYING.txt
maintainer Hugo van Kemenade
project_urls
  • Changelog, https://github.com/termcolor/termcolor/releases
  • Homepage, https://github.com/termcolor/termcolor
  • Source, https://github.com/termcolor/termcolor
provides_extras
  • tests
requires_dist
  • pytest; extra == 'tests'
  • pytest-cov; extra == 'tests'
requires_python >=3.7
File Tox results History
termcolor-2.1.0-py3-none-any.whl
Size
13 KB
Type
Python Wheel
Python
3

termcolor

PyPI version Supported Python versions PyPI downloads GitHub Actions status Codecov Licence Code style: Black Tidelift

Example

import sys

from termcolor import colored, cprint

text = colored("Hello, World!", "red", attrs=["reverse", "blink"])
print(text)
cprint("Hello, World!", "green", "on_red")

print_red_on_cyan = lambda x: cprint(x, "red", "on_cyan")
print_red_on_cyan("Hello, World!")
print_red_on_cyan("Hello, Universe!")

for i in range(10):
    cprint(i, "magenta", end=" ")

cprint("Attention!", "red", attrs=["bold"], file=sys.stderr)

Text properties

Text colors:

Text highlights:

Attributes:

Terminal properties

Terminal bold dark underline blink reverse concealed
xterm yes no yes bold yes yes
linux yes yes bold yes yes no
rxvt yes no yes bold/black yes no
dtterm yes yes yes reverse yes yes
teraterm reverse no yes rev/red yes no
aixterm normal no yes no yes yes
PuTTY color no yes no yes no
Windows no no no no yes no
Cygwin SSH yes no color color color yes
Mac Terminal yes no yes yes yes yes