Metadata-Version: 2.4
Name: Banner0xStackedS0ul
Version: 0.1.4
Summary: Simple ASCII banner for the terminal
Author: 0xStackedS0ul
License-Expression: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Banner0xStackedS0ul

A simple Python library for displaying animated ASCII banners in the terminal.

## Features

- 🎨 Colored ASCII banners
- ⚡ Animated banner rendering
- ⏱️ Adjustable animation speed
- 🖥️ Terminal-friendly output

## Installation

```bash
pip install Banner0xStackedS0ul
```

## Quick Start

```python
import banner0xstackeds0ul

banner0xstackeds0ul.show_banner()
```

## Example

```python
import banner0xstackeds0ul

banner0xstackeds0ul.show_banner(
    animation_bool=True,
    color="red",
    delay=0.2,
)
```

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `animation_bool` | `bool` | `True` | Enables or disables the animation. |
| `color` | `str` | `"white"` | Banner color (`red`, `green`, `yellow`, `blue`, `cyan`, `magenta`, `white`). |
| `delay` | `float` | `0.2` | Delay between animation frames (seconds). |

## License

MIT License
