Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
response = requests.get('https://www.cherkasyoblenergo.com/', cookies=cookies, headers=headers) soup = BS(response.text,"lxml") with open("index.html","wb") as file: file.write(response.content)
with open("index.html","w") as file: file.write(response.text)