I have two files to compare and insert into second file missing key_value or update existing key with new value. the problem for me is that first file has dots to separate keys:
{"a.b.c":0}
second file looks like:
{"a":{"b":{"c":0}}}
I wrote code that works for me but I hate it, especially ff_function. I think it should be done using recursive function- don't know how to :(
>>> def ff(k, d, i, v):
... if i == len(k)-1:
... last_value = v
... else:
... last_value = {}
... if i == 0:
... d[k[0]] = last_value
... elif i == 1:
... d[k[0]][k[1]] = last_value
... elif i == 2:
... d[k[0]][k[1]][k[2]] = last_value
... elif i == 3:
... d[k[0]][k[1]][k[2]][k[3]] = last_value
... elif i == 4:
... d[k[0]][k[1]][k[2]][k[3]][k[4]] = last_value
... elif i == 5:
... d[k[0]][k[1]][k[2]][k[3]][k[4]][k[5]] = last_value
... return d
...
>>>
>>>
>>> def f(k, v):
... td = {}
... keys = k.split('.')
... for i in range(len(keys)):
... td = ff(keys, td, i, v)
... return td
...
>>>
>>> f('a.b.c.d', ['some', 'values', 'here'])
{'a': {'b': {'c': {'d': ['some', 'values', 'here']}}}}
>>> f('a', 0)
{'a': 0}
I recently had to deal with something similar. This is what I came up with:
You can get your desired nested dict by calling:
You can invert this with to_flat_dict:
Your mileage may vary!