我想知道是否可以在Python 3中使用enctype='multipart/form-data'
发布到表单。我环顾四周,只能找到Python 2的内容(例如海报)。
答案 0 :(得分:4)
使用requests,它支持python 3。
import requests
response = requests.post('http://httpbin.org/post', files={'file': open('filename','rb')})
print(response.content)