2021年1月7日
摘要: import requests def GetHtml(url): try: r = requests.get(url,timeout=10) r.raise_for_status() r.encoding = r.apparent_encoding return r.text except: re 阅读全文
posted @ 2021-01-07 21:48 Asuhe 阅读(162) 评论(0) 推荐(0) 编辑