cara menyimpan string json ke json objek python

# how to load a string to json
import ast
jsonobj = ast.literal_eval(str(hdf))
Doubtful Dotterel