Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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
.
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')
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.
FAQs
Highly abstracted and easy to use wrapper over the Wumpy project
We found that wumpy-bot demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.