[Answer]-Django BeautifulSoup FeatureNotFound

1👍

It is quite clear from the error information that Python cannot find an HTML parser, which is required for the bs to work. BeautifulSoup supports a number of parsers such as the HTML parser in Python’s standard library. From the code you’ve provided I cannot see why a parser was not found. Sometimes it’s because the version of bs does not match the version of Python you’re using. Please see this site http://www.crummy.com/software/BeautifulSoup/bs4/doc/#installing-beautiful-soup for more information.

👤Zlol

Leave a comment