2017-11-27 3 views
0

googledrive에서 파일을 어떻게 다운로드합니까?파일 다운로드 Google 드라이브 python

나는이 링크를 사용하여 pydrive을 사용하고 있습니다.

#https://drive.google.com/open?id=DWADADDSASWADSCDAW 
    from pydrive.auth import GoogleAuth 
from pydrive.drive import GoogleDrive 

gauth = GoogleAuth() 
drive = GoogleDrive(gauth) 

gdrive_file = drive.CreateFile({'id': 'id=DWADADDSASWADSCDAW'}) 
gdrive_file.GetContentFile('DWADSDCXZCDWA.zip') # Download content file. 

오류 :

raceback (most recent call last): 
    File "C:\Users\Hoxton\AppData\Local\Continuum\miniconda3\lib\site-packages\oauth2client\clientsecrets.py", line 121, in _loadfile 
    with open(filename, 'r') as fp: 
FileNotFoundError: [Errno 2] No such file or directory: 'client_secrets.json' 

During handling of the above exception, another exception occurred: 

Traceback (most recent call last): 
    File "C:\Users\Hoxton\AppData\Local\Continuum\miniconda3\lib\site-packages\pydrive\auth.py", line 386, in LoadClientConfigFile 
    client_type, client_info = clientsecrets.loadfile(client_config_file) 
    File "C:\Users\Hoxton\AppData\Local\Continuum\miniconda3\lib\site-packages\oauth2client\clientsecrets.py", line 165, in loadfile 
    return _loadfile(filename) 
    File "C:\Users\Hoxton\AppData\Local\Continuum\miniconda3\lib\site-packages\oauth2client\clientsecrets.py", line 125, in _loadfile 
    exc.strerror, exc.errno) 
oauth2client.clientsecrets.InvalidClientSecretsError: ('Error opening file', 'client_secrets.json', 'No such file or directory', 2) 

During handling of the above exception, another exception occurred: 

    Traceback (most recent call last): 
     File "C:/Users/Hoxton/123/pyu_test.py", line 8, in <module> 
     gdrive_file.GetContentFile('PyUpdater+App-win-1.0.zip') # Download content file. 
     File "C:\Users\Hoxton\AppData\Local\Continuum\miniconda3\lib\site-packages\pydrive\files.py", line 210, in GetContentFile 
     self.FetchContent(mimetype, remove_bom) 
     File "C:\Users\Hoxton\AppData\Local\Continuum\miniconda3\lib\site-packages\pydrive\files.py", line 42, in _decorated 
     self.FetchMetadata() 
     File "C:\Users\Hoxton\AppData\Local\Continuum\miniconda3\lib\site-packages\pydrive\auth.py", line 57, in _decorated 
     self.auth.LocalWebserverAuth() 
     File "C:\Users\Hoxton\AppData\Local\Continuum\miniconda3\lib\site-packages\pydrive\auth.py", line 113, in _decorated 
     self.GetFlow() 
     File "C:\Users\Hoxton\AppData\Local\Continuum\miniconda3\lib\site-packages\pydrive\auth.py", line 443, in GetFlow 
     self.LoadClientConfig() 
     File "C:\Users\Hoxton\AppData\Local\Continuum\miniconda3\lib\site-packages\pydrive\auth.py", line 366, in LoadClientConfig 
     self.LoadClientConfigFile() 
     File "C:\Users\Hoxton\AppData\Local\Continuum\miniconda3\lib\site-packages\pydrive\auth.py", line 388, in LoadClientConfigFile 
     raise InvalidConfigError('Invalid client secrets file %s' % error) 
    pydrive.settings.InvalidConfigError: Invalid client secrets file ('Error opening file', 'client_secrets.json', 'No such file or directory', 2) 

    Process finished with exit code 1 
+0

질문 무엇인가? – Antonis

답변

0

documentation에서 제공하는 샘플 코드를 사용해보십시오. 여기

The Drive API allows you to download files that are stored in Google Drive. Also, you can download exported versions of Google Documents (Documents, Spreadsheets, Presentations, etc.) in formats that your app can handle. Drive also supports providing users direct access to a file via the URL in the webViewLink property.

code snippet입니다 :

file_id = '0BwwA4oUTeiV1UVNwOHItT0xfa2M' 
request = drive_service.files().get_media(fileId=file_id) 
fh = io.BytesIO() 
downloader = MediaIoBaseDownload(fh, request) 
done = False 
while done is False: 
    status, done = downloader.next_chunk() 
    print "Download %d%%." % int(status.progress() * 100) 
관련 문제