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
- Host: GitHub
- URL: https://github.com/tim232/chdp
- Owner: Tim232
- License: agpl-3.0
- Created: 2020-12-29T23:12:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-30T01:14:08.000Z (over 5 years ago)
- Last Synced: 2025-04-13T05:54:36.193Z (about 1 year ago)
- Language: Python
- Homepage: https://pypi.org/project/chdp/1.0/
- Size: 15.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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