SSL certificate verify failed
See original GitHub issueI used a subset of the small example script that you provided in the README.md. But when executing (env variables are set properly), I get the following error:
Traceback (most recent call last):
File "bin/test.py", line 19, in <module>
manager.start()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/meross_iot/manager.py", line 45, in start
self._cloud_client.connect()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/meross_iot/cloud/client.py", line 167, in connect
self._mqtt_client.connect(self._domain, self._port, keepalive=30)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/paho/mqtt/client.py", line 839, in connect
return self.reconnect()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/paho/mqtt/client.py", line 994, in reconnect
sock.do_handshake()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/ssl.py", line 1061, in do_handshake
self._sslobj.do_handshake()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/ssl.py", line 683, in do_handshake
self._sslobj.do_handshake()
ssl.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749)
Any ideas?
My script:
#!/usr/bin/env python3.6
from meross_iot.manager import MerossManager
from meross_iot.meross_event import MerossEventType
from meross_iot.cloud.devices.light_bulbs import GenericBulb
from meross_iot.cloud.devices.power_plugs import GenericPlug
from meross_iot.cloud.devices.door_openers import GenericGarageDoorOpener
import time
import os
EMAIL = os.environ.get('MEROSS_EMAIL') or "YOUR_MEROSS_CLOUD_EMAIL"
PASSWORD = os.environ.get('MEROSS_PASSWORD') or "YOUR_MEROSS_CLOUD_PASSWORD"
if __name__=='__main__':
# Initiates the Meross Cloud Manager. This is in charge of handling the communication with the remote endpoint
manager = MerossManager(meross_email=EMAIL, meross_password=PASSWORD)
# Starts the manager
manager.start()
# You can retrieve the device you are looking for in various ways:
# By kind
bulbs = manager.get_devices_by_kind(GenericBulb)
plugs = manager.get_devices_by_kind(GenericPlug)
door_openers = manager.get_devices_by_kind(GenericGarageDoorOpener)
all_devices = manager.get_supported_devices()
# Print some basic specs about the discovered devices
print("All the bulbs I found:")
for b in bulbs:
print(b)
print("All the plugs I found:")
for p in plugs:
print(p)
print("All the garage openers I found:")
for g in door_openers:
print(g)
print("All the supported devices I found:")
for d in all_devices:
print(d)
# At this point, we are all done playing with the library, so we gracefully disconnect and clean resources.
print("We are done playing. Cleaning resources...")
manager.stop()
print("Bye bye!")
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
python - urllib and "SSL: CERTIFICATE_VERIFY_FAILED" Error
If you have installed Python 3.6 on OSX and are getting the "SSL: CERTIFICATE_VERIFY_FAILED" error when trying to connect to an https:// site,...
Read more >What is an SSL 'Certificate_Verify_Failed' Error and How Do I ...
SSL certificate_verify_failed errors typically occur as a result of outdated Python default certificates or invalid root certificates. If you're a website owner ...
Read more >4 Ways to fix SSL: CERTIFICATE_VERIFY_FAILED in Python
SSL certificate_verify_failed errors typically occur as a result of outdated Python default certificates or invalid root certificates. We will cover how to ...
Read more >A Simple Explanation of SSL Certificate Errors & How to Fix ...
An SSL certificate error occurs when a web browser can't verify the SSL certificate installed on a site. Rather than connect users to...
Read more >PIP connection Error : SSL CERTIFICATE VERIFY FAILED
The most common issue in installing python package in a company's network is failure of verification of SSL Certificate. Sometimes company blocks some ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I have also bumped into this problem, and have found out that it was because for python 3.6 or 3.7 on OSX requires a post install of certificates. The solution is from here https://stackoverflow.com/questions/27835619/urllib-and-ssl-certificate-verify-failed-error For 3.6 run this command in terminal
/Applications/Python\ 3.6/Install\ Certificates.command
I’m running on Python 3.9 and encountered the same issue. The command can be modified to: /Applications/Python\ 3.9/Install\ Certificates.command And this resolves the issue.