Użyj żądania GET Metoda HTML Strona 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