Here's my code:
from urllib.request import urlopen
response = urllib.urlopen("http://www.google.com")
html = response.read()
print(html)
Any help?
|
Here's my code:
Any help? |
||||
|
As stated in the urllib2 documentation at http://docs.python.org/library/urllib2.html:
So you should instead be saying
Your current, now-edited code sample is incorrect because you are saying |
|||||||
|
|
The above didn't work for me in 3.3. Try this instead (YMMV, etc)
|
|||
|
|
urllib.urlopen("http://www.google.com/")instead of justurlopen("http://www.google.com/")– Eli Courtwright May 8 '10 at 15:50