"A tremendous boon." -- Python411 Podcast
[ Download | Documentation | What's New | Contributors | To-do list | Forum ]Beautiful Soup is a Python HTML/XML parser designed for quick turnaround projects like screen-scraping. Three features make it powerful:
Beautiful Soup parses anything you give it, and does the tree traversal stuff for you. You can tell it "Find all the links", or "Find all the links of class externalLink", or "Find all the links whose urls match "foo.com", or "Find the table heading that's got bold text, then give me that text."
Valuable data that was once locked up in poorly-designed websites is now within your reach. Projects that would have taken hours take only minutes with Beautiful Soup.
Download Beautiful Soup
The latest version is Beautiful Soup version 3.0.4, released April 10, 2007. You can download it as a single, self-contained file, or as a tarball with installer script and unit tests. Beautiful Soup is licensed under the same terms as Python itself, so you can drop it into almost any Python application (or into your library path) and start using it immediately.
Beautiful Soup works with Python versions 2.3 and up. It works best with Python versions 2.4 and up. If you don't have Python 2.4, you should install the cjkcodecs
, iconvcodec
, and chardet
libraries. If you don't do this, Beautiful Soup will still work, but it won't be very good at parsing documents in Asian encodings.
Older versions are still available: the 1.x series works with Python 1.5, and the 2.x series has a fairly large installed base.