python gspread谷歌电子表格保持连接活着

前端之家收集整理的这篇文章主要介绍了python gspread谷歌电子表格保持连接活着前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用gspread更新我的电子表格,这个过程大约需要一个小时,我有大约200个电子表格.似乎大约30分钟更新表格,连接下降.有没有办法保持登录活着?我以为我保持连接活着,因为我每隔30秒打开并写入不同的纸张.

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

我习惯使用gspread示例中的简单示例:

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

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

最佳答案
为了保持活动连接,您应该使用持久连接.

所以,如果你检查主文件

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

您将看到gspread.login方法是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

原文链接:https://www.f2er.com/python/439777.html

猜你在找的Python相关文章