This is a backend for Discord (http://discordapp.com) for errbot (http://errbot.io).
It allows you to use errbot from Discord but it is a work in progress.
This project is in need of a regular user of Discord familiar with Python to take it under his/her wing!
It is Python 3.4+ only.
git clone https://github.com/gbin/err-backend-discord.git
and add:
BACKEND = 'Discord'
BOT_EXTRA_BACKEND_DIR = '/path_to/err-backend-discord'
to your config.py
Create an application, then a bot user and you can directly use the token of the bot user in your config.py
:
BOT_IDENTITY = {
'token' : 'changeme'
}
For further information about getting a bot user into a server please see: https://discordapp.com/developers/docs/topics/oauth2. You can use this tool to generate a proper invitation link.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D