pandas read_gbq返回httplib.ResponseNotReady

时间:2015-06-10 15:27:09

标签: python pandas google-bigquery

我正在使用python与google bigquery进行一些操作。

我有一个Google BigQuery项目名称数据旅行车。 我创建了一个数据集'vols' 还有一张桌子'飞行'。

这是我正在测试的代码:

将pandas导入为pd

projectid = "data-wagon"

data_frame = pd.read_gbq('SELECT * FROM vols.flights', project_id = projectid)

print data_frame.head()

当我从eclipse运行它时,会显示一个网页要求授权,我单击是但是我有这个错误消息:

Your browser has been opened to visit:

    https://accounts.google.com/o/oauth2/auth?scope=....................

If your browser is on a different machine then exit and re-run this
application with the command-line parameter 

  --noauth_local_webserver

Traceback (most recent call last):
  File "C:\Users\a452618\workspace\BigDataTutos\script_big_query.py", line 16, in <module>

    data_frame = pd.read_gbq('SELECT * FROM vols.flights', project_id = projectid)

  File "C:\Python27\lib\site-packages\pandas\io\gbq.py", line 334, in read_gbq
    connector = GbqConnector(project_id, reauth = reauth)

  File "C:\Python27\lib\site-packages\pandas\io\gbq.py", line 88, in __init__
    self.credentials    = self.get_credentials()

  File "C:\Python27\lib\site-packages\pandas\io\gbq.py", line 111, in get_credentials

    credentials = run_flow(flow, storage, argparser.parse_args([]))
  File "C:\Python27\lib\site-packages\oauth2client\util.py", line 137, in positional_wrapper

    return wrapped(*args, **kwargs)
  File "C:\Python27\lib\site-packages\oauth2client\tools.py", line 225, in run_flow

    credential = flow.step2_exchange(code, http=http)

  File "C:\Python27\lib\site-packages\oauth2client\util.py", line 137, in positional_wrapper

    return wrapped(*args, **kwargs)

  File "C:\Python27\lib\site-packages\oauth2client\client.py", line 1982, in step2_exchange

    headers=headers)

  File "C:\Python27\lib\site-packages\httplib2\__init__.py", line 1608, in request

    (response, content) = self._request(conn, authority, uri, request_uri, method, body, headers, redirections, cachekey)
  File "C:\Python27\lib\site-packages\httplib2\__init__.py", line 1350, in _request
    (response, content) = self._conn_request(conn, request_uri, method, body, headers)

  File "C:\Python27\lib\site-packages\httplib2\__init__.py", line 1306, in _conn_request

    response = conn.getresponse()

  File "C:\Python27\lib\httplib.py", line 1018, in getresponse
    raise ResponseNotReady()

httplib.ResponseNotReady

任何人都能帮我解决这个问题吗?

祝你好运, 阿尤布

1 个答案:

答案 0 :(得分:1)