File json:
{"maps":[{"id":"blabla","iscategorical":"0"},{"id":"blabla","iscategorical":"0"}],
"masks":["id":"valore"],
"om_points":"value",
"parameters":["id":"valore"]
}
I write this script but it only print all the text.
json_data=open(file_directory).read()
data = json.loads(json_data)
pprint(data)
How can I parse the file and extract single values?
Thanks in advance.