2024年8月16日
摘要: import requestsimport csvfrom bs4 import BeautifulSoup def get_domain_update_time(domain): """ 获取域名在 GitHub 上的更新时间。 Args: domain: 域名。 Returns: 域名的更新时间 阅读全文
posted @ 2024-08-16 14:15 翎上 阅读(15) 评论(0) 推荐(0)
摘要: import socketimport csv # 读取文件中的域名列表with open("111.txt", "r") as f: domains = [line.strip() for line in f.readlines() if line.strip()] # 查询域名对应的 IP 地址 阅读全文
posted @ 2024-08-16 14:14 翎上 阅读(21) 评论(0) 推荐(0)