Metadata-Version: 2.4
Name: phi_hippo
Version: 0.1.0
Summary: A fun greeting utility — generate personalized greetings, motivational quotes, and ASCII banners!
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/phi_hippo
Project-URL: Issues, https://github.com/yourusername/phi_hippo/issues
Keywords: greetings,fun,cli,utility,motivation
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# 🦛 phi_hippo

A fun Python package that generates personalized greetings, motivational quotes, and ASCII art banners!

## Installation

```bash
pip install phi_hippo
```

## Quick Start

### Python API

```python
from phi_hippo import greet, motivate, banner, colorize

# Generate a greeting
print(greet("Alice"))
# Hey Alice! 👋 Hope you're having an awesome day!

# Try different styles
print(greet("Bob", style="pirate"))
# Ahoy, Bob! 🏴‍☠️ Welcome aboard, ye scallywag!

# Get motivated
print(motivate())
# 🚀 You're capable of amazing things!

# Create a banner
print(banner("Hello World"))
# ==================================================
# =                  Hello World                   =
# ==================================================

# Add color to terminal output
print(colorize("Success!", "green", bold=True))
```

### Command Line

```bash
# Greet someone
phi_hippo hello Alice
phi_hippo hello Bob --style pirate --color cyan

# Get a motivational quote
phi_hippo motivate

# Create a banner
phi_hippo banner "My Project" --width 60 --char "*"
```

## Available Greeting Styles

| Style          | Example                                              |
|----------------|------------------------------------------------------|
| `friendly`     | Hey Alice! 👋 Hope you're having an awesome day!     |
| `formal`       | Good day, Alice. It is a pleasure to make your acquaintance. |
| `enthusiastic` | OMG Alice!!! 🎉🎉🎉 SO GREAT TO SEE YOU!!!         |
| `pirate`       | Ahoy, Alice! 🏴‍☠️ Welcome aboard, ye scallywag!    |

## Available Colors

`red`, `green`, `yellow`, `blue`, `magenta`, `cyan`, `white`

## License

MIT License — see [LICENSE](LICENSE) for details.
