JSON memuat dari file python 3

import json

with open('file_to_load.json', 'r') as file:
  data = json.load(file)
The Nic