如何使用python在谷歌驱动器中下载图像?

时间:2013-05-12 16:46:07

标签: python google-drive-api

我需要下载谷歌驱动器中的图像。我看过帖子Downloading Images from Google Drive,但不清楚。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

尝试:

file = service.files().get(fileId=file_id, fields='downloadUrl').execute()
print file['downloadUrl']