pygsheets — pygsheets 1.1 documentation
https://pygsheets.readthedocs.io/en/stableSmall Example ¶ First example - Share a numpy array with a friend: import pygsheets client = pygsheets.authorize() # Open the spreadsheet and the first sheet. sh = client.open('spreadsheet-title') wks = sh.sheet1 # Update a single cell. wks.update_value('A1', "Numbers on Stuff") # Update the worksheet with the numpy array values.