Hello Team,
I have a JSON attribute:
link: {"status": "OK", "results": [{"geometry": {"location_type": "RANGE_INTERPOLATED", "bounds": {"northeast": {"lat": -23.2186594, "lng": -45.9045073}, "southwest": {"lat": -23.2189106, "lng": -45.9060239}}, "viewport": {"northeast": {"lat": -23.2174360197085, "lng": -45.9039166197085}, "southwest": {"lat": -23.2201339802915, "lng": -45.9066145802915}}, "location": {"lat": -23.2186919, "lng": -45.9056747}}, "address_components": [{"long_name": "94-254", "types": ["street_number"], "short_name": "94-254"}, {"long_name": "Rua Benedito de Moura S\\u00e1", "types": ["route"], "short_name": "R. Benedito de Moura S\\u00e1"}, {"long_name": "Parque Residencial Aquarius", "types": ["sublocality_level_1", "sublocality", "political"], "short_name": "Parque Res. Aquarius"}]
My question: how can i formatte this attribute link with python?
I put the transformer JSONFlattener and works:
Thanks in Advance,