def dict_get(datadict, keylist): ''' This gets the requested key by walking the datadict. ''' return reduce(getitem, keylist, datadict)