作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 google drive api 将 google drive 中的文件下载到我的系统。我该如何实现?
根据 https://developers.google.com/drive/v2/reference/files/get#examples 中给出的示例
def print_file(service, file_id):
"""Print a file's metadata.
Args:
service: Drive API service instance.
file_id: ID of the file to print metadata for.
"""
try:
file = service.files().get(fileId=file_id).execute()
print 'Title: %s' % file['title']
print 'MIME type: %s' % file['mimeType']
except errors.HttpError, error:
print 'An error occurred: %s' % error
def download_file(service, drive_file):
"""Download a file's content.
Args:
service: Drive API service instance.
drive_file: Drive File instance.
Returns:
File's content if successful, None otherwise.
"""
download_url = drive_file.get('downloadUrl')
if download_url:
resp, content = service._http.request(download_url)
if resp.status == 200:
print 'Status: %s' % resp
return content
else:
print 'An error occurred: %s' % resp
最佳答案
只需将内容变量写入文件而不是返回内容
fo = open("foo.jpg", "wb")
fo.write(content)
fo.close()
关于python-2.7 - python : How do i download a file from Google drive using api,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28308489/
我是一名优秀的程序员,十分优秀!