Have a spreadsheet where the ordering of the worksheets may arbitrarily change, but not the titles. I would like to list out the titles of all worksheets in a spreadsheet and find the associated worksheet_id.
# Google Docs Login information
gd_client = gdata.spreadsheet.service.SpreadsheetsService()
gd_client.email = 'username'
gd_client.password = 'password'
gd_client.source = 'SO demo'
gd_client.ProgrammaticLogin()
# Obtain list feed of specific worksheet.
feed = gd_client.GetListFeed(spreadsheet_id, worksheet_id)
How do I obtain the correct worksheet_id if I do not know what order the worksheets are in, but I do know the title of the worksheet?