An API wrapper in Python for Guilded's bot API
Project description
Welcome to guilded.py, a discord.py-esque asynchronous Python wrapper for Guilded's bot API. If you know discord.py, you know guilded.py.
Documentation
Documentation is available on Read the Docs.
Basic Example
import guilded
client = guilded.Client()
@client.event
async def on_ready():
print('Ready')
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content == 'ping':
await message.channel.send('pong!')
client.run('token')
Bot example
import guilded
from guilded.ext import commands
bot = commands.Bot(command_prefix='!')
@bot.command()
async def ping(ctx):
await ctx.send('pong!')
bot.run('token')
For more examples, see the examples directory in this repository.
Support
Guilded.py has a support channel under its dedicated group for any questions you may have.
-
Join this server
-
Click on the far-left plus sign
-
Click the "Follow" button on the guilded.py group
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 guilded.py-1.6.0.tar.gz.
File metadata
- Download URL: guilded.py-1.6.0.tar.gz
- Upload date:
- Size: 176.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4297e4f4506d7ba1083b04b9a06a00b32afb8617f91feef8d406a9dc5c935d53
|
|
| MD5 |
60484705481161a3e65d014906f7f18b
|
|
| BLAKE2b-256 |
7babc6c62f96860d33c8aa9949c4cc4f02b37b2bc7cd4f8aa3eda08b4f336f33
|
File details
Details for the file guilded.py-1.6.0-py3-none-any.whl.
File metadata
- Download URL: guilded.py-1.6.0-py3-none-any.whl
- Upload date:
- Size: 228.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e29b5e62134dd7d7e761cbf7a8dbcdcfc332471651e6ca1ba1f2ad7c26ee1bb
|
|
| MD5 |
fdb31d8fb6a885324918dcdfcb08db4a
|
|
| BLAKE2b-256 |
f440528942ebfa89bd0ddfad03969fb51156a2821b40125d967ca3d78dd01634
|