open website from python code example

Example 1: how to open a website in python

import webbrowser
webbrowser.open('https://www.google.co.uk/')

Example 2: python open link in browser

import webbrowser

webbrowser.open_new('http://www.facebook.com')

Example 3: 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')

Tags:

Html Example