9951 explained code solutions for 126 technologies


pythonHow to parse JSON


import json
obj = json.loads(foo)ctrl + c
foo

example JSON string

obj

dictionary that will have JSON parsed and stored in it

json.loads

parse a json string and saves in python dictionary