-1

我正在尝试将熊猫数据框写入谷歌表

# open google sheet where 'test' is the name of the project
sh = gc.open_all('test')

# update the first sheet with df, starting at cell B2 and second sheet with ds
wks = sh[:-1]
wks.set_dataframe(df, (1, 1))

每次运行此应用程序时,都会出现此错误:

wks.set_dataframe(df, (1, 1))
AttributeError: 'list' object has no attribute 'set_dataframe'

似乎 set_dataframe 在 pygsheets 中没有被识别

有没有人遇到过这个错误或知道是什么问题?

4

1 回答 1

1

使用gspread_dataframe

你可以从这里查看gspread-dataframe

于 2018-11-02T05:54:36.177 回答