Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Discord Webhook Support #14

Open
Mega-Bits opened this issue Aug 4, 2021 · 1 comment
Open

Discord Webhook Support #14

Mega-Bits opened this issue Aug 4, 2021 · 1 comment

Comments

@Mega-Bits
Copy link

Mega-Bits commented Aug 4, 2021

Abend,

bestände die möglichkeit das du von Haus einen Discord Webhook Support einbauen könntes? Habe mir selber jetzt sowas reingemacht aber ist halt mehr geklebt als wirklich nach Plan.

Habe das damit gemacht.
lovvskillz/python-discord-webhook

und dann in die anibot.py

from discord_webhook import DiscordWebhook, DiscordEmbed

und das bei dem "Log" Punkt ^^

def log(message, pushbullet):
    try:
        pushbullet.push_note("anibot", message)
    except:
        pass
    print(message)
    webhook = DiscordWebhook(url='https://discord.com/api/webhooks/REDACTED', username='AniBot', avatar_url='https://www.anime-loads.org/assets/pub/images/logo.png')
    embed = DiscordEmbed(title='Info', description=message, color='03b2f8')
    embed.set_timestamp()
    webhook.add_embed(embed)
    response = webhook.execute()

Und ja, ich bin mir sicher das du diese Anleitung bestimmt nicht brauchst, aber eventuell gibt es jemand hier der es jetzt gerne schon nutzen würde :)

MFG

@Pfuenzle
Copy link
Owner

Pfuenzle commented May 20, 2022

Bin grade an einem kompletten rewrite, bei dem dann auch eine gescheite Notification engine dabei sein wird, mit support für Webhooks etc.

Dann werde ich das da einbauen :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants