main
Bob Mottram 2024-11-10 22:07:05 +00:00
parent 7784ba8d4b
commit 79e14e2f79
1 changed files with 2 additions and 1 deletions

View File

@ -223,7 +223,8 @@ def no_of_followers_on_domain(base_dir: str, handle: str,
def _clean_html(raw_html: str) -> str:
# text=BeautifulSoup(raw_html, 'html.parser').get_text()
"""Remove escape codes from html string
"""
text = raw_html
return html.unescape(text)