{
"_id": 4545,
"username": "testt",
"data": {
"passwords": [
{
"dataID": "175",
"username": "enc_data",
"password": "enc_data",
"any": "enc_data",
"any1": "enc_data",
"any3": "enc_data"
}
],
"fav_list": []
}
};
so I'm working on a project when I'll store the user encrypted data in a array inside of an object called 'data' so Ican have a nice organized data storing system but the problem here I can't really access the data from that nested object and I want to access the data with the 'dataID' and update it using the same id for each array object... I'm using python btw. thanks for reading.