mirror of
https://github.com/anatolykopyl/vk-bingo.git
synced 2026-03-26 12:54:25 +00:00
🎉 Скрипт находит фото вложения в файле
This commit is contained in:
7
archive/main.py
Normal file
7
archive/main.py
Normal 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)
|
||||||
Reference in New Issue
Block a user