My Python secure websocket client code giving me exception as follows:
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:748)
Finally I found a solution, I updated python client script while making connection to secure web socket url to ignore cert request as follows:
import ssl import websocket ws = websocket.WebSocket(sslopt={"cert_reqs": ssl.CERT_NONE}) ws.connect("wss://xxx.com:9090/websocket")