>>> import urllib.request
>>> #urllib.request.urlretrieve(url, filename=None, reporthook=None, data=None)
#Copy a network object denoted by a URL to a local file
>>> local_filename, headers = urllib.request.urlretrieve('http://python.org/')
>>> html = open(local_filename)
>>> html.close()
from urllib.request import urlopen
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
with urlopen("https://3.101.140.252") as response:
body = response.read()
body