Ah. just stumbled across http://gdatatips.blogspot.com/search/label/spreadsheets ...
>>> import gdata.spreadsheet >>> import gdata.spreadsheet.service >>> client = gdata.spreadsheet.service.SpreadsheetsService() >>> key = 'p123345abcDEF' >>> worksheets_feed = client.GetWorksheetsFeed(key, visibility='public', >>> projection='values') >>> for entry in worksheets_feed.entry: ... print entry.title.text ... that looks like it may give me what I need. Typical! The solution had been hiding from me for ages- until moments after I posted this request! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Base Data API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Base-data-API?hl=en -~----------~----~----~----~------~----~------~--~---
