gspread send dataframe to sheet

Solutions on MaxInterview for gspread send dataframe to sheet by the best coders in the world

showing results for - "gspread send dataframe to sheet"
Alen
08 Jan 2018
1import gspread_dataframe as gd
2
3# Connecting with `gspread` here
4
5ws = gc.open("SheetName").worksheet("xyz")
6existing = gd.get_as_dataframe(ws)
7updated = existing.append(your_new_data)
8gd.set_with_dataframe(ws, updated)