Metadata-Version: 2.1
Name: clistyle
Version: 1.0.0
Summary: Python3 library for coloring command line interface.
Home-page: https://github.com/juanbindez/clistyle
Author: Juan Bindez
Author-email: juanbindez780@gmail.com
License: GPLv2 license
Project-URL: Bug Reports, https://github.com/juanbindez/clistyle/issues
Project-URL: Read the Docs, https://github.com/JuanBindez/clistyle/tree/main/docs/user
Keywords: tools,cli,terminals
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE


# Clistyle

### Python3 library for coloring command line interface.

## install:

    pip install clistyle

## usage:

```python

from clistyle import Color

c = Color()

print(c.YELLOW + "Test Colors" + c.RESET)
print(c.BLUE + "Test Colors" + c.RESET)
print(c.GREEN + "Test Colors" + c.RESET)
print(c.CYAN + "Test Colors" + c.RESET)
print(c.MAGENTA + "Test Colors" + c.RESET)
print(c.RED + "Test Colors" + c.RESET)

```
## Output:

![Captura de tela de 2023-10-07 09-08-52](https://github.com/JuanBindez/clistyle/assets/79322362/3b754dda-e673-4948-a8fc-3fac442d52a9)


