diff options
Diffstat (limited to 'bs4/__init__.py')
-rw-r--r-- | bs4/__init__.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/bs4/__init__.py b/bs4/__init__.py index 1aaa6dd..98ac57b 100644 --- a/bs4/__init__.py +++ b/bs4/__init__.py @@ -3,22 +3,21 @@ Elixir and Tonic "The Screen-Scraper's Friend" http://www.crummy.com/software/BeautifulSoup/ -Beautiful Soup uses a plug-in parser to parse a (possibly invalid) XML -or HTML document into a tree representation. The parser does the work -of building a parse tree, and Beautiful Soup provides provides methods -and Pythonic idioms that make it easy to navigate, search, and modify -the parse tree. +Beautiful Soup uses a pluggable XML or HTML parser to parse a +(possibly invalid) document into a tree representation. Beautiful Soup +provides provides methods and Pythonic idioms that make it easy to +navigate, search, and modify the parse tree. Beautiful Soup works with Python 2.6 and up. It works better if lxml -or html5lib is installed. +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/documentation.html +http://www.crummy.com/software/BeautifulSoup/bs4/doc/ """ __author__ = "Leonard Richardson (leonardr@segfault.org)" -__version__ = "4.0.0b5" +__version__ = "4.0.0b6" __copyright__ = "Copyright (c) 2004-2012 Leonard Richardson" __license__ = "MIT" |