Hi, I'm trying to fetch rows from a spreadsheet using a query: q = gdata.spreadsheets.client.ListQuery(max_results=10000, start_index=50) list_feed = cl.GetListFeed(my_spreadsheet, my_worksheet, auth_token=auth_token, query=q)
Somehow I cannot find a way to get more than 256 records, so my request to get 10000 records (I actually have more like 300) and/or to start at index 50 are not honored. I am missing some records from the bottom of the worksheet, and 'total_results' indeed affirms that only 256 records are returned: INFO 2012-03-06 16:57:48,441 data.py:168] --- total_results.text: 256 INFO 2012-03-06 16:57:48,441 data.py:170] --- start_index.text: 50 INFO 2012-03-06 16:57:48,444 data.py:174] --- items_per_page.text: 10000 Any suggestions on how to read more than 256 rows? Thanks,
