(Python 3.4.2) Would anyone be able to help me fetch https pages with urllib? I\'ve spent hours trying to figure this out.
Here\'s what I\'m trying to do (pretty bas
Double check your compilation options, looks like something is wrong with your box.
At least the following code works for me:
from urllib.request import urlopen resp = urlopen('https://github.com') print(resp.read())