You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
201 B

import requests
urls = [
"https://habrahabr.ru/all/",
"https://pythondigest.ru/feed/"
]
for url in urls:
req_info = requests.get(url)
print(req_info.encoding)
print(req_info.text)