An async library for the Discord API
Project description
curious is a Python 3.6+ library to interact with the Discord API.
Installation
Curious is available on PyPI under discord-curious:
$ pip install -U discord-curious
Or for the latest development version:
$ pip install -U git+https://github.com/Fuyukai/curious.git#egg=curious
Basic Example
from curious import BotType, Client, Message
cl = Client("token", bot_type=BotType.BOT | BotType.NO_DMS)
@cl.event("ready")
async def ready(ctx):
print("Ready on shard", ctx.shard_id)
@cl.event("message_create")
async def handle_message(ctx, message: Message):
print(f"{message.author.user.name} said '{message.content}'")
cl.run(shards=1)
Documentation
See the documentation at https://curious.readthedocs.io/en/latest/.
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-curious-0.7.7.tar.gz
(145.0 kB
view hashes)
Built Distributions
discord_curious-0.7.7-py3.7.egg
(339.4 kB
view hashes)
Close
Hashes for discord_curious-0.7.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94997591eef8a61f3351d4b0ee88cdf698097d75d12a916043cab59cd4b10dc5 |
|
MD5 | 4f33c5f2f302a4c2305fe61b9cbb6cfb |
|
BLAKE2b-256 | 682cdf4cc179517fdab0c6ee531ad7e42d0e33a20d72dd84c4555bf15e950a52 |