Metadata-Version: 2.1
Name: colorain
Version: 0.0.13
Summary: A simple colouring package for making console programmes great again.
Home-page: UNKNOWN
Author: Susmit Islam
Author-email: <susmitislam31@gmail.com>
License: UNKNOWN
Keywords: colour,color,terminal
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows

# Colorain
A simple package that makes printing coloured text to the console a piece of cake.

## Installation
```
pip install colorain
```

## Usage
```python
from colorain import ColoredText
txt = ColoredText('`f|y`Okay`f|n`, workin `f|c`fine`f|n`') # parses the colour tags and colour-codes the text as needed
print(txt) # prints the coloured text
print(txt.raw_text()) # strips off the colour tags
```
![Colorain](https://github.com/susmit31/colorain/blob/master/ss.png)

