package documentation

Beautiful Soup Elixir and Tonic - "The Screen-Scraper's Friend". http://www.crummy.com/software/BeautifulSoup/ Beautiful Soup uses a pluggable XML or HTML parser to parse a (possibly invalid) document into a tree representation. Beautiful Soup provides methods and Pythonic idioms that make it easy to navigate, search, and modify the parse tree. Beautiful Soup works with Python 3.6 and up. It works better if lxml and/or html5lib is installed. For more than you ever wanted to know about Beautiful Soup, see the documentation: http://www.crummy.com/software/BeautifulSoup/bs4/doc/

Package builder No package docstring; 0/2 variable, 0/6 constant, 1/1 function, 2/2 exceptions, 5/5 classes, 1/3 module documented
Module dammit Beautiful Soup bonus library: Unicode, Dammit
Module diagnose Diagnostic functions, mainly for use when doing tech support.
Module element No module docstring; 0/3 variable, 0/2 constant, 1/1 function, 21/21 classes documented
Module formatter No module docstring; 3/3 classes documented
Package tests Helper classes for tests.

From __init__.py:

Class BeautifulSoup A data structure representing a parsed HTML or XML document.
Class BeautifulStoneSoup Deprecated interface to an XML parser.
Exception FeatureNotFound Exception raised by the BeautifulSoup constructor if no parser with the requested features is found.
Exception GuessedAtParserWarning The warning issued when BeautifulSoup has to guess what parser to use -- probably because no parser was specified in the constructor.
Exception MarkupResemblesLocatorWarning The warning issued when BeautifulSoup is given 'markup' that actually looks like a resource locator -- a URL or a path to a file on disk.
Exception StopParsing Exception raised by a TreeBuilder if it's unable to continue parsing.
Variable __author__ Undocumented
Variable __copyright__ Undocumented
Variable __license__ Undocumented
Variable __version__ Undocumented
__author__: str = (source)

Undocumented

__version__: str = (source)

Undocumented

__copyright__: str = (source)

Undocumented

__license__: str = (source)

Undocumented