arthurdejong / python-stdnum

A Python library to provide functions to handle, parse and validate standard numbers.
https://arthurdejong.org/python-stdnum/
GNU Lesser General Public License v2.1
498 stars 206 forks source link

This pull request is to fix a warning messages while using do/ncf.py #178

Closed manuelpgs closed 4 years ago

manuelpgs commented 4 years ago

Getting rid of the warning: No parser was explicitly specified, so I'…m using the best available HTML parser for this system ("lxml")

arthurdejong commented 4 years ago

The biggest problem with this is that I think the old version of BeatifulSoup does not support this option and will result in a failure. In de50109 I've just switched from BeatifulSoup to lxml directly for the HTML parsing which should get rid of this problem. Thanks for reporting this.