self-signed

Python 3 urllib with self-signed certificates

Python 3 urllib with self-signed certificates Question: I’m attempting to download some data from an internal server using Python. Since it’s internal, it uses a self-signed certificate. (We don’t want to pay Verisign for servers that will never appear “in the wild.”) The Python 2.6 version of the code worked fine. response = urllib2.urlopen(URL) data …

Total answers: 4