
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.