Metadata-Version: 2.1
Name: disspy
Version: 0.1a0
Summary: Dispy - package for creating bots
Home-page: https://github.com/itttgg/dispy
Author: itttgg
Author-email: aitiiigg1@gmail.com
License: UNKNOWN
Download-URL: https://github.com/itttgg/dispy/tree/0.1a
Platform: UNKNOWN
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Dispy
![alt text](https://img.shields.io/badge/version-0.1_dev_preview_2-informational?style=flat) ![alt text](https://img.shields.io/badge/lang-python-informational) ![alt text](https://img.shields.io/badge/minimal_python_version-3.8-informational)
## Using

### Creating and running bot

```python
import disspy

bot = disspy.DisBot(token="YOUR_TOKEN", prefix="!")

bot.run()
```

### bot.on("ready")

```python
import disspy

bot = disspy.DisBot(token="YOUR_TOKEN", prefix="!")


@bot.on("ready")
async def on_ready():
    print("Ready!")


bot.run()
```



