Access Spreadsheets list feed elements in Python

# print out dictionary of row information for each row
for entry in worksheet_list_feed.entry:
  for key in entry.custom:
    print '%s: %s' % (key, entry.custom[key].text)

No comments:

Post a Comment