python-google-spreadsheet icon indicating copy to clipboard operation
python-google-spreadsheet copied to clipboard

A simple Python wrapper for the Google Spreadsheet API

Results 4 python-google-spreadsheet issues
Sort by recently updated
recently updated
newest added

Where can I find the google_spreadsheet_source?

Nothing has changed in my App but it stopped working in May. After connection I call SpreadsheetAPI.self.api.list_spreadsheets(), I get: File "/home/ubuntu/play/python-google-spreadsheet/google_spreadsheet/api.py", line 62, in list_spreadsheets sheets = self._get_client().GetSpreadsheetsFeed() File "/usr/lib/python2.7/dist-packages/gdata/spreadsheet/service.py",...

Function `get_rows()` without query param returns the right value, but if following you use `get_rows(query='...')`, with a query param, the result is wrong, and it returns the same as `get_rows()`....

I would like to do something like: ws = api.new_worksheet('Data') ws.insert_row({'a':1}) ws.insert_row({'a':1, 'b':2, 'c':3}) ws.insert_row({'b':2, 'c':3, 'd':4}) Resulting in the table: a,b,c,d 1,,, 1,2,3, ,2,3,4 I looked into it briefly,...