|
|
|
@ -39,12 +39,15 @@ def main():
|
|
|
|
|
else:
|
|
|
|
|
print('NO')
|
|
|
|
|
print()
|
|
|
|
|
print('////////')
|
|
|
|
|
print('-'*30)
|
|
|
|
|
print('Instance: '+DOMAIN)
|
|
|
|
|
print()
|
|
|
|
|
print('Banned by: '+json.dumps(banned_by))
|
|
|
|
|
print()
|
|
|
|
|
print('Servers count: total={} | failed={} | used_in_percentage={}'.format(len(res), failed_servers, len(res)-failed_servers))
|
|
|
|
|
print('Percentage of bans: '+str(round( (len(banned_by) * 100) / (len(res)-failed_servers), 2))+'% has banned the instance')
|
|
|
|
|
print()
|
|
|
|
|
print('Percentage of bans: '+str(round( (len(banned_by) * 100) / (len(res)-failed_servers), 2))+'% has banned the instance')
|
|
|
|
|
print('-'*30)
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
def http_get(url, show=False):
|
|
|
|
|