Skip to main content

A library to print colorful

Project description

This is just a simple library to print colorful using sys.stderr to write.

from colorful_logging.colorful_logging import color_print, c_print

# color_print(*values: tuple[Any, ...])
# c_print(*values: tuple[Any, ...])
# ['red', 'green', 'yellow', 'blue', 'pink', 'cyan', 'gray', 'black', 'dark red', 'dark green', 'dark yellow', 'dark blue', 'dark pink', 'dark cyan', 'bright black', 'underline']

l = [1, 2, 3]

# === FOR EXAMPLE === #

color_print('ali is good', l, 'cyan')
# will produce (with colored text): 
# ali is good [1, 2, 3]


c_print(l, 'sample text', 'green')
# will produce (with colored text): 
# [1, 2, 3] sample text

If your input color not found, function will print the color name. for example:

from colorful_logging.colorful_logging import color_print, c_print

color_print('ali is good', 'cyann')
# will produce
# ali is good cyann

To get specific color:

from colorful_logging.colorful_logging import get_color

c = get_color("dark blue")
r = get_color("reset")

text = f"hello {c}Ali{r}"
print(text)

You can also colorize you object:

from colorful_logging.colorful_logging import colorize

p = Person(name="ali", age=18)

colorized_elem = colorize("pink", p)

print(f"hello {colorized_elem}")

Possible colors:

['red', 'green', 'yellow', 'blue', 'pink', 'cyan', 'gray', 'black', 'dark red', 'dark green', 'dark yellow', 'dark blue', 'dark pink', 'dark cyan', 'bright black', 'underline']

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

colorful_logging-0.9.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

colorful_logging-0.9-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

Supported by

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