Is there a good tutorial on parsing json attributes in python? I would like to be able to parse the true value for \"ok\" field. As well as the index named \"client_ind_1\". I d
import json dct = json.loads(my_json_str) is_ok = dct['ok'] client_index = dct['indices']['client_ind_2']['index']