0

一部の古い Google API ( contact など) では、バッチ呼び出しを行うことができます。これは Python Drive API で可能ですか?

具体的には、1 回の API 呼び出しで複数のファイルのコメントを取得できるかどうかを知りたいです。

4

1 に答える 1

3

資格情報が変数 creds に格納されていると仮定して、ドキュメントをマイニングした後の簡単な例:

def list_animals(request_id, response, exception):
    if exception is not None:
        # Do something with the exception.
        pass
    else:
        # Do something with the response.
        pass

def list_farmers(request_id, response, exception):
    if exception is not None:
        # Do something with the exception.
        pass
    else:
        # Do something with the response.
        pass

service_ = authHandler.CreateService('drive', 'v2', creds)

batch = BatchHttpRequest()

batch.add(service_.changes().list(), list_animals)
batch.add(service_.changes().list(), list_farmers)
batch.execute(http=authHandler.getHttp(creds))
于 2013-02-21T14:16:04.723 に答える