agn-7 / colored-print

Python colored print plus storing it into a file.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Colored Print

PyPI Python Versions GitHub license

A lightweight python library in order to print in different colors and save them into a file optionally.

Setup

pip install python-colored-print

Usage

from colored_print import log

log.success("Hello", 123, "Bye").store()
log.info("Hello", 123, "Bye")
log.warn("Hello", 123, "Bye")
log.err("Hello", 123, "Bye").store(path="log.txt")
log.pink("Hello", 123, "Bye")
log("Hello", 123, "Bye")  # default color is white
log.store("Hello", 123, "Bye")  # only store without printing

Output

Output

About

Python colored print plus storing it into a file.

License:MIT License


Languages

Language:Python 100.0%