json file read in 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: open json file python

import json

with open('data.txt') as json_file:
    data = json.load(json_file)

Example 3: 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 4: read file json

with open('file.txt', 'r') as f:
	data = f.read()