Skip to main content

Highly abstracted and easy to use wrapper over the Wumpy project

Project description

Wumpy-bot

Easy to use high abstraction over other Wumpy subpackages.

This is the most beginner-friendly way to use Wumpy, and provides all features of the Discord API. This is the primary package installed from PyPI when you only specify wumpy.

Getting started

All official Wumpy projects prioritise both asyncio and Trio support so you can run the bot under either:

import anyio
from wumpy.bot import Bot


bot = Bot('ABC123.XYZ789')  # Replace with your token and keep it safe!

# This runs the bot with Trio as the event loop (recommended),
# use backend='asyncio' to run it under asyncio.
anyio.run(bot.run, backend='trio')

Registering listeners

Continuing from the previous code, you can register listeners for Discord events using Wumpy's rich event listeners:

import anyio
from wumpy.bot import Bot
from wumpy.bot.events import MessageDeleteEvent


bot = Bot('ABC123.XYZ789')


@bot.listener()
async def log_deleted_messages(event: MessageDeleteEvent):
    print(f'Message {event.message_id} in {event.channel_id} was deleted')


anyio.run(bot.run, backend='trio')

The listener is registered with the @bot.listener() decorator, which tells Wumpy to read the annotation of the first parameter (name does not matter, but here it is called event) and register that function for the type of event that it is typehinted as.

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

wumpy-bot-0.1.0.tar.gz (17.5 kB view hashes)

Uploaded Source

Built Distribution

wumpy_bot-0.1.0-py3-none-any.whl (21.0 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