Manipulating JSON

Prerequisites

# Import library
import json

JSON to Python Object

json.loads(json_string)

Python Object to JSON

json.dumps(obj)

JSON File to Python Object

json.load(file)

Python Object to JSON File

json.dump(obj)

Filed Under

json