awersli99 /
pydiscordbio
🐍 An unofficial asynchronous python wrapper for the discord.bio API.
45/100 healthLoading repository data…
edg-l / repository
An asynchronous Discord API wrapper for python
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
.. image:: https://img.shields.io/pypi/v/discord.aio.svg :target: https://pypi.python.org/pypi/discord.aio :alt: PyPI version
.. image:: https://img.shields.io/pypi/pyversions/discord.aio.svg :target: https://github.com/Ryozuki/discord.aio :alt: Python version
.. image:: https://img.shields.io/pypi/status/discord.aio.svg :target: https://github.com/Ryozuki/discord.aio :alt: Module status
.. image:: https://img.shields.io/pypi/l/discord.aio.svg :target: https://github.com/Ryozuki/discord.aio/blob/master/LICENSE.txt :alt: License
.. image:: https://img.shields.io/discord/416878158436892672.svg :target: https://discord.gg/hJ7ewAT :alt: Discord
.. image:: https://readthedocs.org/projects/discordaio/badge/?version=latest :target: http://discordaio.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status
..
discord.aio is an asynchronous Discord API wrapper
Currently under very early development
Python 3.6+ only.
You can find the module documentation here: documentation <http://discordaio.rtfd.io>_
With pip: ^^^^^^^^^
pip3 install discord.aioFrom source: ^^^^^^^^^^^^
git clone https://github.com/Ryozuki/discord.aio && cd discord.aio && pip3 install .git clone https://github.com/Ryozuki/discord.aiocd discord.aio && pip3 install -e ... code-block:: python
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 <https://github.com/Ryozuki/discord.aio/blob/master/examples/bot.py>_ you can find a more extensive example.
Add compression support <https://discordapp.com/developers/docs/topics/gateway#encoding-and-compression>_Add bot shards support <https://discordapp.com/developers/docs/topics/gateway#get-gateway-bot>_Selected from shared topics, language and repository description—not editorial ratings.
awersli99 /
🐍 An unofficial asynchronous python wrapper for the discord.bio API.
45/100 healthYandawl /
An asynchronous Python client for Discord's REST API
46/100 healthInviteManagerBot /
An asynchronous discord OAuth2 API wrapper.
jay3332 /
An asynchronous wrapper around Discord's API
60/100 healthwalterwhite-69 /
An unofficial, high-performance Discord API wrapper and Discord Bot for Joyland AI. Bring Joyland AI to Discord! Features immersive webhook character roleplay, persistent stealth sessions, paginated search UIs, and asynchronous, high-speed API performance.
47/100 healthMatiForge /
🤖 PoE Gambling & Tools is an advanced, asynchronous Discord bot built with discord.py. It blends interactive UI elements with real-time external data integration. Powered by a local DB and an embedded aiohttp server, it acts as a gaming assistant and a web app with its own REST API.
52/100 health