Lab 16 BeautifulSoup

>>> soup = BeautifulSoup(doc, ' html.parser' ) Including the HTML parser is optional, but you will get a warning if none is included. If that’s the case, BeautifulSoup uses the HTML parser included in Python’s standard library. Although other parsers are permitted, we have no need for them in our examples. ................
................