Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matthewdeanmartin/termcolor
Fork of termcolor, a two function library for printing colored text to your terminal
https://github.com/matthewdeanmartin/termcolor
Last synced: 1 day ago
JSON representation
Fork of termcolor, a two function library for printing colored text to your terminal
- Host: GitHub
- URL: https://github.com/matthewdeanmartin/termcolor
- Owner: matthewdeanmartin
- License: other
- Created: 2021-12-04T17:52:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-29T15:48:57.000Z (over 1 year ago)
- Last Synced: 2024-12-02T21:46:46.036Z (20 days ago)
- Language: Python
- Homepage:
- Size: 33.2 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# termcolor-whl
Colorize your console output.This is a fork of `termcolor`, originally created so it would have a wheel package.
Note that handling of nested colour tokens has been removed in this package. This is to save on an import of a large package (`re`) and since this is actually not a common usage case.## Example
```python
import sys
from termcolor import colored, cprinttext = 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)
```## Disabling
Any value in the environment variable `ANSI_COLORS_DISABLED` will disable colors.## Text Properties
Text colors:> - grey
> - red
> - green
> - yellow
> - blue
> - magenta
> - cyan
> - whiteText highlights:
> - on\_grey
> - on\_red
> - on\_green
> - on\_yellow
> - on\_blue
> - on\_magenta
> - on\_cyan
> - on\_whiteAttributes:
> - bold
> - dark
> - underline
> - blink
> - reverse
> - concealed## 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## License and Authorship
Original author: Konstantin Lepa , Copyright (c) 2008-2011 Volvox Development Team
Original license: MIT.Original source code repository no longer available, this is a fork of the artifacts published to pypi
## Documents
- [Changes](https://github.com/matthewdeanmartin/termcolor/blob/main/docs/CHANGES.MD)