This is my response to a get request for some json goodness. I'm getting this in Python, everything works up to here. I've been searching for json documentation and reading quite a bit but can't seam to find my answer.
How would I get all the email addresses?
{u'-InFSLzYdyg-OcTosYYs': {u'email': u'[email protected]', u'time': 1360707022892}, u'- InFYJya4K6tZa8YSzme': {u'email': u'[email protected]', u'time': 1360708587511}}
What I'd want is a list like so:
email = ['[email protected]', '[email protected]']
Thanks in advance.