# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= python-beautifulsoup4 VERSION= 4.13.5 KEYWORDS= python VARIANTS= v12 v13 SDESC[v12]= Screen-scraping library (3.12) SDESC[v13]= Screen-scraping library (3.13) HOMEPAGE= https://www.crummy.com/software/BeautifulSoup/bs4/ CONTACT= Python_Automaton[python@ironwolf.systems] DOWNLOAD_GROUPS= main SITES[main]= PYPIWHL/04/eb/f4151e0c7377a6e08a38108609ba5cede57986802757848688aeedd1b9e8 DISTFILE[1]= beautifulsoup4-4.13.5-py3-none-any.whl:main DIST_SUBDIR= python-src DF_INDEX= 1 SPKGS[v12]= single SPKGS[v13]= single OPTIONS_AVAILABLE= PY312 PY313 OPTIONS_STANDARD= none VOPTS[v12]= PY312=ON PY313=OFF VOPTS[v13]= PY312=OFF PY313=ON DISTNAME= beautifulsoup4-4.13.5.dist-info GENERATED= yes [PY312].RUN_DEPENDS_ON= python-soupsieve:single:v12 python-typing-extensions:single:v12 [PY312].USES_ON= python:v12,wheel [PY313].RUN_DEPENDS_ON= python-soupsieve:single:v13 python-typing-extensions:single:v13 [PY313].USES_ON= python:v13,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("