gpt4 book ai didi

python - 如何在 Python 中通过 HTTPPost 方法发送大文件,上传大文件

转载 作者:可可西里 更新时间:2023-11-01 16:28:40 24 4
gpt4 key购买 nike

我正在尝试通过 Python 中的 HTTPPost 方法发布巨大的 .ova 文件

**ResponseHeaders**
Pragma no-cache
Date Thu, 18 Jul 2013 11:17:13 GMT
Content-Encoding gzip
Vary Accept-Encoding
Server Apache-Coyote/1.1
Transfer-Encoding chunked
Content-Language en-US
Content-Type application/json;charset=UTF-8
Cache-Control no-cache, no-store, max-age=0
Expires Thu, 01 Jan 1970 00:00:00 GMT
**RequestHeaders**
Content-Type application/json
Accept application/json
xyzAPIVersion 1.0
X-Requested-With XMLHttpRequest

如何通过 REST API 通过 HTTPPost 方法发送这么大的文件(500 MB)。

最佳答案

你可以使用 requests library :

import requests # $ pip install requests

with open("file.ova", "rb") as file:
requests.post(url, data=file)

关于python - 如何在 Python 中通过 HTTPPost 方法发送大文件,上传大文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17722939/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com