【发布时间】:2019-04-17 09:34:07
【问题描述】:
我正在尝试使用 python 从大查询中获取数据。以下是我的代码:
bg_client = bigquery.Client.from_service_account_json("soy-serenity.json")
QUERY = "(SELECT * from table_name)"
df = gbq.read_gbq(QUERY, project_id = 'soy-serenity', dialect = 'standard')
这一直运行到昨天。不知何故,它给出了以下错误:
read_gbq() got an unexpected keyword argument 'credentials'
【问题讨论】:
标签: python pandas google-bigquery