you can probably do something like this, not elegant though 🙂 ... for r in response: # iterates through all the devices found print(r['serial']) ls = r['latencyStats'] bt = ls['backgroundTraffic'] print(bt['avg']) rd = bt['rawDistribution'] for rdi in ["0", "1", "2", "4", fill in the rest of the indices]: print(rd['rdi']) I've just typed this on the fly, obviously you'd want to format the printing properly
... View more