首页 >后端开发 >Python教程 >如何从 Python 脚本使用 POST 发送文件?

如何从 Python 脚本使用 POST 发送文件?

Barbara Streisand
Barbara Streisand原创
2024-10-29 07:06:31462浏览

How do I send a file using POST from a Python script?

从 Python 脚本使用 POST 发送文件

使用 Requests 库,在 Python 中使用 POST 方法发送文件可以很简单。为此,请按照以下步骤操作:

使用请求库

来自请求文档 (https://requests.readthedocs.io/en/latest/user /quickstart/#post-a-multipart-encoded-file),以下代码片段演示了如何使用 POST 发送文件:

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

在此代码中:

  • open('report.xls', 'rb') as f 以二进制读取模式打开文件report.xls。
  • requests.post('http://httpbin.org/post', files={ 'report.xls': f}) 向指定 URL 发送 POST 请求,并将文件作为请求正文的一部分。

验证文件上传

要确认文件上传成功,您可以打印 POST 请求的响应。例如:

<code class="python">>>> print(r.text)</code>

以上是如何从 Python 脚本使用 POST 发送文件?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn