remove html tags using python code example
Example 1: remove html tags from string python
import re
def cleanhtml(raw_html):
cleanr = re.compile('<.*?>')
cleantext = re.sub(cleanr, '', raw_html)
return cleantext
Example 2: python remove html tags
from bs4 import BeautifulSoup
cleantext = BeautifulSoup(raw_html, "lxml").text