Metadata-Version: 2.1
Name: niceprint
Version: 3.1.0
Summary: A minute package for formating output
Home-page: https://niceprint.readthedocs.io/en/latest/
Author: AstralDev
Author-email: ekureedem480@gmail.com
License: GNU 3
Platform: UNKNOWN
Requires-Python: >=3
Description-Content-Type: text/markdown

# niceprint 

Description
-----------
This is a python package for printing text with different colors and styles. Best for printing results from CLI programs. Parts of the code is gotten from `color` package.

niceprint comes with a few other functionalities such as **SetInterval, ProgressBar, MultiColoredPrint.** and many [others](http://astraldev.github.io/niceprint#classes)

Installation
-------
```bash
$ pip3 install niceprint
```

Examples
---------
```python
from niceprint import Print
from niceprint import MultiColoredPrint as mcp

Print("Niceprint", color="c")

mcp("Niceprint", color="crb")

```

Documentation
-------------
Availiable at https://niceprint.readthedocs.io/en/latest/

View [changelog](CHANGELOG)




