一、简介
requests 模块是 python 基于 urllib,采用 Apache2 Licensed 开源协议的 HTTP 库。它比 urllib 更加方便,可以节约我们大量的工作文章来源地址https://www.toymoban.com/news/detail-672686.html
二、安装
pip install requests
import requests
三、方法
- requsts.requst(method, url,headers,cookies,proxies,timeout)
- method:请求方式;字符串类型
- url:请求的地址;字符串类型
- params:查询参数,get请求会自动对该参数编码,然后拼接
- url;字典类型
- headers:请求头;字典类型
- cookies:浏览器cookie;字典类型
- proxies:代理服务ip;字典类型
- timeout:超时时间;整型
- requsts.get(url,params,headers,cookies,proxies,timeout):HTTP中的GET方法
- requsts.post(url,data,json,headers,cookies):HTTP中的POST方法
- json 参数为要发送到指定 url 的 JSON 对象。
- requsts.put(url,headers,cookies,proxies,timeout):HTTP中的PUT方法
- requsts.patch(url,headers,cookies,proxies,timeout):HTTP中的PATCH方法
- requsts.delete(url,headers,cookies,proxies,timeout):HTTP中的DELETE方法
- requsts.head(ur):HTTP中的HEAD方法
- requests.session():会话对象让你能够跨请求保持某些参数
session = requests.Session()
session.headers.update(headers)
session.cookies.update(cookies)
session.get()
三、返回结果信息reponse
- reponse_result.status_code:http请求的返回状态,若为200则表示请求成功。
- reponse_result.raise_for_status():判断resp.status_code是否等于200,如果不等于,则抛出异常
- reponse_result.text:http响应内容的字符串形式,即返回的页面内容
- reponse_result.encoding:响应内容编码方式
- reponse_result.apparent_encoding:响应内容编码方式,备选编码方式
- reponse_result.content:http响应内容的二进制形式
- reponse_result.json():获取 json 格式的数据
- reponse_result.headers :获取响应头
- reponse_result.reason:响应状态的描述,比如 “Not Found” 或 “OK”
- reponse_result.close():关闭与服务器的连接
- reponse_result.cookies:返回一个cookie对象
- reponse_result.history:返回包含请求历史的响应对象列表
- reponse_result.links:返回响应的解析头链接
- reponse_result.ok:检查 “status_code” 的值,如果小于400,则返回 True,如果不小于 400,则返回 False
- reponse_result.raise_for_status():检查响应的状态码,如果状态码不是 200,则抛出异常。
文章来源:https://www.toymoban.com/news/detail-672686.html
到了这里,关于python 模块requests 发送 HTTP 请求的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!