An open API service indexing awesome lists of open source software.

https://github.com/tim232/chdp

Commands Handler for Discord.py
https://github.com/tim232/chdp

Last synced: about 1 year ago
JSON representation

Commands Handler for Discord.py

Awesome Lists containing this project

README

          

# CHDP
Command Handler for Discord.Py

⚠ 해당 프로젝트는 AGPL-3.0 License 입니다 ⚠

원작자 kiki; 모듈 삭제한 관계로 재업로드

## Download
```shell
$ pip install chdp
```

## Use
1. Create Main file and config.json and folder **commands**

2. Fill config.json like below
```json
{
"token": "Your Token",
"prefix": "Your Prefix"
}
```

3. create a file in folder **commands** and fill it like below
```python
class Command:
name = 'ping'
async def run(self, client, message, ext): await message.channel.send('pong')
```

4. Run the Main file

## Contribute
Find a bug and tell it on the Issue tab or to `! Tim23#9999` on discord

You can also Pull a request

## Log
1.0.0 Initial Release