2

我想知道是否可以enctype='multipart/form-data'在 Python 3 中发布到表单。我环顾四周,只能找到 Python 2 的东西(例如海报)。

4

1 回答 1

4

使用requests,它支持 python 3。

import requests

response = requests.post('http://httpbin.org/post', files={'file': open('filename','rb')})
print(response.content)
于 2013-06-04T11:04:14.413 回答