Utiliser Get Method Demande HTML Page Python
# use requests.get() method with the provided static_url
# assign the response to a object
r = requests.get(url = "https://www.some_site.com")
NotACoder