Python google drive API下载,文件在哪里?

时间:2016-10-27 19:06:30

标签: python google-drive-api

我使用此处找到的python代码在google驱动器上下载文件: https://developers.google.com/drive/v3/web/manage-downloads 我有这个范围: https://www.googleapis.com/auth/drive 一切似乎都有效,我读到:

Download 35%.
Download 71%.
Download 100%.

但文件在哪里?在与python文件相同的目录中,没有任何内容,既没有根,也没有在家里......你有想法吗?或者我该如何调试?

1 个答案:

答案 0 :(得分:2)

Google doc中的示例使用fh = io.BytesIO(),因此它会将数据读入内存并且不会保存在磁盘上。

您必须使用(例如)open(..., 'wb')write(fh)close()

保存它

编辑:其他人的信息 - @ michelle.70发现 - 我们可以使用

fh = io.FileIO(filename, 'wb')代替fh = io.BytesIO()