I am currently trying to start working with geopy but I just can't get through a certification error:
from geopy.geocoders import Nominatim
geolocator = Nominatim(user_agent="autenticador")
full_address = 'AVENIDA EDSON RAMALHO, 122, 58030100, JOAO PESSOA'
location = geolocator.geocode(full_address)
location
error message>
GeocoderUnavailable: HTTPSConnectionPool(host='nominatim.openstreetmap.org', port=443): Max retries exceeded with url: /search?q=AVENIDA+EDSON+RAMALHO%2C+122%2C+58030100%2C+JOAO+PESSOA&format=json&limit=1 (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1129)')))
How am I supposed to fix this?