This file contains hidden or 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
// ==UserScript== | |
// @name Block backdrops-container on Torn | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Hides elements with the class "backdrops-container" | |
// @author BritishBenji | |
// @match https://www.torn.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== |
This file contains hidden or 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 requests, json, logging | |
id = [] | |
link = "https://api.torn.com/faction/FACID?xselections=&key=KEYGOESHERE" | |
data = requests.get(link).json() | |
members = data.get("members") | |
def memberGet(): | |
for uid in members: |