I want to get "path" from the below json file; I used json.load to get read json file and then parse one by one using for key, value in data.items() and it leads to lot of for loop (Say 6 loops) to get to the value of "path"; Is there any simple method to retrieve the value of path?
The complete json file can be found here and below is the snippet of it.
{
"products": {
    "com.ubuntu.juju:12.04:amd64": {
        "version": "2.0.1",
        "arch": "amd64",
        "versions": {
            "20161129": {
                "items": {
                    "2.0.1-precise-amd64": {
                        "release": "precise",
                        "version": "2.0.1",
                        "arch": "amd64",
                        "size": 23525972,
                        "path": "released/juju-2.0.1-precise-amd64.tgz",
                        "ftype": "tar.gz",
                        "sha256": "f548ac7b2a81d15f066674365657d3681e3d46bf797263c02e883335d24b5cda"
                    }
                }
            }
        }
    },
    "com.ubuntu.juju:14.04:amd64": {
        "version": "2.0.1",
        "arch": "amd64",
        "versions": {
            "20161129": {
                "items": {
                    "2.0.1-trusty-amd64": {
                        "release": "trusty",
                        "version": "2.0.1",
                        "arch": "amd64",
                        "size": 23526508,
                        "path": "released/juju-2.0.1-trusty-amd64.tgz",
                        "ftype": "tar.gz",
                        "sha256": "7b86875234477e7a59813bc2076a7c1b5f1d693b8e1f2691cca6643a2b0dc0a2"
                    }
                }
            }
        }
    },
 
     
     
     
     
     
     
    