我整个早上都在用 python 脚本在谷歌电子表格中填充一个单元格。在运行了几个过时的教程后,我可以使用这个脚本打开电子表格
import gspread
from oauth2client.service_account import ServiceAccountCredentials
scope = ['https://spreadsheets.google.com/feeds']
credentials = ServiceAccountCredentials.from_json_keyfile_name('Apps Script Execution APIxxxxxxx.json', scope)
c = gspread.authorize(credentials)
wks = c.open_by_key ('1rwPLv6jZBhPGpf38DO6MLxx......')
wks.update_acell('A2','abc')
我已经尝试了来自不同教程的几个示例,但我找不到为什么继续给出这个错误:
AttributeError:“电子表格”对象没有属性“update_acell”
有人建议吗?