I have some JSON data below that I want to turn into a dictionary, now I know it can't simply be parsed into a dictionary with a simple method but I want to know where I would start if I wanted to do it like this?
So for example, lets say I wanted to create a dictionary something like this...
key=network.rcon.port, value=30001
key=network.rcon.allowed, value=127.0.0.1
key=network.rcon.ip_limit, value=5
From this
{
    "network": {
        "rcon": {
            "port": "30001",
            "allowed": "127.0.0.1",
            "limit": "100",
            "ip_limit": "5"
        },
        "sockets": {
            "port": "30000",
            "backlog": "500",
            "no_delay": "1"
        }
    },
    "game": {
        "players": {
            "limit": "10000",
            "ip_limit": "4"
        }
    }
}
 
     
    