Get webpage contents with Python


Downloading Web Pages with Python
Python provides several ways to do just that in its standard library . Probably the most popular way to download a file is over HTTP using the urllib module . The urllib.request method is a Python module for fetching URLs. It offers a very simple interface, in the form of the urlopen function. This is capable of fetching URLs using a variety of different protocols. urllib.request.urlopen() , open the URL url, which can be either a string or a Request object. example
from urllib.request import urlopen html = urlopen("https://net-informations.com/about.htm") print(html.read())