Metadata-Version: 2.4
Name: asciiartpackage
Version: 0.0.1
Summary: A colorful ASCII art Python package with vibrant colors
Author-email: Paramjit Singh <parambrar862@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/param20h
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# ASCII Art Package 🎨

A colorful ASCII art Python package with vibrant ANSI colors!  
Built with creativity and colors! ✨

## Features
- 🎨 Colorful ASCII art displays
- 🌈 Rainbow text generator
- ❤️ ASCII heart design
- ⭐ ASCII star design
- 🚀 ASCII rocket design
- ☕ ASCII coffee cup design
- 🎯 ANSI color support for terminal output

## Installation

### From Test PyPI
```bash
pip install --index-url https://test.pypi.org/simple/ asciiartpackage
```

### From PyPI (after publishing)
```bash
pip install asciiartpackage
```

## Usage

```python
from asciiartpackage import hello, show_rainbow_text, ascii_heart, ascii_star, ascii_rocket, ascii_coffee

# Display colorful hello message
print(hello())

# Show rainbow text
print(show_rainbow_text("Hello World!"))

# Display ASCII heart
print(ascii_heart())

# Display ASCII star
print(ascii_star())

# Display ASCII rocket
print(ascii_rocket())

# Display ASCII coffee
print(ascii_coffee())
```

## Examples

### Rainbow Text
```python
from asciiartpackage import show_rainbow_text
print(show_rainbow_text("Welcome to Python!"))
```

### Custom Colors
```python
from asciiartpackage import Colors
print(f"{Colors.CYAN}Cyan text{Colors.RESET}")
print(f"{Colors.BOLD}{Colors.RED}Bold Red text{Colors.RESET}")
```

## Available Functions

- `hello()` - Display a colorful welcome banner
- `show_rainbow_text(text)` - Convert text to rainbow colors
- `ascii_heart()` - Display a red ASCII heart
- `ascii_star()` - Display a yellow ASCII star
- `ascii_rocket()` - Display a colorful ASCII rocket
- `ascii_coffee()` - Display an ASCII coffee cup

## Available Colors

The `Colors` class provides:
- RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE
- BOLD for bold text
- RESET to reset formatting

## Requirements
- Python >= 3.8

## Author
Paramjit Singh (parambrar862@gmail.com)

## License
MIT License

## Version
0.0.1 - Initial release with colorful ASCII art features
