This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |