MacOS High OSierra 10.13.6, Python3.7, GeocoderServiceError: [SSL: CERTIFICATE_VERIFY_FAILED]MacOS High Sierra 10.13.6, python3.7 installation Install Certificate.command results in SSLErrorHow to handle urllib's timeout in Python 3?How do I install pip on macOS or OS X?Paypal Urlopen sslv3 alert handshake failure (_ssl.c:590)?Python SSL Certification Problems in TensorflowURLError: <urlopen error [Errno 11001] getaddrinfo failed>,why?failing at downloading an image with “urllib.request.urlretrieve” in Pythonnltk.data.load('/…/…', format = 'raw') errorPython 3.7 - Download Image - Urllib.request.urlretrieve ErrorGaierror while importing pretrained vgg model on kaggleGetting [SSL: CERTIFICATE_VERIFY_FAILED] error when trying to run geocoder in geopy how can I verify the certificate to get needed output?

HackerRank Implement Queue using two stacks Solution

What is the most 'environmentally friendly' way to learn to fly?

Protect a 6 inch air hose from physical damage

Python π = 1 + (1/2) + (1/3) + (1/4) - (1/5) + (1/6) + (1/7) + (1/8) + (1/9) - (1/10) ...1748 Euler

Why is “deal 6 damage” a legit phrase?

What's the term for a group of people who enjoy literary works?

Why are sugars in whole fruits not digested the same way sugars in juice are?

How do people drown while wearing a life jacket?

Plotting Chebyshev polynomials using PolarPlot and FilledCurve

Has J.J.Jameson ever found out that Peter Parker is Spider-Man?

Partial Fractions: Why does this shortcut method work?

What is Albrecht Dürer's Perspective Machine drawing style?

Is there a general term for the items in a directory?

Can't understand an ACT practice problem: Triangle appears to be isosceles, why isn't the answer 7.3~ here?

How did Biff return to 2015 from 1955 without a lightning strike?

Is Sneak Attack damage halved on a successful Will save if a Wand of Cure Light Wounds is used to trigger the Sneak Attack?

Can the globes from multiple castings of the Otiluke's Freezing Sphere spell be stockpiled?

Overprovisioning SSD on ubuntu. How? Ubuntu 19.04 Samsung SSD 860

Move label of an angle in Tikz

How to add Binary Variable with condition in LP

How is Sword Coast North governed?

Why do we need a voltage divider when we get the same voltage at the output as the input?

Were there any unmanned expeditions to the moon that returned to Earth prior to Apollo?

Who's behind community AMIs on Amazon EC2?



MacOS High OSierra 10.13.6, Python3.7, GeocoderServiceError: [SSL: CERTIFICATE_VERIFY_FAILED]


MacOS High Sierra 10.13.6, python3.7 installation Install Certificate.command results in SSLErrorHow to handle urllib's timeout in Python 3?How do I install pip on macOS or OS X?Paypal Urlopen sslv3 alert handshake failure (_ssl.c:590)?Python SSL Certification Problems in TensorflowURLError: <urlopen error [Errno 11001] getaddrinfo failed>,why?failing at downloading an image with “urllib.request.urlretrieve” in Pythonnltk.data.load('/…/…', format = 'raw') errorPython 3.7 - Download Image - Urllib.request.urlretrieve ErrorGaierror while importing pretrained vgg model on kaggleGetting [SSL: CERTIFICATE_VERIFY_FAILED] error when trying to run geocoder in geopy how can I verify the certificate to get needed output?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I recently installed python 3.7 on macOS High OSierra and spent ages trying to get it working. That question is here. Currently I am having problems with the below code and wondered if anyone can help.



import geopy
geocoder = geopy.geocoders.GoogleV3(domain = "maps.google.co.uk")
geocoder.geocode("Cambridge", exactly_one = False)


Results in the following error:




SSLCertVerificationError Traceback (most recent call last)
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in do_open(self, http_class, req, **http_conn_args) 1316

h.request(req.get_method(), req.selector, req.data, headers,
-> 1317 encode_chunked=req.has_header('Transfer-encoding')) 1318

except OSError as err: # timeout error




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in request(self, method, url, body, headers, encode_chunked) 1228

"""Send a complete request to the server."""
-> 1229 self._send_request(method, url, body, headers, encode_chunked) 1230



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in _send_request(self, method, url, body, headers, encode_chunked)

1274 body = _encode(body, 'body')
-> 1275 self.endheaders(body, encode_chunked=encode_chunked) 1276



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in endheaders(self, message_body, encode_chunked) 1223

raise CannotSendHeader()
-> 1224 self._send_output(message_body, encode_chunked=encode_chunked) 1225



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in _send_output(self, message_body, encode_chunked) 1015

del self._buffer[:]
-> 1016 self.send(msg) 1017



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in send(self, data)
955 if self.auto_open:
--> 956 self.connect()
957 else:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in connect(self) 1391 self.sock =
self._context.wrap_socket(self.sock,
-> 1392 server_hostname=server_hostname) 1393




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in wrap_socket(self, sock, server_side, do_handshake_on_connect,
suppress_ragged_eofs, server_hostname, session)
411 context=self,
--> 412 session=session
413 )



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in _create(cls, sock, server_side, do_handshake_on_connect,
suppress_ragged_eofs, server_hostname, context, session)
849 raise ValueError("do_handshake_on_connect should not be specified for
non-blocking sockets")
--> 850 self.do_handshake()
851 except (OSError, ValueError):



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in do_handshake(self, block) 1107

self.settimeout(None)
-> 1108 self._sslobj.do_handshake() 1109 finally:




SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate
chain (_ssl.c:1045)





During handling of the above exception, another exception occurred:




URLError Traceback (most recent call last)
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/base.py
in _call_geocoder(self, url, timeout, raw, requester, deserializer,
**kwargs)
314 try:
--> 315 page = requester(req, timeout=timeout, **kwargs)
316 except Exception as error:




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in open(self, fullurl, data, timeout)
524
--> 525 response = self._open(req, data)
526



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in _open(self, req, data)
542 result = self._call_chain(self.handle_open, protocol, protocol +
--> 543 '_open', req)
544 if result:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in _call_chain(self, chain, kind, meth_name, *args)
502 func = getattr(handler, meth_name)
--> 503 result = func(*args)
504 if result is not None:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in https_open(self, req) 1359 return
self.do_open(http.client.HTTPSConnection, req,
-> 1360 context=self._context, check_hostname=self._check_hostname) 1361



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in do_open(self, http_class, req, **http_conn_args) 1318

except OSError as err: # timeout error
-> 1319 raise URLError(err) 1320 r = h.getresponse()




URLError:



During handling of the above exception, another exception occurred:



GeocoderServiceError Traceback (most recent call last)
in ()
----> 1 geocoder.geocode("Cambridge", exactly_one = False)



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/googlev3.py
in geocode(self, query, exactly_one, timeout, bounds, region,
components, language, sensor)
240 logger.debug("%s.geocode: %s", self.class.name, url)
241 return self._parse_json(
--> 242 self._call_geocoder(url, timeout=timeout), exactly_one
243 )
244



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/base.py
in _call_geocoder(self, url, timeout, raw, requester, deserializer,
**kwargs)
340 if "timed out" in message:
341 raise GeocoderTimedOut('Service timed out')
--> 342 raise GeocoderServiceError(message)
343
344 if hasattr(page, 'getcode'):



GeocoderServiceError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain
(_ssl.c:1045)











share|improve this question


























  • Are you behind some kind of proxy? Because "maps.google.co.uk" is certainly not using a self signed certificate and yet you get error message "certificate verify failed: self signed certificate in certificate chain"

    – Patrick Mevzek
    Sep 4 '18 at 23:15











  • I searched for how to check if I am behind a proxy => In Google Chrome browser go to advanced settings -> Network -> Proxies and check if any of the options are ticked. They were all unticked. Does this answer your question? Or, is there another way to find if I am behind some proxy? Thanks

    – az_aza
    Sep 4 '18 at 23:28












  • First check from your Python code to which IP addresses maps.google.co.uk does resolve, and if they are from Google really. Then your Python code may be using a proxy even if Chrome is not using one. Also did you try with any other name? Does the result change if you change the network to which your computer is attached to?

    – Patrick Mevzek
    Oct 2 '18 at 23:13

















0















I recently installed python 3.7 on macOS High OSierra and spent ages trying to get it working. That question is here. Currently I am having problems with the below code and wondered if anyone can help.



import geopy
geocoder = geopy.geocoders.GoogleV3(domain = "maps.google.co.uk")
geocoder.geocode("Cambridge", exactly_one = False)


Results in the following error:




SSLCertVerificationError Traceback (most recent call last)
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in do_open(self, http_class, req, **http_conn_args) 1316

h.request(req.get_method(), req.selector, req.data, headers,
-> 1317 encode_chunked=req.has_header('Transfer-encoding')) 1318

except OSError as err: # timeout error




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in request(self, method, url, body, headers, encode_chunked) 1228

"""Send a complete request to the server."""
-> 1229 self._send_request(method, url, body, headers, encode_chunked) 1230



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in _send_request(self, method, url, body, headers, encode_chunked)

1274 body = _encode(body, 'body')
-> 1275 self.endheaders(body, encode_chunked=encode_chunked) 1276



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in endheaders(self, message_body, encode_chunked) 1223

raise CannotSendHeader()
-> 1224 self._send_output(message_body, encode_chunked=encode_chunked) 1225



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in _send_output(self, message_body, encode_chunked) 1015

del self._buffer[:]
-> 1016 self.send(msg) 1017



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in send(self, data)
955 if self.auto_open:
--> 956 self.connect()
957 else:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in connect(self) 1391 self.sock =
self._context.wrap_socket(self.sock,
-> 1392 server_hostname=server_hostname) 1393




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in wrap_socket(self, sock, server_side, do_handshake_on_connect,
suppress_ragged_eofs, server_hostname, session)
411 context=self,
--> 412 session=session
413 )



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in _create(cls, sock, server_side, do_handshake_on_connect,
suppress_ragged_eofs, server_hostname, context, session)
849 raise ValueError("do_handshake_on_connect should not be specified for
non-blocking sockets")
--> 850 self.do_handshake()
851 except (OSError, ValueError):



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in do_handshake(self, block) 1107

self.settimeout(None)
-> 1108 self._sslobj.do_handshake() 1109 finally:




SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate
chain (_ssl.c:1045)





During handling of the above exception, another exception occurred:




URLError Traceback (most recent call last)
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/base.py
in _call_geocoder(self, url, timeout, raw, requester, deserializer,
**kwargs)
314 try:
--> 315 page = requester(req, timeout=timeout, **kwargs)
316 except Exception as error:




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in open(self, fullurl, data, timeout)
524
--> 525 response = self._open(req, data)
526



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in _open(self, req, data)
542 result = self._call_chain(self.handle_open, protocol, protocol +
--> 543 '_open', req)
544 if result:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in _call_chain(self, chain, kind, meth_name, *args)
502 func = getattr(handler, meth_name)
--> 503 result = func(*args)
504 if result is not None:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in https_open(self, req) 1359 return
self.do_open(http.client.HTTPSConnection, req,
-> 1360 context=self._context, check_hostname=self._check_hostname) 1361



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in do_open(self, http_class, req, **http_conn_args) 1318

except OSError as err: # timeout error
-> 1319 raise URLError(err) 1320 r = h.getresponse()




URLError:



During handling of the above exception, another exception occurred:



GeocoderServiceError Traceback (most recent call last)
in ()
----> 1 geocoder.geocode("Cambridge", exactly_one = False)



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/googlev3.py
in geocode(self, query, exactly_one, timeout, bounds, region,
components, language, sensor)
240 logger.debug("%s.geocode: %s", self.class.name, url)
241 return self._parse_json(
--> 242 self._call_geocoder(url, timeout=timeout), exactly_one
243 )
244



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/base.py
in _call_geocoder(self, url, timeout, raw, requester, deserializer,
**kwargs)
340 if "timed out" in message:
341 raise GeocoderTimedOut('Service timed out')
--> 342 raise GeocoderServiceError(message)
343
344 if hasattr(page, 'getcode'):



GeocoderServiceError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain
(_ssl.c:1045)











share|improve this question


























  • Are you behind some kind of proxy? Because "maps.google.co.uk" is certainly not using a self signed certificate and yet you get error message "certificate verify failed: self signed certificate in certificate chain"

    – Patrick Mevzek
    Sep 4 '18 at 23:15











  • I searched for how to check if I am behind a proxy => In Google Chrome browser go to advanced settings -> Network -> Proxies and check if any of the options are ticked. They were all unticked. Does this answer your question? Or, is there another way to find if I am behind some proxy? Thanks

    – az_aza
    Sep 4 '18 at 23:28












  • First check from your Python code to which IP addresses maps.google.co.uk does resolve, and if they are from Google really. Then your Python code may be using a proxy even if Chrome is not using one. Also did you try with any other name? Does the result change if you change the network to which your computer is attached to?

    – Patrick Mevzek
    Oct 2 '18 at 23:13













0












0








0








I recently installed python 3.7 on macOS High OSierra and spent ages trying to get it working. That question is here. Currently I am having problems with the below code and wondered if anyone can help.



import geopy
geocoder = geopy.geocoders.GoogleV3(domain = "maps.google.co.uk")
geocoder.geocode("Cambridge", exactly_one = False)


Results in the following error:




SSLCertVerificationError Traceback (most recent call last)
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in do_open(self, http_class, req, **http_conn_args) 1316

h.request(req.get_method(), req.selector, req.data, headers,
-> 1317 encode_chunked=req.has_header('Transfer-encoding')) 1318

except OSError as err: # timeout error




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in request(self, method, url, body, headers, encode_chunked) 1228

"""Send a complete request to the server."""
-> 1229 self._send_request(method, url, body, headers, encode_chunked) 1230



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in _send_request(self, method, url, body, headers, encode_chunked)

1274 body = _encode(body, 'body')
-> 1275 self.endheaders(body, encode_chunked=encode_chunked) 1276



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in endheaders(self, message_body, encode_chunked) 1223

raise CannotSendHeader()
-> 1224 self._send_output(message_body, encode_chunked=encode_chunked) 1225



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in _send_output(self, message_body, encode_chunked) 1015

del self._buffer[:]
-> 1016 self.send(msg) 1017



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in send(self, data)
955 if self.auto_open:
--> 956 self.connect()
957 else:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in connect(self) 1391 self.sock =
self._context.wrap_socket(self.sock,
-> 1392 server_hostname=server_hostname) 1393




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in wrap_socket(self, sock, server_side, do_handshake_on_connect,
suppress_ragged_eofs, server_hostname, session)
411 context=self,
--> 412 session=session
413 )



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in _create(cls, sock, server_side, do_handshake_on_connect,
suppress_ragged_eofs, server_hostname, context, session)
849 raise ValueError("do_handshake_on_connect should not be specified for
non-blocking sockets")
--> 850 self.do_handshake()
851 except (OSError, ValueError):



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in do_handshake(self, block) 1107

self.settimeout(None)
-> 1108 self._sslobj.do_handshake() 1109 finally:




SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate
chain (_ssl.c:1045)





During handling of the above exception, another exception occurred:




URLError Traceback (most recent call last)
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/base.py
in _call_geocoder(self, url, timeout, raw, requester, deserializer,
**kwargs)
314 try:
--> 315 page = requester(req, timeout=timeout, **kwargs)
316 except Exception as error:




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in open(self, fullurl, data, timeout)
524
--> 525 response = self._open(req, data)
526



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in _open(self, req, data)
542 result = self._call_chain(self.handle_open, protocol, protocol +
--> 543 '_open', req)
544 if result:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in _call_chain(self, chain, kind, meth_name, *args)
502 func = getattr(handler, meth_name)
--> 503 result = func(*args)
504 if result is not None:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in https_open(self, req) 1359 return
self.do_open(http.client.HTTPSConnection, req,
-> 1360 context=self._context, check_hostname=self._check_hostname) 1361



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in do_open(self, http_class, req, **http_conn_args) 1318

except OSError as err: # timeout error
-> 1319 raise URLError(err) 1320 r = h.getresponse()




URLError:



During handling of the above exception, another exception occurred:



GeocoderServiceError Traceback (most recent call last)
in ()
----> 1 geocoder.geocode("Cambridge", exactly_one = False)



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/googlev3.py
in geocode(self, query, exactly_one, timeout, bounds, region,
components, language, sensor)
240 logger.debug("%s.geocode: %s", self.class.name, url)
241 return self._parse_json(
--> 242 self._call_geocoder(url, timeout=timeout), exactly_one
243 )
244



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/base.py
in _call_geocoder(self, url, timeout, raw, requester, deserializer,
**kwargs)
340 if "timed out" in message:
341 raise GeocoderTimedOut('Service timed out')
--> 342 raise GeocoderServiceError(message)
343
344 if hasattr(page, 'getcode'):



GeocoderServiceError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain
(_ssl.c:1045)











share|improve this question
















I recently installed python 3.7 on macOS High OSierra and spent ages trying to get it working. That question is here. Currently I am having problems with the below code and wondered if anyone can help.



import geopy
geocoder = geopy.geocoders.GoogleV3(domain = "maps.google.co.uk")
geocoder.geocode("Cambridge", exactly_one = False)


Results in the following error:




SSLCertVerificationError Traceback (most recent call last)
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in do_open(self, http_class, req, **http_conn_args) 1316

h.request(req.get_method(), req.selector, req.data, headers,
-> 1317 encode_chunked=req.has_header('Transfer-encoding')) 1318

except OSError as err: # timeout error




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in request(self, method, url, body, headers, encode_chunked) 1228

"""Send a complete request to the server."""
-> 1229 self._send_request(method, url, body, headers, encode_chunked) 1230



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in _send_request(self, method, url, body, headers, encode_chunked)

1274 body = _encode(body, 'body')
-> 1275 self.endheaders(body, encode_chunked=encode_chunked) 1276



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in endheaders(self, message_body, encode_chunked) 1223

raise CannotSendHeader()
-> 1224 self._send_output(message_body, encode_chunked=encode_chunked) 1225



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in _send_output(self, message_body, encode_chunked) 1015

del self._buffer[:]
-> 1016 self.send(msg) 1017



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in send(self, data)
955 if self.auto_open:
--> 956 self.connect()
957 else:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py
in connect(self) 1391 self.sock =
self._context.wrap_socket(self.sock,
-> 1392 server_hostname=server_hostname) 1393




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in wrap_socket(self, sock, server_side, do_handshake_on_connect,
suppress_ragged_eofs, server_hostname, session)
411 context=self,
--> 412 session=session
413 )



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in _create(cls, sock, server_side, do_handshake_on_connect,
suppress_ragged_eofs, server_hostname, context, session)
849 raise ValueError("do_handshake_on_connect should not be specified for
non-blocking sockets")
--> 850 self.do_handshake()
851 except (OSError, ValueError):



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py
in do_handshake(self, block) 1107

self.settimeout(None)
-> 1108 self._sslobj.do_handshake() 1109 finally:




SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate
chain (_ssl.c:1045)





During handling of the above exception, another exception occurred:




URLError Traceback (most recent call last)
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/base.py
in _call_geocoder(self, url, timeout, raw, requester, deserializer,
**kwargs)
314 try:
--> 315 page = requester(req, timeout=timeout, **kwargs)
316 except Exception as error:




/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in open(self, fullurl, data, timeout)
524
--> 525 response = self._open(req, data)
526



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in _open(self, req, data)
542 result = self._call_chain(self.handle_open, protocol, protocol +
--> 543 '_open', req)
544 if result:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in _call_chain(self, chain, kind, meth_name, *args)
502 func = getattr(handler, meth_name)
--> 503 result = func(*args)
504 if result is not None:



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in https_open(self, req) 1359 return
self.do_open(http.client.HTTPSConnection, req,
-> 1360 context=self._context, check_hostname=self._check_hostname) 1361



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py
in do_open(self, http_class, req, **http_conn_args) 1318

except OSError as err: # timeout error
-> 1319 raise URLError(err) 1320 r = h.getresponse()




URLError:



During handling of the above exception, another exception occurred:



GeocoderServiceError Traceback (most recent call last)
in ()
----> 1 geocoder.geocode("Cambridge", exactly_one = False)



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/googlev3.py
in geocode(self, query, exactly_one, timeout, bounds, region,
components, language, sensor)
240 logger.debug("%s.geocode: %s", self.class.name, url)
241 return self._parse_json(
--> 242 self._call_geocoder(url, timeout=timeout), exactly_one
243 )
244



/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/geopy/geocoders/base.py
in _call_geocoder(self, url, timeout, raw, requester, deserializer,
**kwargs)
340 if "timed out" in message:
341 raise GeocoderTimedOut('Service timed out')
--> 342 raise GeocoderServiceError(message)
343
344 if hasattr(page, 'getcode'):



GeocoderServiceError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain
(_ssl.c:1045)








python python-3.x ssl geopy






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Sep 5 '18 at 7:51









curveball

2,89411 gold badges24 silver badges32 bronze badges




2,89411 gold badges24 silver badges32 bronze badges










asked Sep 4 '18 at 22:45









az_azaaz_aza

263 bronze badges




263 bronze badges















  • Are you behind some kind of proxy? Because "maps.google.co.uk" is certainly not using a self signed certificate and yet you get error message "certificate verify failed: self signed certificate in certificate chain"

    – Patrick Mevzek
    Sep 4 '18 at 23:15











  • I searched for how to check if I am behind a proxy => In Google Chrome browser go to advanced settings -> Network -> Proxies and check if any of the options are ticked. They were all unticked. Does this answer your question? Or, is there another way to find if I am behind some proxy? Thanks

    – az_aza
    Sep 4 '18 at 23:28












  • First check from your Python code to which IP addresses maps.google.co.uk does resolve, and if they are from Google really. Then your Python code may be using a proxy even if Chrome is not using one. Also did you try with any other name? Does the result change if you change the network to which your computer is attached to?

    – Patrick Mevzek
    Oct 2 '18 at 23:13

















  • Are you behind some kind of proxy? Because "maps.google.co.uk" is certainly not using a self signed certificate and yet you get error message "certificate verify failed: self signed certificate in certificate chain"

    – Patrick Mevzek
    Sep 4 '18 at 23:15











  • I searched for how to check if I am behind a proxy => In Google Chrome browser go to advanced settings -> Network -> Proxies and check if any of the options are ticked. They were all unticked. Does this answer your question? Or, is there another way to find if I am behind some proxy? Thanks

    – az_aza
    Sep 4 '18 at 23:28












  • First check from your Python code to which IP addresses maps.google.co.uk does resolve, and if they are from Google really. Then your Python code may be using a proxy even if Chrome is not using one. Also did you try with any other name? Does the result change if you change the network to which your computer is attached to?

    – Patrick Mevzek
    Oct 2 '18 at 23:13
















Are you behind some kind of proxy? Because "maps.google.co.uk" is certainly not using a self signed certificate and yet you get error message "certificate verify failed: self signed certificate in certificate chain"

– Patrick Mevzek
Sep 4 '18 at 23:15





Are you behind some kind of proxy? Because "maps.google.co.uk" is certainly not using a self signed certificate and yet you get error message "certificate verify failed: self signed certificate in certificate chain"

– Patrick Mevzek
Sep 4 '18 at 23:15













I searched for how to check if I am behind a proxy => In Google Chrome browser go to advanced settings -> Network -> Proxies and check if any of the options are ticked. They were all unticked. Does this answer your question? Or, is there another way to find if I am behind some proxy? Thanks

– az_aza
Sep 4 '18 at 23:28






I searched for how to check if I am behind a proxy => In Google Chrome browser go to advanced settings -> Network -> Proxies and check if any of the options are ticked. They were all unticked. Does this answer your question? Or, is there another way to find if I am behind some proxy? Thanks

– az_aza
Sep 4 '18 at 23:28














First check from your Python code to which IP addresses maps.google.co.uk does resolve, and if they are from Google really. Then your Python code may be using a proxy even if Chrome is not using one. Also did you try with any other name? Does the result change if you change the network to which your computer is attached to?

– Patrick Mevzek
Oct 2 '18 at 23:13





First check from your Python code to which IP addresses maps.google.co.uk does resolve, and if they are from Google really. Then your Python code may be using a proxy even if Chrome is not using one. Also did you try with any other name? Does the result change if you change the network to which your computer is attached to?

– Patrick Mevzek
Oct 2 '18 at 23:13












1 Answer
1






active

oldest

votes


















0














Take a look at the following link: here



I was able to get it working by running the second command on that page:



open /Applications/Python 3.7/Install Certificates.command






share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52174880%2fmacos-high-osierra-10-13-6-python3-7-geocoderserviceerror-ssl-certificate-v%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Take a look at the following link: here



    I was able to get it working by running the second command on that page:



    open /Applications/Python 3.7/Install Certificates.command






    share|improve this answer





























      0














      Take a look at the following link: here



      I was able to get it working by running the second command on that page:



      open /Applications/Python 3.7/Install Certificates.command






      share|improve this answer



























        0












        0








        0







        Take a look at the following link: here



        I was able to get it working by running the second command on that page:



        open /Applications/Python 3.7/Install Certificates.command






        share|improve this answer













        Take a look at the following link: here



        I was able to get it working by running the second command on that page:



        open /Applications/Python 3.7/Install Certificates.command







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 27 at 0:24









        Tim StahlTim Stahl

        1




        1





















            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52174880%2fmacos-high-osierra-10-13-6-python3-7-geocoderserviceerror-ssl-certificate-v%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript