What is the current recommendation to get to the column names? I found a convoluted solution to get to the column tags, but didn't find anything to get to the column names. Here is what works for column tags:
LISTS_URL = 'https://spreadsheets.google.com/feeds/list/%s/%s/private/full' lists_feed = gd_client.get_feed(LISTS_URL % (key, wksht_id)) ns = gdata.spreadsheets.data.GSX_NAMESPACE column_tags = [el.tag for el in lists_feed.entry[0].get_elements(namespace=ns)] Of course, even this fails when there are no rows (since lists_feed.entry will be empty).
