requests.post
功能说明
描述
向指定网址发送POST请求。
- 更多详情请参见 官方文档
函数原型
requests.post(url,data=None,headers=None)
参数
名称 | 类型 | 描述 |
---|---|---|
url | 字符型 | 网页地址 |
data | 数组:字典型 | 请求的数据 |
headers | 数组:字典型 | 请求头 |
返回值
类型 | 描述 |
---|---|
对象型 | 执行成功返回http标准结果集,失败程序异常退出,错误信息请查看 <云应用运行错误.log> |
备注
- 无
示例
def test():
data={
'name':'zhangsan',
'age':'25'
}
headers={
"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
"Accept-Language":"zh",
"Cache-Control":"max-age=0",
"Connection":"keep-alive",
"Cookie":"PHPSESSID=m2hbrvp548cg6v4ssp0l35kcj7; _ga=GA1.2.2052701472.1532920469; _gid=GA1.2.1351314954.1532920469; __atuvc=3%7C31; __atuvs=5b5e9a0418f6420c001",
"Host":"en.artprecium.com",
"Upgrade-Insecure-Requests":"1",
"User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/67.0.3396.99 Safari/537.36",
}
result=requests.post("https://api.xxx.com/post",data=data,headers=headers)
print(result)
# 打印状态码
print(result.status_code)
# 指定编码格式,仅支持utf-8
result.encoding='utf-8'
# 打印页面内容
print(result.text)
# 打印cookies
print(result.cookies)
演示示例
- 暂无
安装包下载
- 暂无
相关视频
- 暂无