我在程序启动时登录Google表格:
credentials = ServiceAccountCredentials.from_json_keyfile_name(*args)
gs = gspread.authorize(credentials).open('My Sheets')
然后在每小时回调中运行一个get-all命令:
sheets = {w.title: w.get_all_values() for w in gs.worksheets()}
对于中型表单,get-all行需要大约30秒(导出的xlsx为800kB)。是否有更好的方式来提取所有数据,或者这是通过Google API运行那么多数据的限制?