I have a json that I need to import and then return a certain value. The json has two keys, like
{
"NUM_High_Objects": {
 "abseta_pt": {
            "field1:[0.0,0.9]": {
                "field2:[15,20]": {
                   
                    "tagIso": 0.00012,
                    "value": 0.99
                },
                 "field2:[20,25]": {
                   
                    "tagIso": 0.00035,
                    "value": 0.98
                }
            },
            "field1:[0.91,1.2]": {
                "field2:[15,20]": {
                   
                    "tagIso": 0.00013,
                    "value": 0.991
                },
                 "field2:[20,25]": {
                   
                    "tagIso": 0.00036,
                    "value": 0.975
                     }
            },
            "binning": [
                {
                    "binning": [
                        0.0,
                        0.9,
                        1.2,
                        2.1,
                        2.4
                    ],
                    "variable": "abseta"
                },
                {
                    "binning": [
                        15,
                        20,
                        25,
                        30,
                        40,
                        50,
                        60,
                        120
                    ],
                    "variable": "pt"
                }
            ]
        }
    },
What I need is to search if a pair of values is within the range of "field1" and "field2" and return the corresponding "value"
I tried following this Search nested json / dict for multiple key values matching specified keys but could not make it to work...
I ve tried something like
class checkJSON() :
    def __init__(self,filein) :
        self.good, self.bad  = 0, 0
        print 'inside json function : will use the JSON', filein
        input_file = open (filein)
        self.json_array = json.load(input_file)
    def checkJSON(self,LS,run) :
        try :
            LSlist = self.json_array[str(run)]
            for LSrange in LSlist :print LSrange, run
        except KeyError :
            pass
        self.bad += 1
        return False
CJ=''
CJ=checkJSON(filein='test.json')
isInJSON = CJ.checkJSON("0.5", "20")
print isInJSON
but this does not work as I am not sure how to loop inside the keys
 
    