JSON

Iterating over Dictionary Items

https://stackoverflow.com/questions/12353288/getting-values-from-json-using-python

https://stackoverflow.com/questions/34937884/retrieving-key-value-of-json-data-python

# Iterating over just keys
for key, value in data:
  print key

# Iterating over keys and values
for key, value in data.items():
  print key, value