discord.aio is an asynchronous Discord API wrapper for asyncio and python
Project description
discord.aio is an asynchronous Discord API wrapper
Currently under very early development
Python 3.6+ only.
Documentation
You can find the module documentation here: documentation
Installation
With pip:
pip3 install discord.aio
From source:
git clone https://github.com/Ryozuki/discord.aio && cd discord.aio && pip3 install .
Local development
git clone https://github.com/Ryozuki/discord.aio
cd discord.aio && pip3 install -e .
Example bot
import asyncio
import os
import logging
from discordaio import DiscordBot
logging.basicConfig(
level='DEBUG', format='%(asctime)s - %(name)s - %(levelname)s: %(message)s')
logger = logging.getLogger('my_lovely_bot')
if __name__ == '__main__':
TOKEN = os.environ['DISCORD_TOKEN']
bot = DiscordBot(TOKEN)
@bot.event()
async def on_ready():
logger.info('Connected!')
logger.info(f'My username is {bot.user}')
@bot.event('on_message') # You can also use a custom function name.
async def foo_bar(message):
logger.info(f'{message.author}: {message.content}')
bot.run()
Here you can find a more extensive example.
TODO
Handle ISO8601 timestamp
Make the DiscordBot methods better.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
discord.aio-0.3.1.tar.gz
(21.8 kB
view hashes)
Built Distribution
Close
Hashes for discord.aio-0.3.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36483819287883960df7ab634d23cba789e4995e083e9391b334c56c37550f46 |
|
MD5 | 95afeb2d6caca2b7d1bca901467f475e |
|
BLAKE2b-256 | eb6cc8708bfdc21c9bdac3924c28376af7e6d998841be079465ffa18fc358da0 |