status-desktop/test/e2e/scripts/utils/parsers.py

14 lines
309 B
Python

from bs4 import BeautifulSoup
def remove_tags(html):
# parse html content
soup = BeautifulSoup(html, "html.parser")
for data in soup(['style', 'script']):
# Remove tags
data.decompose()
# return data by retrieving the tag content
return ' '.join(soup.stripped_strings)