Skip to main content

guilded-webhook is a basic wrapper for guilded's webhooks.

Project description

guilded-webhook

a basic wrapper for guilded's webhooks

(also works with discords, although this is due to both having very similar api's, any breaking changes on discord's side will not receive fixes)

guilded support server

discord support server

Basic example:

import guilded_webhook as guilded
import asyncio

async def main():
    hook = guilded.AsyncWebhook('https://media.guilded.gg/webhooks/REDACTED')
    await hook.send(content='test')

asyncio.run(main())

or

import guilded_webhook as guilded

def main():
    hook = guilded.Webhook('https://media.guilded.gg/webhooks/REDACTED')
    hook.send(content='test')

main()

guilded-webhook also supports embeds (heavily inspired by discord.py's embeds)

import guilded_webhook as guilded
import asyncio
from datetime import datetime

async def main():
    hook = guilded.AsyncWebhook('https://media.guilded.gg/webhooks/REDACTED')
    embed = guilded.Embed(title="title", description="description", url="https://www.youtube.com/watch?v=dQw4w9WgXcQ", color=0x00ffff, timestamp=datetime.now())
    embed.add_field(title="field title", value="field value")
    embed.set_image("https://img.guildedcdn.com/ContentMedia/e67907d6efa7aebb0440097cb9a03672-Full.webp")
    await hook.send(content='test', embeds=embed)

asyncio.run(main())

docs

class - AsyncWebHook

  • (arg) str - url - webhook url.

  • (kwarg) str - avatar - optional avatar override (image url).

  • (kwarg) str - username - optional username override.

  • (async) method - send

    • (kwarg) string - content

    • (kwarg) List[Embed] - embeds

    • (kwarg) str - avatar - optional avatar override (overrides instance avatar) (image url).

    • (kwarg) str - username - optional username override (overrides instance username)

    • (kwarg) File - file to upload with the message

class - WebHook

  • (arg) str - url - webhook url.

  • (kwarg) str - avatar - optional avatar override (image url).

  • (kwarg) str - username - optional username override.

  • method - send

    • (kwarg) string - content

    • (kwarg) List[Embed] - embeds

    • (kwarg) str - avatar - optional avatar override (overrides instance avatar) (image url).

    • (kwarg) str - username - optional username override (overrides instance username)

    • (kwarg) File - file to upload with the message

class - Embed

  • (kwarg) str - title

  • (kwarg) str - description

  • (kwarg) str - url

  • (kwarg) int - color (hex color)

  • (kwarg) datetime.datetime - timestamp

  • method - add_field

    • (kwarg) str - title

    • (kwarg) str - value

    • (kwarg) bool - inline

  • method - set_author

    • (kwarg) str - name

    • (kwarg) str - url

    • (kwarg) str - icon_url

  • method - set_footer

    • (kwarg) str - text

    • (kwarg) str - icon_url

  • method - set_image

    • (kwarg) str - url

    • (kwarg) int - height

    • (kwarg) int - width

  • method - set_thumbnail

    • (kwarg) str - url

    • (kwarg) int - height

    • (kwarg) int - width

class - File

  • (arg) Union[str, bytes, os.PathLike, io.BufferedIOBase] - fp - filelike object to upload

  • (arg) str - filename - filename to upload as (required when using BytesIO and similar)

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-webhook-0.3.1.tar.gz (17.1 kB view hashes)

Uploaded Source

Built Distribution

guilded_webhook-0.3.1-py3-none-any.whl (17.8 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