Python3: requests实现文件上传(对应postman form-data)

Posted thisismynickname

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3: requests实现文件上传(对应postman form-data)相关的知识,希望对你有一定的参考价值。

#coding:utf-8
from urllib3 import encode_multipart_formdata
import requests

url = "http://127.0.0.1/Pass-01/index.php"
data = {}
headers = {}
filename = ‘name.png‘  #上传至服务器后,用于存储文件的名称
filepath = r‘C:UsersmasterDesktoppp.jpg‘  #当前要上传的文件路径
proxies = {
    "http": "http://127.0.0.1:8080",
    "https": "http://127.0.0.1:8080",
}
####
data[‘upload_file‘] = (filename, open(filepath, ‘rb‘).read())
data[‘submit‘]="提交"
encode_data = encode_multipart_formdata(data)
data = encode_data[0]
headers[‘Content-Type‘] = encode_data[1]
# r = requests.post(url, headers=headers, data=data, timeout=5)
r = requests.post(url, headers=headers, data=data, proxies=proxies, timeout=5)
print(r.status_code)

  上面的代码,我已经试验成功。

代码的初始版本来源于:https://blog.csdn.net/u013511989/article/details/80422734

以上是关于Python3: requests实现文件上传(对应postman form-data)的主要内容,如果未能解决你的问题,请参考以下文章

python3 requests库文件上传与下载

Python3上传中文文件名的问题

MVC中通过jquery实现图片预览上传,并对文件类型大小进行判断(极简)

MVC中通过jquery实现图片预览上传,并对文件类型大小进行判断(极简)

python的requests发送/上传多个文件

requests实现文件下载, 期间显示文件信息&下载进度_python3