reading json data python code example
Example 1: python read json
import json
with open('path_to_file/person.json') as f:
data = json.load(f)
Example 2: python read json file
import json
varRaw ='''
{
"from":{
"max" : "xx:xx:xx:xx:xx:xx",
"ip" : "192.168.0.20"
},
"data":{
"id":"value",
"id": "value",
"id": "value"
}
}
'''
#string to json
varJson = json.loads(varRaw)
#get values from json
print(varJson['from'])
#output wil be: {'max': 'xx:xx:xx:xx:xx:xx', 'ip': '192.168.0.20'}
print(varJson['from']['ip'])
#output wil be: 192.168.0.20