Much easiest way is use straight requests and text it.
terminal >> pip install requests
URL_link = "HTTP link"
response = requests.get(URL_link)
print(response.text) #output it to see HTML codes in python output