SkillAgentSearch skills...

Guilded.py

Asynchronous Guilded API wrapper for Python

Install / Use

/learn @shayypy/Guilded.py
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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.

[!NOTE] 2025/09/29: Roblox has announced they are shutting down Guilded by the end of the year, so I am archiving this repository after the final release of 1.13.3.

[!NOTE] 2024/07/21: Due to the fallout of Guilded's login change, this project will not be seeing much maintenance. This is in conjunction with the API itself getting little attention lately. As such, you may want to coordinate with me on Discord to update the library.

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

I am reachable on Discord.

View on GitHub
GitHub Stars130
CategoryDevelopment
Updated3d ago
Forks27

Languages

Python

Security Score

85/100

Audited on Apr 2, 2026

No findings