Metadata-Version: 2.4
Name: color_ascii_magic_genai
Version: 0.0.2
Summary: A small example package for generating colored ASCII art
Project-URL: Homepage, https://github.com/example/color_ascii_magic_genai
Author-email: Prasoon Kumar <prasoonkumar@example.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: art
Requires-Dist: termcolor
Description-Content-Type: text/markdown

# Color ASCII Magic GenAI

This is a simple package to generate ASCII art with colors.

## Installation

```bash
pip install color_ascii_magic_genai
```

## Usage

```python
from color_ascii_magic_genai import colorize_text

print(colorize_text("Hello World", color="red"))
print(colorize_text("Random Color", color="random"))
print(colorize_text("Rainbow Text", color="rainbow"))

```
