Skip to content

Instantly share code, notes, and snippets.

View z0ned-out's full-sized avatar
💭
I may be slow to respond.

z0ned-out

💭
I may be slow to respond.
  • India
View GitHub Profile
@Bilka2
Bilka2 / webhook.py
Last active June 4, 2025 04:52
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"
}