Metadata-Version: 2.1
Name: chdp
Version: 1.0
Summary: Command Handler for Discord.Py
Home-page: https://github.com/kiki7000/chdp
Author: Tim232
Author-email: devkiki7000@gmail.com
License: GPL-V3
Keywords: discord,discord.py,commandhandler,chdp,handler,command
Platform: UNKNOWN
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: discord.py
Requires-Dist: asyncio
Requires-Dist: importlib

# CHDP

Command Handler for Discord.Py

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

## 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 Initial Release


