Im trying simple queries like this (which come in geopy documentation:
from geopy.geocoders import Nominatim
geolocator = Nominatim(user_agent='testing')
location = geolocator.geocode("175 5th Avenue NYC")
print(location.raw)
but I get this error:
GeocoderServiceError: [SSL: CERTIFICATE_VERIFY_FAILED]
certificate verify failed: unable to get local issuer certificate (_ssl.c:1108)
Does anybody knows how to fix it and make it run?
I have python 3.8 on Jupyter Notebook