gpt4 book ai didi

python - 使用 python requests 工具带捕获文件名

转载 作者:行者123 更新时间:2023-12-01 05:04:21 24 4
gpt4 key购买 nike

我正在使用 python requests-toolbelt 来发布大型音频文件。我最初使用请求来发布文件,如下所示:

files = {'file': open("test.mp3", "rb")}
audio_headers = {'Authorization': 'Bearer ' + token}
add_file = requests.post(file_url, headers=audio_headers, files=files)

这成功地抓取了我的文件并将文件名添加到文件名字段中,但它不适用于大文件。

所以我改用 requests-toolbelt MultipartEncoder 发布文件,如下所示:

files = MultipartEncoder({'file': open(file, "rb")})
audio_headers = {'Authorization': 'Bearer ' + token, 'Content-Type': 'audio/mpeg'}
add_file = requests.post(file_url, headers=headers, data=files)

在这种情况下,文件已创建,但未捕获文件名。

我也尝试过这样定义文件:

files = MultipartEncoder({'file': file, open(file, "rb"), 'audio/mpeg')})

知道如何成功传递我的文件名吗?

最佳答案

事实证明我只需要严格遵循这个例子......

files = MultipartEncoder(fields={'file': (file, open(file, "rb"), 'audio/mpeg')})
audio_headers = {'Authorization': 'Bearer ' + token, 'Content-Type': files.content_type}
add_file = requests.post(file_url, headers=audio_headers, data=files)

现在完全可以工作了。

关于python - 使用 python requests 工具带捕获文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25354921/

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