Metadata-Version: 2.1
Name: discordrouter
Version: 0.0.4
Summary: Decorator for discord.py chat bots
Home-page: https://github.com/t94j0/discord-router
Author: Max Harley
Author-email: maxh@maxh.io
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Discord Router

A simple router decorator for [discord.py](https://github.com/Rapptz/discord.py) chat bots.

## Installation

`pip3 install discordrouter`

## Usage

```py
from discordrouter import Router, message

class ChatBot(discord.Client):
  router = Router('!test')

  async def on_ready(self):
    print(f'Logged in as {self.user.name}')

  async on_message(self, message):
    await self.router(message)

  @message(router, "new <name>")
  async _test1(self, items, message):
    name = items['name']
    await message.channel.send('{name}')
```


