Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
Source by stackabuse.com #
 
PREVIOUS NEXT
Tagged: #python #read #json #file
ADD COMMENT
Topic
Name
4+8 =