open url 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 url in incognito

import webbrowser

url = 'www.google.com'
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s --incognito'

webbrowser.get(chrome_path).open_new(url)

Example 3: python open a url

import webbrowser

webbrowser.open('http://example.com')  # Go to example.com

Example 4: python how to get html code from url

import urllib.request		#pip install concat("urllib", number of current version)

my_request = urllib.request.urlopen("INSERT URL HERE")

my_HTML = my_request.read().decode("utf8")

print(my_HTML)

Example 5: with urllib.request.urlopen("https://

import urllib.request

req = urllib.request.Request('http://www.voidspace.org.uk')
with urllib.request.urlopen(req) as response:
   the_page = response.read()

Example 6: urllib urlretrieve python 3

#In Python 3.x, the urlretrieve function is located in the urllib.request module:
from urllib.request import urlretrieve