Metadata-Version: 2.1
Name: pydis-discord
Version: 1.0.5
Summary: An Discord API v10 wrapper for Python 3
Home-page: https://github.com/RinkaGI/Pydis
Author: RinkaDev
Author-email: rinkadevoficial@gmail.com
Project-URL: Bug Reports, https://github.com/RinkaGI/Pydis/issues
Project-URL: Source, https://github.com/RinkaGI/Pydis/
Keywords: sample,setuptools,development,discord,bot,wrapper,api,modern,easy,fast
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.8, <4
Description-Content-Type: text/markdown
Provides-Extra: voice
Provides-Extra: docs
Provides-Extra: speed
Provides-Extra: test
License-File: LICENSE

# Pydis
===========================================
Make your Discord Bot quickly and easily on Python!

## Features
- Modern code! (async await)
- Don't worrie by Intents! (Intents are not needed here)
- Easy to use!
- Easy to extend!
- Easy to understand!
- Easy to maintain!
- Lightweight!
- Fast!
- Open source!
- Python 3.6+
- Discord.py library fork

## Installation

```bash
pip install pydis-discord=1.0.0
```

## Usage

Alert: There is a wiki on Github

### Making a Ping Pong bot!
```python
from pydis import GatewayDiscordApp

bot = GatewayDiscordApp()

@bot.event
async def on_ready():
    print('Ready!')

@bot.event
async def on_message(message):
    if message.content == 'ping':
        await message.channel.send('Pong! :ping_pong:')

bot.run()
```

## License
MIT License

## TODO
- Create slash commands easier!
- More wiki
- Examples
