Skip to main content

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

Join the guilded.py server for help & discussion. Use the #library-help channel.

shield

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

guilded.py-1.13.0.tar.gz (204.8 kB view hashes)

Uploaded Source

Built Distribution

guilded.py-1.13.0-py3-none-any.whl (261.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page