Answers for "how to open a website from python"

15

how to open a website in python

import webbrowser
webbrowser.open('https://www.google.co.uk/')
Posted by: Guest on April-27-2020
1

python open website

import webbrowser
webbrowser.open('https://www.youtube.com/watch?v=QtBDL8EiNZo')
Posted by: Guest on July-11-2021
-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

Code answers related to "how to open a website from python"

Python Answers by Framework

Browse Popular Code Answers by Language