pythonrequest模块使用
Posted 刘玉璇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pythonrequest模块使用相关的知识,希望对你有一定的参考价值。
此处记录Python 第三方Request 模块的使用方法
1.安装
pip安装
pip install requests
2.导入模块
import requests
3.简单使用
Get 请求
发送无参数的get请求,尝试获取某个网页.
r = requests.get(‘http://www.baidu.com‘)
发送无参数的get请求 设置超时时间 timeout 单位秒
r = requests.get(‘http://www.meituan.com‘, timeout=1)
发送带参数的请求.
payload = {‘key1‘: ‘value1‘, ‘key2‘: ‘value2‘} r = requests.get("https://www.baidu.com/", params=payload) print(r.url) https://www.baidu.com/?key2=value2&key1=value1
将一个列表作为值传入.
payload = {‘key1‘: ‘value1‘, ‘key2‘: [‘value2‘, ‘value3‘]} r = requests.get(‘http://www.baidu.com/‘, params=payload) print(r.url) http://www.baidu.com/?key2=value2&key2=value3&key1=value1
定制请求头
url = ‘https://www.baidu.com/s?wd=python‘ headers = { ‘Content-Type‘: ‘text/html;charset=utf-8‘, ‘User-Agent‘ : ‘Mozilla/5.0 (Windows NT 10.0; Win64; x64)‘ } r = requests.get(url,headers=headers)
Response对象使用.
r.url #打印输出该 URL r.headers #以字典对象存储服务器响应头,但是这个字典比较特殊,字典键不区分大小写,若键不存在则返回None r.status_code #返回连接状态,200正常。 r.text #默认以unicode形式返回网页内容,也就是网页源码的字符串。 r.content #以字节形式(二进制)返回。字节方式的响应体,会自动为你解码 gzip 和 deflate 压缩。 r.json() #把网页中的json数据转成字典并将其返回。 r.encoding #获取当前的编码 r.encoding = ‘ISO-8859-1‘ #指定编码,r.text返回的数据类型,写在r.text之前。
POST 请求
HTTP 协议规定 POST 提交的数据必须放在消息主体(entity-body)中,但协议并没有规定数据必须使用什么编码方式,服务端通过是根据请求头中的Content-Type字段来获知请求中的消息主体是用何种方式进行编码,再对消息主体进行解析。具体的编码方式包括:
1.最常见post提交数据的方式,以form表单形式提交数据
application/x-www-form-urlencoded
2.以json串提交数据。
application/json
3.一般使用来上传文件
multipart/form-data
实例如下:
1. 以form形式发送post请求
Reqeusts支持以form表单形式发送post请求,只需要将请求的参数构造成一个字典,然后传给requests.post()的data参数即可
payload = {‘key1‘: ‘value1‘, ‘key2‘: ‘value2‘ } r = requests.post("http://httpbin.org/post", data=payload) print(r.text) ... "form": { "key1": "value1", "key2": "value2" }, ...
2. 以json形式发送post请求
url = ‘http://httpbin.org/post‘ payload = {‘key1‘: ‘value1‘, ‘key2‘: ‘value2‘} r = requests.post(url, data=json.dumps(payload)) #print(r.text) print(r.headers.get(‘Content-Type‘)) application/json
3. 以multipart形式发送post请求
url = ‘http://httpbin.org/post‘ files = {‘file‘: open(‘report.txt‘, ‘rb‘)} r = requests.post(url, files=files) print(r.text) { ... "files": { "file": "hello world" }, "form": {}, "headers": { "Content-Type": "multipart/form-data; boundary=6db46af64e694661985109da21c8fe9b", }, "json": null, "origin": "223.72.217.138", "url": "http://httpbin.org/post" ... }
参考文档: http://docs.python-requests.org/zh_CN/latest/user/quickstart.html
https://www.jb51.net/article/133660.htm
https://blog.csdn.net/qq_878799579/article/details/73956344?utm_source=blogxgwz0
以上是关于pythonrequest模块使用的主要内容,如果未能解决你的问题,请参考以下文章
如何使用模块化代码片段中的LeakCanary检测内存泄漏?