摘要: import requests res = requests.get(url) cookies = requests.utils.dict_from_cookiejar(res.cookies) print(cookies[key]) 阅读全文
posted @ 2018-05-25 17:55 致橡树的你 阅读(11006) 评论(0) 推荐(0)
摘要: 问题: 使用Python3 requests发送HTTPS请求,已经关闭认证(verify=False)情况下,控制台会输出以下错误: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate 阅读全文
posted @ 2018-05-25 14:52 致橡树的你 阅读(1881) 评论(0) 推荐(1)