16 lines
314 B
Python
16 lines
314 B
Python
from lxml import etree
|
|
|
|
|
|
def check_html(html):
|
|
'''
|
|
Check whether the passed in html string can be parsed by lxml.
|
|
Return bool success.
|
|
'''
|
|
parser = etree.HTMLParser()
|
|
try:
|
|
etree.fromstring(html, parser)
|
|
return True
|
|
except Exception as err:
|
|
pass
|
|
return False
|