Answers for "load json file into object python"

1

python object to json file

data = {
  "your json": "has data!"
}

with open('data.txt', 'w') as outfile:
    json.dump(data, outfile)
Posted by: Guest on October-06-2021
6

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('')
Posted by: Guest on November-29-2019

Code answers related to "load json file into object python"

Python Answers by Framework

Browse Popular Code Answers by Language