Execution of e.g. dfi.export(dataframe, filename, table_conversion='matplotiib') currently fails with
raise FeatureNotFound(
bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?
This can obviously be addressed by installing lxml.
However since BeautifulSoup note that requested parsers should be installed manually, and this parser is explicitly requested as a hard-coded argument here, should lxml not be included as a stated dependency of this package?
Execution of e.g.
dfi.export(dataframe, filename, table_conversion='matplotiib')
currently fails withThis can obviously be addressed by installing
lxml
.However since BeautifulSoup note that requested parsers should be installed manually, and this parser is explicitly requested as a hard-coded argument here, should
lxml
not be included as a stated dependency of this package?