Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Iterating Help
#1
Hello,

I've been working with some open API from ESPN located here:
https://statsapi.web.nhl.com/api/v1/game.../feed/live

as you can see, this is a pretty convoluted json file

I honestly do not know where to start as I have never worked with json files at this magnitude.

I have had a few attempts using this script here:

import urllib.request
import json

with urllib.request.urlopen("https://statsapi.web.nhl.com/api/v1/game/2021020748/feed/live") as url:
    live = json.loads(url.read().decode())
for type in live['liveData']['plays']:
    
though I don't know how to get from this point. I have tried by using another for loop

for type2 in type['allPlays'];
    print(type2)
Reply


Messages In This Thread
Iterating Help - by Joeylax54 - Jan-27-2022, 06:01 PM
RE: Iterating Help - by perfringo - Jan-28-2022, 11:22 AM
RE: Iterating Help - by Larz60+ - Jan-28-2022, 06:00 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020