A simple Discord Bot for testing purposes created with Python 3
Documentation here [https://github.com/reactiflux/discord-irc/wiki/Creating-a-discord-bot-&-getting-a-token]
Without voice support
python -m pip install -U discord.py
With voice support
python -m pip install -U discord.py[voice]
token = '' # HERE
avatar = './img/kitty.jpg'
nickname = 'Kitten'
python test.py
Can be send from the discord server or private message
- !test: Counts user messages
- !sleep: Sleeps for 5 seconds
- !info: Shows sample message
- !setnick: Sets profile username
- !setavatar: Sets profile avatar
Official docs [https://github.com/Rapptz/discord.py/blob/async/examples/]