Dataclass-driven Discord API Wrapper in Python
Project description
ScurryPy
A dataclass-driven Discord API wrapper in Python!
While this wrapper is mainly used for various squirrel-related shenanigans, it can also be used for more generic bot purposes.
Features
- Easy to extend
- Command, and event handling
- Unix shell-style wildcards for component routing
- Declarative style using decorators
- Supports both legacy and new features
- Respects Discord's rate limits
- No
__future__hacks to avoid circular import - Capable of sharding
Benchmarks
Not convinced ScurryPy has a place among top libraries? See the benchmarks below!
Test Environment
- Python: 3.11.6
- OS: Windows 11
Results Summary
Library Time (ms) Memory Δ (MB) Objects
--------------------------------------------------------
scurrypy 8.9 0.44 1417
hikari 1710.3 27.67 53658
discord 252.5 7.64 14099
disnake 185.9 6.31 12111
(See tests/benchmark.py for how this test was done.)
Getting Started
Note: This section also appears in the documentation, but here are complete examples ready to use with your bot credentials.
Installation
To install the ScurryPy package, run:
pip install scurrypy
Minimal Slash Command
The following demonstrates building and responding to a slash command.
import scurrypy
client = scurrypy.Client(
token='your-token',
application_id=APPLICATION_ID # your bot's application ID
)
@client.command(
scurrypy.SlashCommand('example', 'Demonstrate the minimal slash command!'),
GUILD_ID # must be a guild ID your bot is in
)
async def example(bot: scurrypy.Client, event: scurrypy.InteractionEvent):
await event.interaction.respond(f'Hello, {event.interaction.member.user.username}!')
client.run()
Minimal Prefix Command (Legacy)
The following demonstrates building and responding to a message prefix command.
import scurrypy
client = scurrypy.Client(
token='your-token',
application_id=APPLICATION_ID, # your bot's application ID
intents=scurrypy.set_intents(message_content=True),
prefix='!' # your custom prefix
)
@client.prefix_command("ping")
async def on_ping(bot: scurrypy.Client, event: scurrypy.MessageCreateEvent):
await event.message.send("Pong!")
client.run()
Like What You See?
Explore the full documentation for more examples, guides, and API reference.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file scurrypy-0.6.6.tar.gz.
File metadata
- Download URL: scurrypy-0.6.6.tar.gz
- Upload date:
- Size: 37.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8748fe496c145c2ab0d8afedb962d7a9394b3aaaa55ac17054f2d6e3acec442f
|
|
| MD5 |
13c9b7e40cc52b73d640ac5e3052660c
|
|
| BLAKE2b-256 |
4a3190a873fc6f969e68e4fa137bbaa14b644fa977a68719aa8e8b815bbf7481
|
File details
Details for the file scurrypy-0.6.6-py3-none-any.whl.
File metadata
- Download URL: scurrypy-0.6.6-py3-none-any.whl
- Upload date:
- Size: 50.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe8ed992b3d8eb6f60b7656fae009de36fd78ecea3d69d325936292e8eef32e5
|
|
| MD5 |
71cb8b850e7dd0f94d3b76d79f26ab96
|
|
| BLAKE2b-256 |
01ee16871c5e66696010da312a8c6e14cb7e1b46771f0f7d73318eb52868e702
|