Skip to content
Advertisement

Iterate and Parse Json with similar values in python

I have this code which iterates and parses data from a json API feed. I am trying to filter out just the Premier League games but some competitions have similar names like ‘Premier League 2 (Division 2)’ and ‘Premier League Cup’

JavaScript

the output for this code is below. As you can see the first 2 lines are similar competition names to ‘Premier League’. I tried to filter by the competition ID (second column) but integers seem to cause an issue using this method.

JavaScript

what would be the best way to filter these two competitions out of the output?

JavaScript

This is what the json looks like for the Premier League games:

JavaScript

this is the JSON for ‘Premier League 2 (Division 2)

JavaScript

and this is the JSON for “Premier League Cup’

JavaScript

Advertisement

Answer

Looks like you can update the conditional to filter on the groupId or group name

if event_data['path'][1]['name'] == 'England' and event_data['groupId'] == 1000094985 and 'MATCH' in event_data['tags']:

or

if event_data['path'][1]['name'] == 'England' and event_data['group'] == 'Premier League' and 'MATCH' in event_data['tags']:

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement