I have started using python and I am writing a code to get http json response, from the json response i want to filter, select the keys / object and print it. I am able to get the json response in the below format
{'name': 'M985533026-14742', 'instanceAttributes': '{"orgName":"0a1e554f-2d27-4516-811e-1ed74b192cdf","sessionUri":"://us-virginia-1-12.vchs.vmware.com/api/compute/api/sessions","apiVersionUri":"://us-virginia-1-12.vchs.vmware.com/api/compute/api/versions"}', 'dashboardUrl': '://us-virginia-1-12.vchs.vmware.com/api/compute/compute/ui/index_dr.html?orgName=0a1e554f-2d27-4516-811e-1ed74b192cdf&serviceInstanceId=c2343357-9578-4c38-85c9-4450ce08cda3&servicePlan=67538ff0-f4c3-48cb-8a6f-b0a3ac5aa324', 'description': 'M985533026-14742', 'apiUrl': '://us-virginia-1-12.vchs.vmware.com/api/compute/api/org/c2343357-9578-4c38-85c9-4450ce08cda3', 'instanceVersion': '1.0', 'id': 'c2343357-9578-4c38-85c9-4450ce08cda3', 'link': [], 'serviceGroupId': '5a7e5ae7-a6bc-4226-a5b6-844e7dd8c88e', 'region': 'us-virginia-1-12.vchs.vmware.com', 'planId': 'region:us-virginia-1-12.vchs.vmware.com:planID:67538ff0-f4c3-48cb-8a6f-b0a3ac5aa324'}, {'name': 'Virtual Private Cloud OnDemand', 'instanceAttributes': '{"orgName":"0e95ddcd-f1d8-4950-aaab-01c2b713f61f","sessionUri":"://us-california-1-3.vchs.vmware.com/api/compute/api/sessions","apiVersionUri":"://us-california-1-3.vchs.vmware.com/api/compute/api/versions"}', 'dashboardUrl':
Now I need to filter only the region and the orgName, Please help me ?