From d659d63f75643870b052a34b91e7917c4025a25e Mon Sep 17 00:00:00 2001 From: xueweihan <595666367@qq.com> Date: Wed, 12 Jun 2024 17:30:24 +0800 Subject: [PATCH] fix script --- fetch_ips.py | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/fetch_ips.py b/fetch_ips.py index cc1eb5dd6..c4d01795d 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_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 += 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