Python:JSON

From wiki
Revision as of 20:38, 9 June 2019 by Hdridder (talk | contribs)
Jump to navigation Jump to search
import json
Enable json functions. The json module is standard available (no installation needed)
json.load()
Return as dict.
import json
with open(filename) as fh:
    data = json.load(fh)

Below can be used on datatypes like lists and tuples too, not on sets.

json.dumps(dict, indent=4)
Convert a dict into a json string nicely formatted. Indent each level with 4 spaces.
json.dump(dict, fh, indent=4)
Dumps to the file opened on filehandle fh.