web-dev-qa-db-ja.com

GoogleドライブAPIダウンロードファイル-python-ダウンロードされたファイルなし

oauthとAPIを使用してGoogleドライブからファイルをダウンロードする方法をいくつか試しましたが、ファイルをダウンロードできません。適切に認証されたと思います。コードを実行した後、ファイルのダウンロードは成功したようです(エラーはありません)が、ファイルはダウンロードされませんでした。

これは私がこれまでに試したコードです:

def download_file(file_id, mimeType):
    if "google-apps" in mimeType:
        return
    request = drive_service.files().get(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)

ただし、これは「100%ダウンロード」という結果になります。コンソールに出力されますが、ファイルはダウンロードされません。

私も試しました:

def download2(download_url):
    resp, content = drive_service._http.request(download_url)
    if resp.status == 200:
        print 'Status: %s' % resp
        return content
    else:
        print 'An error occurred: %s' % resp
        return None

これでもダウンロードファイルは生成されませんが、200メッセージが表示されます。

これらはどちらもAPIと適切に通信しているようです。実際にコンピューター上のファイルを取得するために必要な追加の手順はありますか?

編集:

これが私のコードの残りの部分でした:

import json
import webbrowser

import httplib2
import io
from apiclient.http import MediaIoBaseDownload

from apiclient import discovery
from oauth2client import client

if __name__ == '__main__':
  flow = client.flow_from_clientsecrets(
    'client_secrets.json',
    scope='https://www.googleapis.com/auth/drive.readonly',
    redirect_uri='urn:ietf:wg:oauth:2.0:oob')

  auth_uri = flow.step1_get_authorize_url()
  webbrowser.open(auth_uri)

  auth_code = raw_input('Enter the auth code: ')

  credentials = flow.step2_exchange(auth_code)
  http_auth = credentials.authorize(httplib2.Http())

  drive_service = discovery.build('drive', 'v3', http_auth) #also tried v2
  files = drive_service.files().list().execute()
  for f in files['files']:
    #call one of the two download methods with the proper arguments
18
user1253952

BytesIOからFileIOに変更すると、ファイルを実際にダウンロードできました。これは、コードを次のように変更した行です。

fh = io.FileIO(filename, 'wb')

ファイルのダウンロードを許可した完全なコードは次のとおりです。

def download_file(file_id, mimeType, filename):
    if "google-apps" in mimeType:
        # skip google files
        return
    request = drive_service.files().get_media(fileId=file_id)
    fh = io.FileIO(filename, 'wb')
    downloader = MediaIoBaseDownload(fh, request)
    done = False
    while done is False:
        status, done = downloader.next_chunk()
        print "Download %d%%." % int(status.progress() * 100)


if __name__ == '__main__':
    flow = client.flow_from_clientsecrets(
      'client_secrets.json',
      scope='https://www.googleapis.com/auth/drive.readonly',
      redirect_uri='urn:ietf:wg:oauth:2.0:oob')

    auth_uri = flow.step1_get_authorize_url()
    webbrowser.open(auth_uri)

    print auth_uri

    auth_code = raw_input('Enter the auth code: ')

    credentials = flow.step2_exchange(auth_code)
    http_auth = credentials.authorize(httplib2.Http())

    drive_service = discovery.build('drive', 'v3', http_auth)
    files = drive_service.files().list().execute()
    for f in files['files']:
        print f['name']
        download_file(f['id'], f['mimeType'], f['name'])
25
user1253952

ファイルはダウンロード中ですが、グーグルによって提供された例はファイルに対して何もしません。

あなたは単にこのようにBytesIOバッファの内容を返す必要があります(最後にリターンを追加するだけです)...

def download_file(service, file_id):
    request = 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))
    return fh.getvalue()
10
Ryan Parrish