Skip to content

Instantly share code, notes, and snippets.

View TheMemeSniper's full-sized avatar
🐒
I always lua

Kaitlin TheMemeSniper

🐒
I always lua
View GitHub Profile
import json
import requests
from time import sleep
instance = "https://johnlenn.on"
token = "ImTimTokeneeneyImTheFounderOfEpicAuthentication" # get this by ripping any request from your browser devtools
hdrs = {"Content-Type": "application/json"}
followerjson = open("./followers.json", "r") # get this by requesting INSTANCE/api/users/followers with the max limit and then copying the raw json response into ./followers.json
followers = json.load(followerjson)