Manipulating JSON

Prerequisites

1
2
# Import library
import json

JSON to Python Object

1
json.loads(json_string)

Python Object to JSON

1
json.dumps(obj)

JSON File to Python Object

1
json.load(file)

Python Object to JSON File

1
json.dump(obj)

Filed Under

JSON