A small colorful module to change text colors in terminal
Project description
Chroma Console
Chroma console is a python package for adding color and style to terminal text output using ANSI escape codes.
- if requests is installed this package updates automaticaly
Installation
pip install chromaconsole
Functions
Style.disable()
Style.enable()
Style.reset()
Style.bold()
Style.faint()
Style.italic()
Style.underline()
Style.slow_blink()
Style.rapid_blink()
Style.reverse()
Style.hidden()
Style.strikethrough()
Style.doubly_underlined()
Style.normal_intensity()
Style.not_italic()
Style.not_underline()
Style.not_blinking()
Style.proportional_spacing()
Style.not_reversed()
Style.reveal()
Style.not_strikethrough()
Style.not_proportional_spacing()
Style.overlined()
Style.not_overlined()
Style.minecraft(*args)
Color.text(*args)
Color.default_text()
Color.background(*args)
Color.default_background()
Example usage
from chromaconsole import Color, Style
print(f"{Color.text(r, g, b)}here is RGB colored text{Style.reset()}")
print(f"{Color.background(r, g, b)}here is RGB colored background{Style.reset()}")
print(f"{Color.text('#rrggbb')}here is HEX colored text{Style.reset()}")
print(f"{Color.background('#rrggbb')}here is HEX colored background{Style.reset()}")
print(f"{Style.bold()}Bold {Style.reset()}")
print(f"{Style.italic()}Italic {Style.reset()}")
print(f"{Style.underline()}Underline {Style.reset()}")
print(f"{Style.strikethrough()}Strikethrough {Style.reset()}")
print(f"{Style.bold()}{Style.italic()}bold+italic {Style.reset()}")
print(f"{Style.minecraft('§','§ahello §4world§r')}")
.enable() and .disable():
After executing the Style.disable()
command, the system will no longer apply coloring and styling to the content. To re-enable these features, simply use the Style.enable()
command.
#disable the coloring and styling
Style.disable()
print(f"{Color.text(r, g, b)}text without color and style{Style.reset()}")
Style.enable()
print(f"{Color.text(r, g, b)}text with color and style{Style.reset()}")
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
chromaconsole-0.3.5.3.tar.gz
(5.5 kB
view details)
Built Distribution
File details
Details for the file chromaconsole-0.3.5.3.tar.gz
.
File metadata
- Download URL: chromaconsole-0.3.5.3.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30b1d7063bfb7a8927deb68d3515177408c77acb83527db5ee95684af30d653f |
|
MD5 | 764e5d24ec82c514789e070d910bcb1c |
|
BLAKE2b-256 | ffa20efd0f0452902f5732d06398d62b50217bb1154d115c3588f78c589e93a3 |
File details
Details for the file chromaconsole-0.3.5.3-py3-none-any.whl
.
File metadata
- Download URL: chromaconsole-0.3.5.3-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b975bc271fa5fc552cac748eadc4e74478220b33bf9601259682ee4839b0ba3 |
|
MD5 | e0a9402ad319ee240e647f8e5ade47cd |
|
BLAKE2b-256 | ab339e90d95aa6dfa95e583ac583f56d9d2ca9408ac40fca67ea34792a829860 |