Answers for "opening url in python"

0

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)
Posted by: Guest on August-18-2020
0

urllib urlretrieve python 3

#In Python 3.x, the urlretrieve function is located in the urllib.request module:
from urllib.request import urlretrieve
Posted by: Guest on June-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language