Python pandas read_gbq返回httplib.responseNodeTready

Python pandas read_gbq返回httplib.responseNodeTready,python,pandas,google-bigquery,Python,Pandas,Google Bigquery,我正在使用python和google bigquery做一些操作 我有一个Google BigQuery项目名称数据车。 我创建了一个数据集“vols” 还有一张“航班”桌 这是我正在测试的代码: 作为pd进口熊猫 projectid = "data-wagon" data_frame = pd.read_gbq('SELECT * FROM vols.flights', project_id = projectid) print data_frame.head() 当我从eclipse运

我正在使用python和google bigquery做一些操作

我有一个Google BigQuery项目名称数据车。 我创建了一个数据集“vols” 还有一张“航班”桌

这是我正在测试的代码:

作为pd进口熊猫

projectid = "data-wagon"

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

print data_frame.head()
当我从eclipse运行它时,会显示一个请求授权的网页,我单击“是”,但随后出现以下错误消息:

有人能帮我吗

致以最良好的祝愿, A你的机会是你需要或做的

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