📜  gspread 将数据帧发送到工作表 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:51.282000             🧑  作者: Mango

代码示例1
import gspread_dataframe as gd

# Connecting with `gspread` here

ws = gc.open("SheetName").worksheet("xyz")
existing = gd.get_as_dataframe(ws)
updated = existing.append(your_new_data)
gd.set_with_dataframe(ws, updated)