【python】request模块使用
2021-03-12 15:34
标签:区分 pos response 网页 ams time 支持 python-r 字符 此处记录Python 第三方Request 模块的使用方法 1.安装 2.导入模块 3.简单使用 Get 请求 发送无参数的get请求,尝试获取某个网页. 发送无参数的get请求 设置超时时间 timeout 单位秒 发送带参数的请求. 将一个列表作为值传入. 定制请求头 Response对象使用. POST 请求 HTTP 协议规定 POST 提交的数据必须放在消息主体(entity-body)中,但协议并没有规定数据必须使用什么编码方式,服务端通过是根据请求头中的Content-Type字段来获知请求中的消息主体是用何种方式进行编码,再对消息主体进行解析。具体的编码方式包括: 1.最常见post提交数据的方式,以form表单形式提交数据 2.以json串提交数据。 3.一般使用来上传文件 实例如下: 1. 以form形式发送post请求 Reqeusts支持以form表单形式发送post请求,只需要将请求的参数构造成一个字典,然后传给requests.post()的data参数即可 2. 以json形式发送post请求 3. 以multipart形式发送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 【python】request模块使用 标签:区分 pos response 网页 ams time 支持 python-r 字符 原文地址:https://www.cnblogs.com/liuyuxuan/p/14075114.html
pip安装pip install requests
import requests
r = requests.get(‘http://www.baidu.com‘)
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)
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之前。
application/x-www-form-urlencoded
application/json
multipart/form-data
payload = {‘key1‘: ‘value1‘,
‘key2‘: ‘value2‘
}
r = requests.post("http://httpbin.org/post", data=payload)
print(r.text)
...
"form": {
"key1": "value1",
"key2": "value2"
},
...
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
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"
...
}
上一篇:Java之List
下一篇:Java多线程有序性-动力节点
文章标题:【python】request模块使用
文章链接:http://soscw.com/index.php/essay/63739.html