dico

Keep in mind that this project is still WIP, therefore it might be unstable.

Yet another Discord API wrapper for Python, aimed to follow Discord API format as much as possible but also simple and easy to use.

Discord Server

Features

  • Discord v9 API (including Threads, components, context menus, etc.)
  • Full interaction support
  • More soon™

Installation

Development Version:

pip install -U git+https://github.com/dico-api/dico

PyPi(Not Recommended):

pip install -U dico-api

Quick Example

import dico


client = dico.Client("YOUR_BOT_TOKEN_HERE", intents=dico.Intents.full())


@client.on_message_create
async def on_message_create(message: dico.Message):
    if message.content.startswith("!hello"):
        await message.reply("Hello, World!")


client.run()

More examples are in here.

Requirements

  • Python 3.7+

GitHub

GitHub - dico-api/dico: Yet another Discord API wrapper for Python.
Yet another Discord API wrapper for Python. Contribute to dico-api/dico development by creating an account on GitHub.