Created
May 23, 2017 22:57
-
-
Save jldugger/7aab2b9d6091fb39f278d9ab6a097184 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
import urllib | |
works = 'http://osuosl.org' | |
broken = 'https://osuosl.org' | |
urllib.urlopen(works) | |
print 'HTTP works' | |
urllib.urlopen(broken) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment