Skip to content

8r2y5/guilded.py

 
 

Repository files navigation

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.

  1. Join the Guilded-API server
  2. Click on the far-left plus sign
  3. Click the "Follow" button on the guilded.py group

About

Guilded API wrapper, written in Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%