4

我已使用该gspread库从 Google 文档中读取 CSV 文件,但它首先需要我登录。

gc = gspread.login('email','password')
sheetData = gc.open("NSEport").sheet1

我想使用共享电子表格时生成的密钥直接打开电子表格,而无需登录 Google 帐户。

4

1 回答 1

1
full_doc = gc.open("NSEport")
list_of_worksheets = full_doc.worksheets()
one_I_want = full_doc.get_worksheet(0)  # gets first worksheet
于 2015-10-13T17:55:56.447 回答