gpt4 book ai didi

python - Google Drive 的 .Py 文件的正确 Mimetype(输入和输出)是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 04:28:30 24 4
gpt4 key购买 nike

我有一个将文件上传到 Google 云端硬盘的脚本。我想上传 python 文件。我可以手动完成并让它正确地将文件保存为 .py(并且它是可预览的),但无论我尝试什么 mimetypes,我都无法让我的程序正确上传它。它可以将文件作为 .txt 或 GDrive 无法识别的内容上传,但不能作为 .py 文件上传。我找不到它的明确 mimetype(我找到了 text/x-script.python 的引用,但它不能作为输出 mimetype)。

有谁知道如何使用 REST 将 .py 文件正确上传到 Google 云端硬盘?

最佳答案

在您的情况下,我认为 text/x-python 可用于上传 python 脚本作为 mimeType。例如curl示例如下。

curl -H "Authorization: Bearer [access token]" \
-F "metadata={name: 'sampleFile.py', mimeType: 'text/x-python'};type=application/json;charset=UTF-8" \
-F "file=@sampleFile.py" \
"https://www.googleapis.com/upload/drive/v3/files?uploadType=multipart"

引用:

关于python - Google Drive 的 .Py 文件的正确 Mimetype(输入和输出)是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53096788/

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