open url with python code example

Example 1: urllib python

#Used to make requests
import urllib.request

x = urllib.request.urlopen('https://www.google.com/')
print(x.read())

Example 2: python open a url

import webbrowser

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

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

Tags:

Html Example