Skip to content

Instantly share code, notes, and snippets.

View jojoblackFr's full-sized avatar

jojoblackFr jojoblackFr

  • France
  • 06:20 (UTC +02:00)
View GitHub Profile
@Bilka2
Bilka2 / webhook.py
Last active June 3, 2024 10:10
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",
"username" : "custom username"
}