python json object parsing code example
Example 1: get json from file python
import json
with open('data.txt') as json_file:
data = json.load(json_file)
for p in data['people']:
print('Name: ' + p['name'])
print('Website: ' + p['website'])
print('From: ' + p['from'])
print('')
Example 2: Json in python
{
"Icons":{
"app icon": "your icon.ico",
"eg icon": "eg.ico"
}
}