我正在尝试使用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
答案 0 :(得分:1)
您可以使用files
中的request.post()
参数。您可以通过执行以下操作来完成此操作。
files = {'files': open('error2.jpg','rb')}
r = requests.post(url, files=files)