Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
urlopen error
#2
Pro tip: You can input traceback errors into error tags (just click the red cross in the reply text box) so users can see the error without clicking external links and immediately identify the most important part of the post.

I believe the only thing you're missing is to write 'get.read()' rather than just the 'get' in the print function.

So it should be
import urllib.request
url='http://python.org/'
get=urllib.request.urlopen(url)
print(get.read())
Hope that helps!
Reply


Messages In This Thread
urlopen error - by newmoon - Apr-17-2020, 09:34 PM
RE: urlopen error - by thirteendec - Apr-17-2020, 11:19 PM
RE: urlopen error - by Larz60+ - Apr-18-2020, 12:01 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  urllib.request.urlopen and proxy perseus142 0 1,954 May-29-2020, 08:46 AM
Last Post: perseus142

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020