1
當我使用python api客戶端進行Google Big Query時,如何獲取gzip查詢響應?GZIP google使用python api客戶端的大查詢響應
這裏是代碼片段:
jobData = {'configuration':
......
}
jobCollection = self.service.jobs()
insertResponse = jobCollection.insert(projectId=project_id,
body=jobData).execute()
queryResponse = jobCollection.getQueryResults(
projectId=project_id,
jobId=insertResponse['jobReference']['jobId'],
startIndex=currentRow).execute()
我想從大查詢api得到一個gzipped的響應。 – Vatsal