@pypi/beautifulsoup4
v4.6.1
Published
Beautiful Soup sits atop an HTML or XML parser, providing Pythonic idioms for iterating, searching, and modifying the parse tree.
Downloads
36
Readme
= Introduction =
from bs4 import BeautifulSoup soup = BeautifulSoup("SomebadHTML") print soup.prettify()
soup.i HTML
soup = BeautifulSoup("SomebadXML", "xml") print soup.prettify()