how to loop through a json python code example
Example: loop through json array python
for restaurant in data['restaurants']:
print restaurant['restaurant']['name']
for restaurant in data['restaurants']:
print restaurant['restaurant']['name']