Metadata-Version: 2.4
Name: loading_print
Version: 1.2.0
Summary: A clean, retro terminal typewriter-style loading animation spinner with styles.
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# 🚀 loading_print

A clean, retro terminal typewriter-style loading animation spinner with built-in colors, bold formatting, underlining, and hardware lag simulation.

## 📦 Universal Installation

```bash
pip install loading_print
```

## 🛠️ Usage Quickstart

```python
from loading_print import loading_print, available_colors

# 1. Standard fast loading text
loading_print("Booting system mainframe...", duration_seconds=3)

# 2. Glowing bold green text with heavy retro processing lag stutters
loading_print(
    text="Reading drive A: data matrix...",
    duration_seconds=5,
    speed=0.2,
    retro_lag=True,
    retro_lag_setspeed=0.7,
    color="bold_green"
)

# 3. Flashing/Blinking retro alert text!
loading_print("CRITICAL OVERLOAD WARNING...", color="blink_red", duration_seconds=4)
```

## 🎨 View Available Styles

To list all text themes and combinations natively in your script:
```python
print(available_colors())
```
