从 Python 脚本通过 POST 发送文件
使用 Requests 库可以轻松实现利用 Python 脚本通过 POST 请求发送文件。该库提供了一种简单有效的方法来上传多部分编码的文件。
<code class="python">with open('report.xls', 'rb') as f: r = requests.post('http://httpbin.org/post', files={'report.xls': f})</code>
这一行代码上传文件,如以下响应所示:
{ "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": "" }
This响应确认文件已成功发送。利用 Requests 库的简单功能简化了通过 Python 脚本的 POST 请求发送文件的过程。
以上是如何从 Python 脚本通过 POST 请求发送文件?的详细内容。更多信息请关注PHP中文网其他相关文章!