I have several thousand addresses to geocode at a time and am using geopy in a Django application to loop through a table which contains the addresses. I need fairly precise location coordinates and so "approximate" means an unsuccessful geocode for me.
According the the google API, this information is returned as "location_type." Bing uses confidence. I have searched the docs for both geopy and geocoder (along with Stack, etc) and can't find how to retrieve this information.
How do I return location accuracy using geopy?
Thank you for any assistance.