上一页 1 ··· 156 157 158 159 160 161 162 163 164 ··· 204 下一页
摘要: 阅读全文
posted @ 2020-02-22 16:59 小白龙白龙马 阅读(219) 评论(0) 推荐(0) 编辑
摘要: url = 'http://httpbin.org/cookies' cookies = dict(cookies_are='working') r = requests.get(url, cookies=cookies) 阅读全文
posted @ 2020-02-22 16:54 小白龙白龙马 阅读(777) 评论(0) 推荐(0) 编辑
摘要: url = 'https://api.github.com/some/endpoint' headers = {'user-agent': 'my-app/0.0.1'} r = requests.get(url, headers=headers) 阅读全文
posted @ 2020-02-22 16:49 小白龙白龙马 阅读(2752) 评论(0) 推荐(0) 编辑
摘要: 发送的数据编码为表单形式: date被传入一个字典作为参数——表单形式 date被传入一个元组列表作为参数(多个元素使用同一 key 的时候)——表单形式 发送的数据并非编码为表单形式: 如果被传入的参数是一个string类型(string类型会被直接发送出去),而不是字典类型, 则可以引入包jso 阅读全文
posted @ 2020-02-22 16:46 小白龙白龙马 阅读(846) 评论(0) 推荐(0) 编辑
摘要: 参考网址:https://zhuanlan.zhihu.com/p/39238535 阅读全文
posted @ 2020-02-22 13:39 小白龙白龙马 阅读(389) 评论(0) 推荐(0) 编辑
摘要: requests库是 python3 中非常优秀的第三方库,它使用 Apache2 Licensed 许可证的 HTTP 库,用 Python 编写,真正的为人类着想。 requests 使用的是 urllib3(python3.x中的urllib),因此继承了它的所有特性。 Requests 会自 阅读全文
posted @ 2020-02-22 02:41 小白龙白龙马 阅读(17379) 评论(0) 推荐(0) 编辑
摘要: Requests 允许你使用 params 关键字参数,以一个字符串字典来提供这些参数。 举例来说,如果你想传递 key1=value1 和 key2=value2 到 httpbin.org/get ,那么你可以使用如下代码: payload = {'key1': 'value1', 'key2' 阅读全文
posted @ 2020-02-22 01:37 小白龙白龙马 阅读(4100) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-02-22 01:22 小白龙白龙马 阅读(0) 评论(0) 推荐(0) 编辑
摘要: import requests url = "http://www.baidu.com" #请求网址 yctime = 0.05 #不能超过的时间 resp = requests.get(url,timeout=yctime) print("# 1") print(type(resp.url)) # 阅读全文
posted @ 2020-02-22 01:20 小白龙白龙马 阅读(835) 评论(0) 推荐(0) 编辑
上一页 1 ··· 156 157 158 159 160 161 162 163 164 ··· 204 下一页