Metadata-Version: 2.4
Name: discord-wizard
Version: 0.1.0
Summary: A unified Discord.py utility library — events, rate limiting, UI, permissions, tasks, errors, simulation, and recording.
Author: Muneeb
License: MIT
Project-URL: Homepage, https://github.com/draganoxfool/discord-wizard
Project-URL: Repository, https://github.com/draganoxfool/discord-wizard
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Communications :: Chat
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: discord.py>=2.0
Provides-Extra: postgres
Requires-Dist: asyncpg; extra == "postgres"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-asyncio; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"

# discord-wizard

A unified Discord.py utility library — events, rate limiting, UI, permissions, tasks, errors, simulation, and recording.

```python
from discord.wizard import wizard

wizard.events       # Human-friendly event namespace
wizard.rateguard    # Automatic rate limit protection
wizard.ui           # Declarative UI components
wizard.permissions  # Decorator-based permission layer
wizard.tasks        # Cron jobs & scheduled tasks
wizard.errors       # Human-readable error formatting
wizard.simulate     # Run your bot without Discord
wizard.recorder     # Record & export everything
```

## Install

```bash
pip install discord-wizard
```

## Docs

See the `/docs` folder for full planning documentation.

## License

MIT
