I have an application that depended on the previous behaviour of the 
worksheet.row_count method (Python GData Client) as seen in the snippet 
below:


      spreadclient = gdata.spreadsheets.client.SpreadsheetsClient(source 
='FormPlus')
      spreadclient = AuthClient(spreadclient, credentials)
      worksheets = spreadclient.GetWorksheets(spreadsheet_key)
      row_count = int(worksheets.entry[0].row_count.text) #here I get the 
row count from the worksheet


Previously, the documented behaviour of this function was to return the 
number of filled rows after the header row (before an empty row is 
encountered)
However, it seems the logic has been changed of recent (and there wasn't 
any announcement about this change)
Now the current behaviour is to return the number of initialized rows of 
that worksheet in the SpreadsheetUI (which starts out at a value of 100)

I didn't make any changes to my code, hence this new behaviour must be 
server side (as opposed to say, from a new version of GData client)
I am looking for a way to imitate the previous behaviour 
of worksheet.row_count as my application is currently broken because of 
this change.

Many thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Spreadsheets API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to