Skip to content

Instantly share code, notes, and snippets.

View AndyIsHereBoi's full-sized avatar

AndyIsHereBoi AndyIsHereBoi

View GitHub Profile
@AndyIsHereBoi
AndyIsHereBoi / output.json
Created January 15, 2024 16:40
Discord voice servers as of Jan 15 2024
{
"us-central":[
{
"ip":"138.128.140.253",
"dns":"us-central96.discord.gg",
"city":"Elk Grove Village",
"region":"Illinois",
"country":"US",
"org":"AS49544 i3D.net B.V"
},
@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"
}