Skip to main content

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


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.5.tar.gz (144.6 kB view hashes)

Uploaded Source

Built Distributions

discord_curious-0.7.5-py3.7.egg (338.7 kB view hashes)

Uploaded Source

discord_curious-0.7.5-py3-none-any.whl (152.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page