Metadata-Version: 2.1
Name: print-color
Version: 0.2.0
Summary: A simple package to print in color to the terminal
Home-page: https://github.com/xy3/print-color
License: MIT
Author: xy3
Author-email: a@xsq.pw
Requires-Python: >=3.5,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/xy3/print-color
Description-Content-Type: text/markdown

# print-color

---

### Installing

```
pip3 install print-color
```

### Requirements

- python 3.5^

### Usage

```
from print_color import print

print("Hello world", tag='success', tag_color='green', color='white')
```

Img

```
print("Error detected", tag='failure', tag_color='red', color='magenta')
```

Img

```
print("Printing in color", color='green', format='underline', background='cyan')
```

Img



