一尘不染

使用POST从Python脚本发送文件

python

有没有一种方法可以使用Python脚本中的POST发送文件?


阅读 752

收藏
2020-02-21

共1个答案

一尘不染

通过请求,上传Multipart编码的文件非常简单:

with open('report.xls', 'rb') as f:
    r = requests.post('http://httpbin.org/post', files={'report.xls': f})

而已。我不是在开玩笑-这是一行代码。文件已发送。让我们检查:

>>> r.text
{
  "origin": "179.13.100.4",
  "files": {
    "report.xls": "<censored...binary...data>"
  },
  "form": {},
  "url": "http://httpbin.org/post",
  "args": {},
  "headers": {
    "Content-Length": "3196",
    "Accept-Encoding": "identity, deflate, compress, gzip",
    "Accept": "*/*",
    "User-Agent": "python-requests/0.8.0",
    "Host": "httpbin.org:80",
    "Content-Type": "multipart/form-data; boundary=127.0.0.1.502.21746.1321131593.786.1"
  },
  "data": ""
}
2020-02-21