We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e6ad06 commit e6dbf1aCopy full SHA for e6dbf1a
README.md
@@ -0,0 +1,29 @@
1
+Python Color Printer
2
+====================
3
+
4
+This package provides a class to print colored output on the terminal.
5
6
+Author: Felix Widmaier
7
8
9
+Installation
10
+------------
11
12
+To install the package use the `setup.py`:
13
14
+ python setup.py install
15
16
17
+Usage
18
+-----
19
20
+This is a simple example how to use the color printer:
21
22
+ from colorprinter import cprint
23
+ cprint.red().echo("This text is red")
24
+ cprint.blue().bold().echo("This text is blue and bold")
25
26
+For more details type
27
28
+ import colorprinter
29
+ help(colorprinter.ColorPrinter)
0 commit comments