I am trying to run a twisted script that uses SSL on Windows 7 32bit (Python 2.7.8). The script works without errors in OSX. I installed pyOpenSSL via pip as well as OpenSSL for Windows, but when I run the application I get:
ERROR [Failure instance: Traceback (failure with no frames): <class 'twisted.web
._newclient.ResponseNeverReceived'>: [<twisted.python.failure.Failure <class 'Op
enSSL.SSL.Error'>>]
]
The windows "from OpenSSL import SSL"work fine. I was looking for a solution without success. Is there any special configuration that needs to be done to get SSL to work with curled under windows? Thanks
source
share