Metadata-Version: 2.1
Name: bcolors
Version: 1.0.3
Summary: A module for coloring print statement.
Home-page: https://github.com/yks0000/bcolors
Author: Yogesh Sharma
Author-email: yks0000@gmail.com
License: GNU General Public License v3.0
Project-URL: Bug Tracker, https://github.com/yks0000/bcolors/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# BCOLORS

Setting Text ForeGround Color. This can be used with Print Statement.

## Usage

```python
import bcolors as b
print(b.OK + "Color Statement" + b.END)
```


