Skip to content

Instantly share code, notes, and snippets.

View AndyIsHereBoi's full-sized avatar

AndyIsHereBoi AndyIsHereBoi

View GitHub Profile
@AndyIsHereBoi
AndyIsHereBoi / webhook.py
Created May 11, 2022 18:22 — forked from Bilka2/webhook.py
Simple discord webhook with python
import requests #dependency
url = "<your url>" #webhook url, from here: https://i.imgur.com/f9XnAew.png
#for all params, see https://discordapp.com/developers/docs/resources/webhook#execute-webhook
data = {
"content" : "message content",
"avatar" : "direct avatar URL",
"username" : "custom username"
}