Miguel
0
Q:

python how to get html code from url

import requests

url = requests.get("http://google.com")
htmltext = url.text
5
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)
0

New to Communities?

Join the community