Using Python 3.4 and requests 2.11.1 package to get 'https://www.nfm.com' website, requests throws an SSLError [SSL: UNKNOWN_PROTOCOL]. I'm able to get a valid response from other https sites such as pythonanywhere.com and amazon.com. The error is only encountered trying to requests.get('https://www.nfm.com')
or requests.get('https://www.nfm.com', verify=False)
.
I checked NFM's certificate in Chrome and it's a valid thawte SHA256 SSL CA. Is this a problem with NFM or is there something I need to configure on my end to get a response object from this website?