Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #html #code #url
ADD COMMENT
Topic
Name
9+9 =