Skip to main content

Colored Output - c_out. Python print with a style!

Project description

Installation

pip install c_out

Introduction

Colored Output - c_out

You don't have to tell me how monotonous it is to use the same old print statement in python, as there is no option to format it. Moreover, we all have faced problems while debugging our code with countless print statements but no way to highlight any of it.

Well we can definitely install/import third-party packages, but some of us just prefer the old school solutions.

I have a simple, yet effective solution for you. What if I tell you, it is possible to create a custom class yourself which can format the output in the terminal?

Using this module you can directly format the output you see in your command line interface without using any external packages.
It uses ANSI Escape Codes to format the standard output.

Example Usage

c_out("Hello World")  
c_out("Hello World", Color.Text.BLUE)  
c_out("Hello World", Color.Text.RED, Color.BG.BLACK, Style.BOLD)  
c_out("Hello World", Color.Text.RED, Color.BG.BLACK, Style.BOLD, Style.STRIKETHROUGH)  
c_out("Hello World", Color.Text.RED, Color.BG.BLACK, Style.BOLD, Style.STRIKETHROUGH, Style.ITALIC) 

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

c_out-0.5.tar.gz (3.5 kB view hashes)

Uploaded Source

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