diff --git a/fetch_ips.py b/fetch_ips.py index bd20a23d9..cc1eb5dd6 100644 --- a/fetch_ips.py +++ b/fetch_ips.py @@ -140,20 +140,20 @@ def main(verbose=False) -> None: print('Start script.') session = HTMLSession() content = "" - content_list = get_json(session) - for item in content_list: - content += item[0].ljust(30) + item[1] + "\n" - # content_list = [] - # for index, github_url in enumerate(GITHUB_URLS): - # try: - # ip = get_ip(session, github_url) - # - # content += ip.ljust(30) + github_url + "\n" - # content_list.append((ip, github_url,)) - # except Exception: - # continue - # if verbose: - # print(f'process url: {index + 1}/{len(GITHUB_URLS)}') + # content_list = get_json(session) + # for item in content_list: + # content += item[0].ljust(30) + item[1] + "\n" + content_list = [] + for index, github_url in enumerate(GITHUB_URLS): + try: + ip = get_ip(session, github_url) + + content += ip.ljust(30) + github_url + "\n" + content_list.append((ip, github_url,)) + except Exception: + continue + if verbose: + print(f'process url: {index + 1}/{len(GITHUB_URLS)}') if not content: return