Created
February 27, 2014 14:24
-
-
Save zeldani/9251035 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
import urllib2 | |
url = raw_input("Site: ") | |
usock = urllib2.urlopen(url) | |
data = usock.read() | |
usock.close() | |
print data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment