Logo

Programming-Idioms

History of Idiom 91 > diff from v7 to v8

Edit summary for version 8 by :

Version 7

2015-10-29, 14:05:17

Version 8

2015-10-31, 15:53:15

Idiom #91 Load JSON file into struct

Read from file data.json and write its content into object x.
Assume the JSON data is suitable for the type of x.

Idiom #91 Load JSON file into struct

Read from file data.json and write its content into object x.
Assume the JSON data is suitable for the type of x.

Imports
import json
Code
with open("data.json", "r") as input:
    x = json.load(input)
Doc URL
https://docs.python.org/3/library/json.html#json.load