I have this List object and need to massage it a couple ways...
First I would like it to read without the {'attributes': at the front and the trailing }
Like this:
{'OBJECTID': 2, 'PERMITTEE': None, 'ROUTE': None, 'GLOBALID': '{8BF971DC-473B-4C88-8007-363EDAE7D091}', 'RELGLOBALID': '{F06AD758-9BBB-4096-942D-484F9F2B0435}', 'INSPECTOR_NAME': None, 'PERMIT_INTERNAL_ID': None}, 'geometry': {'x': -77.393420655, 'y': 37.615990732}Second I would like to be able to set the OBJECTID, PERMITID, ROUTE etc to variables...
Thoughts?
{'attributes': {'OBJECTID': 2, 'PERMITTEE': None, 'ROUTE': None, 'GLOBALID': '{8BF971DC-473B-4C88-8007-363EDAE7D091}', 'RELGLOBALID': '{F06AD758-9BBB-4096-942D-484F9F2B0435}', 'INSPECTOR_NAME': None, 'PERMIT_INTERNAL_ID': None}, 'geometry': {'x': -77.393420655, 'y': 37.615990732}}