I have a tree structure, builded from a nested dictionary :
{
'test': {
'Data': {},
},
'Test': {
'data': {
'Other': {},
},
},
}
And I want transform it to :
{
'test': {
'data': {
'other': {},
},
},
}
Is there any way to perform this transformation in python ?
I insist : all value are dictionary.