Metadata-Version: 2.4
Name: pydiskit
Version: 1.0
Summary: A clean developer framework built on top of discord.py
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: discord.py<3,>=2.6
Provides-Extra: test
Requires-Dist: pytest>=8; extra == "test"
Requires-Dist: pytest-asyncio>=1; extra == "test"
Dynamic: license-file

# pydiskit

A clean developer framework built on top of `discord.py`.

## Install

```bash
pip install pydiskit
```

## Quick Start

```python
from pydiskit import Bot, Intents

bot = Bot(prefix='!', intents=Intents(guilds=True, messages=True, message_content=True))

@bot.command()
async def ping(ctx):
    await ctx.send('Pong!')

@bot.slash(description='Check if the bot is online.')
async def slash_ping(interaction):
    await interaction.response.send_message('Pong!')

bot.run('TOKEN')
```
