Add HTMLParser compatibility to recursive Matrix parser and remove old parser

This commit is contained in:
Tulir Asokan
2018-11-28 02:25:28 +02:00
parent 1994ce38eb
commit c39d24ccdc
8 changed files with 114 additions and 285 deletions
@@ -0,0 +1,4 @@
try:
from .html_reader_lxml import HTMLNode, read_html
except ImportError:
from .html_reader_htmlparser import HTMLNode, read_html