3

我正在尝试使用 python-requests 上传文件

with open('file.zip','rb') as fff:
    up = requests.post(url,files=[('file[]',fff)])

并得到:

UnicodeDecodeError: 'ascii' codec can't decode byte ...

当尝试使用 unicode(fff) 并且文件已上传但后来我下载了它并且它只有 70 个字节

在记事本中打开的 ZIP 文件的内容:

<open file 'file.zip', mode 'rb' at 0x0000000002F6E030>
4

0 回答 0