RJ

Results 1 comments of RJ

@slazarov The SSL issue for python2.7 could be fixed by passing sslopt parameter with ssl.CERT_NONE. > self.ws = create_connection(ws_url, > header=self.__get_headers(), > cookie=self.__get_cookie_str(), > sslopt={"cert_reqs": ssl.CERT_NONE}, > enable_multithread=True) You can...