R
Size: a a a
R
💭П
F
F
R
C
AB
R
R
R
➜ rkn_vs_telegram git:(master) python schors.py
Total number of IPs banned by RKN: 16357093
import requests, json
SCHORS_URL = "https://usher2.club/d1_ipblock.json"
def totalCount():
try:
oneDayIPBlock = requests.get("{}".format(SCHORS_URL)).json()
print "Total number of IPs banned by RKN: {}".format(oneDayIPBlock[len(oneDayIPBlock)-1]["y"])
except Exception as error:
print "Woops: {}".format(str(error))
if __name__ == '__main__':
totalCount()
R
AB
i
F
i