gspread_asyncio
gspread_asyncio copied to clipboard
[Question] Using with gspread-dataframe
Currently I'm using gspread-dataframe to update data to entire sheet. Can I use this library with gspread-dataframe?
btw, I found that gspread_asyncio.AsyncioGspreadWorksheet.update()
not completely wrap gspread.worksheet.Worksheet.update()
. In gspread version, user can put 1 parameter list of list so they don't need to put values parameter,. For example, worksheet.update([dataframe.columns.values.tolist()] + dataframe.values.tolist())
will update sheet with dataframe shape. But in asyncio user cannot do that, it will throw error TypeError: update() missing 1 required positional argument: 'values'