Home | History | Annotate | Download | only in thirdparty

Lines Matching refs:BeautifulSoup

4 http://www.crummy.com/software/BeautifulSoup/
31 * BeautifulSoup, for parsing run-of-the-mill HTML code, be it valid
41 http://www.crummy.com/software/BeautifulSoup/documentation.html
1135 or when BeautifulSoup makes an assumption counter to what you were
1172 HTMLParser will process most bad HTML, and the BeautifulSoup
1447 class BeautifulSoup(BeautifulStoneSoup):
1490 of problems with the BeautifulSoup class. If BeautifulSoup is not
1604 class ICantBelieveItsBeautifulSoup(BeautifulSoup):
1606 """The BeautifulSoup class is oriented towards skipping over
1613 BeautifulSoup class will implicitly close the first b tag when it
1623 than to actually use nested 'b' tags, and the BeautifulSoup class
1626 it's valid HTML and BeautifulSoup screwed up by assuming it
1636 NESTABLE_TAGS = buildTagMap([], BeautifulSoup.NESTABLE_TAGS,
1640 class MinimalSoup(BeautifulSoup):
1648 or BeautifulSoup."""
1694 class RobustHTMLParser(BeautifulSoup):
1711 # (XML) and BeautifulSoup.start_meta (HTML).
1999 soup = BeautifulSoup(sys.stdin)