gpt4 book ai didi

python - 如何通过 API 使用 For 循环从 Google Drive 下载文件

转载 作者:行者123 更新时间:2023-12-01 00:24:50 27 4
gpt4 key购买 nike

当我通过 api 在 Google Drive 上检索 csv 文件时,我得到的文件没有内容。
下面的代码由3部分组成(1:验证2:搜索文件,3:下载文件)。
我怀疑第3步:下载文件中存在问题,特别是在while did is False周围,因为我访问Google云端硬盘和下载文件没有问题。只是都是空文件。

如果有人能告诉我如何解决它,那就太好了。下面的代码大部分是从Google网站借用的。感谢您提前抽出时间!

第 1 步:身份验证

from apiclient import discovery
from httplib2 import Http
import oauth2client
from oauth2client import file, client, tools
obj = lambda: None # this code allows for an empty class
auth = {"auth_host_name":'localhost', 'noauth_local_webserver':'store_true', 'auth_host_port':[8080, 8090], 'logging_level':'ERROR'}
for k, v in auth.items():
setattr(obj, k, v)

scopes = 'https://www.googleapis.com/auth/drive'
store = file.Storage('token_google_drive2.json')
creds = store.get()
# The following will takes a user to authentication link if no token file is found.
if not creds or creds.invalid:
flow = client.flow_from_clientsecrets('client_id.json', scopes)
creds = tools.run_flow(flow, store, obj)

第 2 步:搜索文件并创建要下载的文件字典

from googleapiclient.discovery import build

page_token = None
drive_service = build('drive', 'v3', credentials=creds)
while True:
name_list = []
id_list = []
response = drive_service.files().list(q="mimeType='text/csv' and name contains 'RR' and name contains '20191001'", spaces='drive',fields='nextPageToken, files(id, name)', pageToken=page_token).execute()
for file in response.get('files', []):
name = file.get('name')
id_ = file.get('id')

#name and id are strings, so create list first before creating a dictionary
name_list.append(name)
id_list.append(id_)


#also you need to remove ":" in name_list or you cannot download files - nowhere to be found in the folder!
name_list = [word.replace(':','') for word in name_list]
page_token = response.get('nextPageToken', None)
if page_token is None:
break

#### Create dictionary using name_list and id_list
zipobj = zip(name_list, id_list)
temp_dic = dict(zipobj)

第3步:下载文件(麻烦的部分)

import io
from googleapiclient.http import MediaIoBaseDownload

for i in range(len(temp_dic.values())):
file_id = list(temp_dic.values())[i]
v = list(temp_dic.keys())[i]
request = drive_service.files().get_media(fileId=file_id)
fh = io.FileIO(v, mode='w')
downloader = MediaIoBaseDownload(fh, request)
done = False
while done is False:
status, done = downloader.next_chunk()
status_complete = int(status.progress()*100)
print(f'Download of {len(temp_dic.values())} files, {int(status.progress()*100)}%')

最佳答案

其实我自己也明白了。以下是编辑。我所需要做的就是删除 done = False
while done 为 False:
并添加 fh.close() 来关闭下载器。

完整修订后的第3部分如下:

from googleapiclient.http import MediaIoBaseDownload

for i in range(len(temp_dic.values())):

file_id = list(temp_dic.values())[i]
v = list(temp_dic.keys())[i]
request = drive_service.files().get_media(fileId=file_id)

# replace the filename and extension in the first field below
fh = io.FileIO(v, mode='wb') #only in Windows, writing for binary is specified with wb
downloader = MediaIoBaseDownload(fh, request)

status, done = downloader.next_chunk()
status_complete = int(status.progress()*100)
print(f'{list(temp_dic.keys())[i]} is {int(status.progress()*100)}% downloaded')

fh.close()
print(f'{len(list(temp_dic.keys()))} files')

关于python - 如何通过 API 使用 For 循环从 Google Drive 下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58665927/

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