Home
last modified time | relevance | path

Searched refs:BeautifulSoup (Results 1 – 12 of 12) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/bs4/tests/
H A Dtest_builder_registry.py6 from bs4 import BeautifulSoup
77 BeautifulSoup("", features="html")
79 BeautifulSoup("", features=["html", "fast"])
83 self.assertRaises(ValueError, BeautifulSoup,
H A Dtest_soup.py9 from bs4 import BeautifulSoup
58 v = s.startswith(BeautifulSoup.NO_PARSER_SPECIFIED_WARNING[:80])
387 soup = BeautifulSoup(doc, "html.parser")
H A Dtest_tree.py16 from bs4 import BeautifulSoup
694 xml_soup = BeautifulSoup("", "lxml-xml")
703 html_soup = BeautifulSoup("", "html.parser")
1316 self.assertEqual(loaded.__class__, BeautifulSoup)
1450 encoded = BeautifulSoup(doc, 'html.parser').encode()
1459 encoded = BeautifulSoup(doc, 'html.parser').encode()
1471 soup = BeautifulSoup("<html><body>foo</body></html>", 'html.parser')
1670 self.soup = BeautifulSoup(self.HTML, 'html.parser')
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A D__init__.py50 class BeautifulSoup(Tag): class
439 return prefix + super(BeautifulSoup, self).decode(
443 _s = BeautifulSoup
444 _soup = BeautifulSoup
446 class BeautifulStoneSoup(BeautifulSoup):
467 soup = BeautifulSoup(sys.stdin)
H A Ddiagnose.py9 from bs4 import BeautifulSoup, __version__
70 soup = BeautifulSoup(data, parser)
179 soup = BeautifulSoup(data, parser)
H A Dtesting.py9 from bs4 import BeautifulSoup
31 return BeautifulSoup(markup, builder=builder, **kwargs)
42 obj = BeautifulSoup(to_parse, builder=builder)
75 self.assertEqual(loaded.__class__, BeautifulSoup)
552 self.assertEqual(loaded.__class__, BeautifulSoup)
582 soup = BeautifulSoup(doc, "lxml-xml")
H A DNEWS.txt81 * The .previous_element of a BeautifulSoup object is now always None,
107 * The BeautifulSoup class is now aliased to "_s" and "_soup", making
171 insert_after() on the BeautifulSoup object itself. Patch by Aaron
322 class as a deprecated wrapper around BeautifulSoup.
453 * Added BeautifulSoup.new_string() to go along with BeautifulSoup.new_tag()
455 * BeautifulSoup.new_tag() will follow the rules of whatever
502 Previously you imported the BeautifulSoup class from a module also
503 called BeautifulSoup. To save keystrokes and make it clear which
506 >>> from bs4 import BeautifulSoup
897 The parser logic has been greatly improved, and the BeautifulSoup
[all …]
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-beautifulsoup4_4.12.3.bb2 HOMEPAGE = " https://www.crummy.com/software/BeautifulSoup/bs4"
/openbmc/openbmc/poky/meta/lib/oe/
H A Ddistro_check.py17 from bs4 import BeautifulSoup, SoupStrainer
19 soup = BeautifulSoup(create_socket(url,d), "html.parser", parse_only=SoupStrainer("a"))
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dwget.py29 from bs4 import BeautifulSoup
478 … soup = BeautifulSoup(self._fetch_index(url, ud, d), "html.parser", parse_only=SoupStrainer("a"))
527 …soup = BeautifulSoup(self._fetch_index(dirs_uri, ud, d), "html.parser", parse_only=SoupStrainer("a…
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/views/
H A Dtest_views.py30 from bs4 import BeautifulSoup
392 ret = BeautifulSoup(td, "html.parser").text
/openbmc/openbmc/poky/bitbake/lib/bs4/builder/
H A D_html5lib.py102 self.soup = BeautifulSoup("")