I have already installed certificates (used this advice from a different thread) .Here's the code and the result
from geopy.geocoders import ArcGIS
nom = ArcGIS()
location=nom.geocode("3995 23rd st, San Francisco, CA 94114",timeout=180)
print(location)
What's the problem? I am not getting results for longitude/latitude. how to get the results?
Please help.