文件类型不发送python请求文件上传

时间:2017-04-27 23:27:30

标签: python-requests

我正在尝试使用python请求上传文件,但是当我尝试发布文件时,文件类型不存在。

git cherry-pick branch-name~4 # (this is a keeper)
git cherry-pick branch-name~3..branch-name # apply revisions after branch-name~3

从服务器响应

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以使用files中的request.post()参数。您可以通过执行以下操作来完成此操作。

files = {'files': open('error2.jpg','rb')}
r = requests.post(url, files=files)