如何通过 Google 传播 Sheet 进行搜索
How to search thru Google Spread Sheet
我正在尝试查找 GSheet 中存在的值。与 Google sheet 的连接有效。我可以获取文件中的所有工作sheets,但我不能出于某种原因迭代工作列表sheets。
这是文件的样子:
我正在尝试查找单元格值,然后获取该列中的值。
示例代码:
#Gsheet setup w/ key.json token
scope = ['https://www.googleapis.com/auth/drive.file','https://www.googleapis.com/auth/spreadsheets','https://www.googleapis.com/auth/drive']
credentials = ServiceAccountCredentials.from_json_keyfile_name('gdoc.json',scope)
gc = gspread.authorize(credentials
sheet = gc.open("GSHEET_Search_test")
cell = sheet.find("B02")
print(cell)
获取错误:
我能够遍历工作表索引值 worksheet = sheet.get_worksheet(counter)
我正在尝试查找 GSheet 中存在的值。与 Google sheet 的连接有效。我可以获取文件中的所有工作sheets,但我不能出于某种原因迭代工作列表sheets。
这是文件的样子:
示例代码:
#Gsheet setup w/ key.json token
scope = ['https://www.googleapis.com/auth/drive.file','https://www.googleapis.com/auth/spreadsheets','https://www.googleapis.com/auth/drive']
credentials = ServiceAccountCredentials.from_json_keyfile_name('gdoc.json',scope)
gc = gspread.authorize(credentials
sheet = gc.open("GSHEET_Search_test")
cell = sheet.find("B02")
print(cell)
获取错误:
我能够遍历工作表索引值 worksheet = sheet.get_worksheet(counter)