🎉 Скрипт находит фото вложения в файле

This commit is contained in:
2021-03-27 00:29:38 +03:00
parent a23700c14e
commit da5047d241

7
archive/main.py Normal file
View File

@@ -0,0 +1,7 @@
from bs4 import BeautifulSoup
soup = BeautifulSoup(open("messages/messages0.html"), "html.parser")
for attch_desc in soup.find_all('div', attrs={'class': 'attachment__description'}):
if (str(attch_desc.string) == "Фотография"):
print(attch_desc.find_next_sibling().string)