Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
file = open(path_to_file, "r+") soup = BeautifulSoup(file, "lxml") links = soup.find_all("a") images = soup.find_all("img") file2 = open(path_to_file, "w+", encoding='utf-8') file2.write(soup.prettify()) file2.close()