-
Python request库查看全部
-
response.info() 可以打开网页的 headers查看全部
-
HTTP基本原理 发送请求 接收响应 HTTP进阶话题:Cookie,Session查看全部
-
使用代理,访问国外的网站查看全部
-
事件钩子,回调函数hooks查看全部
-
api查看全部
-
利用requests底层的Request和Session发送查看全部
-
headers = {"User-Agent":"pypa"} resp = requests.post(url,timeout=10,data={"hello":"world","yo":"check"},headers=headers)查看全部
-
try: resp = requests.post(url,timeout=0.1,data={"hello":"world","yo":"check"}) except exceptions.Timeout: print("超时") else: print(resp.text)查看全部
-
超时的请求查看全部
-
333查看全部
-
222查看全部
-
111查看全部
-
请求方法查看全部
-
url = "http://httpbin.org/get" param = {"hello":"world","now":"123"} resp = requests.get(url,params=param) # 获取get请求 print(resp.headers) # 获取请求头 print(resp.status_code) # 获取状态码 print(resp.json()) # 以json格式返回页面内容 print(resp.text) # 获取请求页面内容查看全部
举报
0/150
提交
取消