What API are you using? The client.GetWorkSheets() returns you the standard
feed like object, so something like this would print the names and its ids:

worksheets = client.GetWorksheets(ssid)
print [(entry.title.text, entry.id.text.split('/')[-1]) for entry in
worksheets.entry]

On Mon, Oct 24, 2011 at 4:23 PM, mamali <[email protected]> wrote:

> I'm having the same problem. I'm trying to find a list of worksheets in a
> spreadsheets and do a query on them. All I can get is a string
> representation of worksheets. I can't find any method that would give me the
> ID of each worksheets.
>
> Google spreadsheets API needs better documentation with more examples.
>

Reply via email to