I am new to the JSON python lib.
I have this JSON file:
{
"usrdata": [
{
"user": "---/ LandiPlayz \\---#****",
"money": 10
},
{
"user": "Snubz#****",
"money": 10
}
]
}
and I need to modify the "money" field of one of the users. There will be more added users, so I need to find which one it is by finding the users name. Is that possible, or should I do format the file differently.
Thanks in advance