# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= python-beautifulsoup4 VERSION= 4.14.2 KEYWORDS= python VARIANTS= v13 v14 SDESC[v13]= Screen-scraping library (3.13) SDESC[v14]= Screen-scraping library (3.14) HOMEPAGE= https://www.crummy.com/software/BeautifulSoup/bs4/ CONTACT= Python_Automaton[python@ironwolf.systems] DOWNLOAD_GROUPS= main SITES[main]= PYPIWHL/94/fe/3aed5d0be4d404d12d36ab97e2f1791424d9ca39c2f754a6285d59a3b01d DISTFILE[1]= beautifulsoup4-4.14.2-py3-none-any.whl:main DIST_SUBDIR= python-src DF_INDEX= 1 SPKGS[v13]= single SPKGS[v14]= single OPTIONS_AVAILABLE= PY313 PY314 OPTIONS_STANDARD= none VOPTS[v13]= PY313=ON PY314=OFF VOPTS[v14]= PY313=OFF PY314=ON DISTNAME= beautifulsoup4-4.14.2.dist-info GENERATED= yes [PY313].RUN_DEPENDS_ON= python-soupsieve:single:v13 python-typing-extensions:single:v13 [PY313].USES_ON= python:v13,wheel [PY314].RUN_DEPENDS_ON= python-soupsieve:single:v14 python-typing-extensions:single:v14 [PY314].USES_ON= python:v14,wheel [FILE:1891:descriptions/desc.single] Beautiful Soup is a library that makes it easy to scrape information from web pages. It sits atop an HTML or XML parser, providing Pythonic idioms for iterating, searching, and modifying the parse tree. # Quick start ``` >>> from bs4 import BeautifulSoup >>> soup = BeautifulSoup("
SomebadHTML") >>> print(soup.prettify())
Some bad HTML
>>> soup.find(string="bad") 'bad' >>> soup.i HTML # >>> soup = BeautifulSoup("