Yet another Discord API wrapper for Python.
Project description
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.
Features
- Discord v10 API (including Threads, components, context menus, etc.)
- Full interaction support
- API-Only supported, with aiohttp-based or requests-based HTTP client.
- 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
API Client
import dico
api = dico.APIClient("APPLICATION_TOKEN_HERE", base=dico.HTTPRequest)
# You may use AsyncHTTPClient for async support.
# All endpoints are implemented, and for the example request_user (= Get User) will be used.
user = api.request_user() # You may pass any user ID or it will be the application itself.
# You may use either int, str, dico.Snowflake, or dico.User itself.
print(user.username)
Websocket Client
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+
Extra Libs
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
dico-api-0.0.38.tar.gz
(483.6 kB
view details)
Built Distribution
dico_api-0.0.38-py3-none-any.whl
(503.0 kB
view details)
File details
Details for the file dico-api-0.0.38.tar.gz
.
File metadata
- Download URL: dico-api-0.0.38.tar.gz
- Upload date:
- Size: 483.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37574b7e9ac5f71260f79e29f694a707e2d6a46bfa56513b8d78f8e534185ef8 |
|
MD5 | 28ff5f4b120db0020cfc6f8fabe53b10 |
|
BLAKE2b-256 | 320d845654f840de257469ab68f2542750a5fe12c8159da37025778fa533385a |
File details
Details for the file dico_api-0.0.38-py3-none-any.whl
.
File metadata
- Download URL: dico_api-0.0.38-py3-none-any.whl
- Upload date:
- Size: 503.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8f0c45dcb1bb9f1d2c70bb8a5c4103baefaebc7275809036c05ea84e4709c0a |
|
MD5 | 07eb31ccfb783c56cef654d81de97fc5 |
|
BLAKE2b-256 | 5af8fbb28bbd44fea66f3efd66e5472d50bed98a25f43fd3bbe074a63031317a |