Skip to content

Instantly share code, notes, and snippets.

@elseagle
Created August 15, 2022 01:09
Show Gist options
  • Save elseagle/401820545297378ccc77cf75ada0fd4a to your computer and use it in GitHub Desktop.
Save elseagle/401820545297378ccc77cf75ada0fd4a to your computer and use it in GitHub Desktop.
sheet_title = "Sheet1"
full_data = [["first_name", "last_name"], ["Segun", "Oba"], ["Lafongido", "Moses"], ["Abraham", "Sanni"]]
spreadsheet.values_update(
sheet_title+'!A1',
params={'valueInputOption': 'RAW'},
body={'values': full_data}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment