python obtenir html de l'URL
import requests
url = requests.get("http://google.com")
htmltext = url.text
Doubtful Dingo
import requests
url = requests.get("http://google.com")
htmltext = url.text
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)