1
0
mirror of synced 2024-07-08 04:55:12 +08:00
This commit is contained in:
xueweihan 2023-03-13 09:41:28 +08:00
parent a4057a1c32
commit 7638d0f794

View File

@ -122,7 +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('#dns', first=True)
table = rs.html.find('ul.separated2', 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)