Answers for "python read a web page"

-1

how to read a website in python

import urllib.request

try:
   with urllib.request.urlopen('http://www.python.org/') as f:
      print(f.read().decode('utf-8'))
except urllib.error.URLError as e:
   print(e.reason)
print('i thik this is how u do it')
Posted by: Guest on January-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language