如何从Python访问不同的Google表格?

时间:2019-05-29 16:22:24

标签: python google-sheets google-sheets-api

因此,目前我已将Python基本连接到Google表格。它可以访问第一张表并读取和写入数据:

sheet = client.open("Remake").sheet1

我可以访问总体电子表格中的工作表1,但是仅将其更改为以下内容就无法访问第二个工作表(sheet2):

sheet = client.open("Remake").sheet2

2 个答案:

答案 0 :(得分:1)

要进行解释,这是因为Google Spreadsheet仅实现了sheet1来让您检索电子表格中的第一张表作为快捷方式。因此,如果要检索其他工作表,则需要使用其他方法,例如:

wks = gc.open("doc_name").get_worksheet(index)

wks = gc.open("doc_name").worksheet(title)

相关信息:

答案 1 :(得分:0)

就我而言,此代码有效(python 3.7)

Spreadsheet  = client.open("sheet_name").worksheet("sheet_title")