2022年10月9日

摘要: Get请求requests.get(url)->Response示例:url = 'http://httpbin.org/get'r = requests.get(url)r.text是返回的内容,为str类型r.json()可以将json格式的字符串解析为dict类型r.content是返回的二进 阅读全文

posted @ 2022-10-09 23:30 风云伴日斜 阅读(42) 评论(0) 推荐(0) 编辑

摘要: Urllib request Urlopen Urlopen()来访问一个url,额外参数data可以用来设置url请求中的参数,timeout用来设置超时 Request对象 Urllib.request.Request对象,构建更强大的请求,可以设置请求头 Handler类 Urllib.req 阅读全文

posted @ 2022-10-09 00:25 风云伴日斜 阅读(26) 评论(0) 推荐(0) 编辑