Merge pull request #627 from funsugar/patch-1

Update util.py
This commit is contained in:
hrz
2025-04-05 14:57:01 +08:00
committed by GitHub
+4 -2
View File
@@ -67,11 +67,13 @@ def is_private_ip(ip_addr):
def get_ip_info(ip_addr): def get_ip_info(ip_addr):
try: try:
url = "https://whois.pconline.com.cn/ipJson.jsp?json=true" url = f"https://whois.pconline.com.cn/ipJson.jsp?json=true&ip={ip_addr}"
resp = requests.get(url).json() resp = requests.get(url).json()
ip_info = { ip_info = {
"city": resp.get("city") "city": resp.get("city"),
"region": resp.get("region"),
"addr": resp.get("addr")
} }
return ip_info return ip_info
except Exception as e: except Exception as e: