mirror of
https://github.com/anatolykopyl/vk-bingo.git
synced 2026-03-26 12:54:25 +00:00
8 lines
291 B
Python
8 lines
291 B
Python
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)
|