I am using geopy.geocoder to get coordinates for a large number of locations. I didn't specify user_agent, I only put my email as a string as "user_agent = 'shuning@xxx.com' ". I successfully got results smoothly this way, but I am wondering what api services I am using.
My main code is here:
from geopy.geocoders import Nominatim
from geopy.exc import GeocoderTimedOut
geolocator = Nominatim(user_agent='shuning@xxx.com')
result = geolocator.geocode(location, timeout = 100)
Thanks a lot!