Adding a new element to a nested dictionary in python
I have a list nested dictionary that looks in the following way and I have an epoch timestamp stored as a variable. ts = 1653070640 [ { "HR": { "EKG": { "HR_EKG": 136.0 }, "PPG": { "HR_PPG_1": 135.0, "HR_PULSED": 135.0 } }, "NIBP": { "DBP": { "NIBPD": 25.0 }, "MBP": { "NIBPM": 53.0 }, "SBP":… Read More Adding a new element to a nested dictionary in python