Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here's my code:

from urllib.request import urlopen

response = urllib.urlopen("http://www.google.com")
html = response.read()
print(html)

Any help?

share|improve this question
I see you edited your answer again, so I edited my answer again to respond: your current problem is that you're saying urllib.urlopen("http://www.google.com/") instead of just urlopen("http://www.google.com/") – Eli Courtwright May 8 '10 at 15:50

2 Answers

up vote 19 down vote accepted

As stated in the urllib2 documentation at http://docs.python.org/library/urllib2.html:

The urllib2 module has been split across several modules in Python 3.0 named urllib.request and urllib.error. The 2to3 tool will automatically adapt imports when converting your sources to 3

So you should instead be saying

from urllib.request import urlopen
html = urlopen("http://www.google.com/")
print(html)

Your current, now-edited code sample is incorrect because you are saying urllib.urlopen("http://www.google.com/") instead of just urlopen("http://www.google.com/").

share|improve this answer
Still getting an error, please see edit. Edit: Still getting an error when using from urllib.request – delete May 8 '10 at 2:01
1  
@Sergio: It's urllib.request and not urllib2.request. The urllib and urllib2 modules from Python 2.x have been combined into the urllib module in Python 3. – Eli Courtwright May 8 '10 at 2:05

The above didn't work for me in 3.3. Try this instead (YMMV, etc)

import urllib.request
url = "http://www.google.com/"
request = urllib.request.Request(url)
response = urllib.request.urlopen(request)
print (response.read().decode('utf-8'))
share|improve this answer
works perfectly! – BigOrangeSU Mar 24 at 1:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.