load
❮ dump Round trip ❯
examples/json/load.py
import json with open('data.json', 'r') as fh: data = json.load(fh) print(data)