Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

urllib request

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
Source by docs.python.org #
 
PREVIOUS NEXT
Tagged: #urllib #request
ADD COMMENT
Topic
Name
8+3 =