Python 3中的多部分表单编码文件上载

时间:2012-08-11 02:51:17

标签: forms post python-3.x multipart

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

1 个答案:

答案 0 :(得分:4)

使用requests,它支持python 3。

import requests

response = requests.post('http://httpbin.org/post', files={'file': open('filename','rb')})
print(response.content)