从 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>
在此代码中:
验证文件上传
要确认文件上传成功,您可以打印 POST 请求的响应。例如:
<code class="python">>>> print(r.text)</code>
以上是如何从 Python 脚本使用 POST 发送文件?的详细内容。更多信息请关注PHP中文网其他相关文章!