diff --git a/fetch_ips.py b/fetch_ips.py index 13ded41ab..3a357490d 100644 --- a/fetch_ips.py +++ b/fetch_ips.py @@ -122,8 +122,7 @@ def get_ip(session: Any, github_url: str) -> Optional[str]: '06.0.0.0 Safari/537.36'} try: rs = session.get(url, headers=headers, timeout=5) - table = rs.html.find('.panel-item.table.table-stripes.table-v', - first=True) + table = rs.html.find('#dns', first=True) pattern = r"\b(?:[0-9]{1,3}\.){3}[0-9]{1,3}\b" ip_list = re.findall(pattern, table.text) best_ip = get_best_ip(ip_list) @@ -147,7 +146,7 @@ def main(verbose=False) -> None: # content_list = [] # for index, github_url in enumerate(GITHUB_URLS): # try: - # # ip = get_ip(session, github_url) + # ip = get_ip(session, github_url) # # content += ip.ljust(30) + github_url + "\n" # content_list.append((ip, github_url,))