Skip to main content

Python Terminal Color

Project description

PyTColor: Python Terminal Color

1.0.0.1

  • Added support to python >= 3.0.0

1.0.0.0

PyTColor: A simple python package to get color terminal outputs.

  • color_print can be used to substitute the python print with keywords color, bg_color, style.

  • color_print is api compatible with python print.

  • ColoredStreamHandler can be used instead of python StreamHandler in logging to get colored logs.

Dependancies

QuickStart

Installation and Basic Configuration

  1. Install PyTColor: Python Terminal Color by running pip install PyTColor.

  2. There is no specific configuration needed to use PyTColor.

# color_print
from pytcolor import color_print
color_print("PyTColor", color='green', bg_color='red', style='underline', end=' ')
color_print("Python", "Terminal", color='magenta', bg_color='None', style='underline')
color_print("Python Terminal Color", color='cyan', bg_color='grey', style='bold')

# ColoredStreamHandler
import logging
logger = logging.getLogger('test')
logger.setLevel(logging.DEBUG)

ch = ColoredStreamHandler()
ch.setLevel(logging.DEBUG)

formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
ch.setFormatter(formatter)
logger.addHandler(ch)

logger.debug('debug message')
logger.info('info message')
logger.warning('warn message')
logger.error('error message')
logger.critical('critical message')

Basic Usage

Below are some basic ussage for PyTColor package.

example:

>>>from pytcolor import color_print
>>>color_print("PyTColor", color='green', bg_color='red', style='underline', end=' ')
PyTColor  # \033[4m\033[41m\033[32mPyTColor\033[0m
>>>from pytcolor.constants import COLORS_NAME, STYLES_NAME
>>>COLORS_NAME
['grey', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white']
>>>STYLES_NAME
['bold', 'dark', 'underline', 'blink', 'reverse', 'concealed']
>>>from pytcolor import ColoredStreamHandler
>>>class CustomColoredStreamHandler(ColoredStreamHandler):
...    def __init__(self, *args, **kwargs):
...        super().__init__(*args, **kwargs)  # important to call first
...        self._level_color_mapping = {
...            "50:*": ("red", None, "underline"),   # critical and above
...            "40:50": ("red", None, None),         # error and above till critical but not critical
...            "30:40": ("yellow", None, None),      # warning and above till error but not error
...            "20:30": ("cyan", None, None),        # info and above till warning but not warning
...            "10:20": ("cyan", None, "underline")  # debug and above till info but not info
...        }

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

pytcolor-1.0.0.1.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytcolor-1.0.0.1-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

Details for the file pytcolor-1.0.0.1.tar.gz.

File metadata

  • Download URL: pytcolor-1.0.0.1.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for pytcolor-1.0.0.1.tar.gz
Algorithm Hash digest
SHA256 9e1dfdc6e1ce3e099a9feeaf8bd7a7e1b775ce6b03b79397e4149406d826c608
MD5 ca16cd915384d56aad6e9cbcf9795cd8
BLAKE2b-256 589b7e590345d35034e971ce01e18a7f5b3fa37c90c8754f2c3b361ad408b585

See more details on using hashes here.

File details

Details for the file pytcolor-1.0.0.1-py3-none-any.whl.

File metadata

  • Download URL: pytcolor-1.0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 6.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for pytcolor-1.0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 044a28c9a1207544a049c516a3554b3b4b9de38ab3800738e961719108b07430
MD5 de2a5f8f2bfc3ae79fc147c72dbbec8e
BLAKE2b-256 18b02293c1f441d6b4a3f05ff84f95153e8b64ea394b86ef0eb78f7350ce2395

See more details on using hashes here.

Supported by

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