6

我正在使用 更新我的电子表格gspread,这个过程大约需要一个小时,我有大约 200 个电子表格。似乎在更新工作表大约 30 分钟后,连接断开了。有没有办法让登录保持活跃?我以为我正在保持连接活跃,因为我大约每 30 秒打开并写入不同的工作表。

我可以使用一个try语句,如果它炸弹重新登录。我想知道是否有人有更好的方法?

我习惯于使用以下示例中的简单示例gspread

gc = gspread.login('thedude@abid.es', 'password')
sht1 = gc.open_by_key('0BmgG6nO_6dprdS1MN3d3MkdPa142WFRrdnRRUWl1UFE')

如何将其转换为保持活动连接登录以到达sht1

4

1 回答 1

4

为了保持活动连接,您应该使用持久连接。

因此,如果您检查主文档:

http://burnash.github.io/gspread/#gspread.Client

您将看到该gspread.login方法是Client. 并且Client可以接受http标题。

http://burnash.github.io/gspread/#gspread.httpsession.HTTPSession

现在在您的连接中添加此标头:Connection: Keep-Alive

import gspread
headers = gspread.httpsession.HTTPSession(headers={'Connection':'Keep-Alive'})
con = gspread.Client(auth=('you@gmail.com','password'),http_session=headers)
con.login()
con.open_by_key('....')

然后,当您打印会话标头时:

print con.session.headers
Out[5]: {'Authorization': u'GoogleLogin auth=xxxxxxx', 'Connection': 'Keep-Alive'}

有关持久连接的详细信息,请查看以下链接:

http://en.wikipedia.org/wiki/HTTP_persistent_connection

http://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html

有关代码的详细信息,gspread httpsession请查看:

https://github.com/burnash/gspread/blob/master/gspread/httpsession.py

于 2014-05-09T16:22:40.197 回答