Created
June 30, 2011 10:44
-
-
Save acrymble/1055995 to your computer and use it in GitHub Desktop.
Python open a webpage
This file contains hidden or 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
# open-webpage.py | |
import urllib2 | |
url = 'http://www.oldbaileyonline.org/print.jsp?div=t17800628-33' | |
response = urllib2.urlopen(url) | |
webContent = response.read() | |
print webContent[0:300] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment