I\'m using Python to parse through some JSON data for specific values. Specifically I want to pull the following:
print(fields['events'][0]['public'])
fields['events'] is a list so you need to use ['events'][0] to access the dict inside the list.
fields['events']
['events'][0]