🚀 Socket Launch Week 🚀 Day 5: Introducing Socket Fix.Learn More

cprint

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cprint

Printing and debugging with color

1.2.2
Maintainers
1

Build Status

cprint

Do you find it annoying when you have to search for a certain debug, or error, line in your console? Have you ever dreamed of a simple and quick way to make your debug print truly visible? Well here is your solution!
cprint is a minimalist python library which gives you the possibility to print in color.

Install

pip install cprint

Usage

from cprint import *

cprint(arg) 							# WHITE
cprint.ok(arg)							# BLUE
cprint.info(arg)						# GREEN
cprint.warn(arg)						# YELLOW
cprint.err(arg, interrupt=False)		# BROWN
cprint.fatal(arg, interrupt=False)		# RED

Demo

In case you have issues under Windows, try installing colorama with pip install colorama.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts