2012-01-27 07:21:31 by OBATA Akio | Files touched by this commit (1) | |
Log message:
patch-aa had be removed at last update.
|
2011-11-29 18:00:54 by D'Arcy J.M. Cain | Files touched by this commit (3) |
Log message:
Update to version 3.2.0. Not much in the way of release notes except this:
Beautiful Soup 3.2.0 features very little new functionality, but its version
number leapfrogs the defunct 3.1 series, preventing confusion about which
version is the latest.
However, the web site also says this about our previous version:
Beautiful Soup version 3.1.0.1 was released January 6, 2009. It won't work
very well â I consider it a failed experiment.
|
2011-10-15 13:24:20 by OBATA Akio | Files touched by this commit (2) |
Log message:
* LICENSE=modified-bsd
* regist egg-info
Bump PKGREVISION.
|
2009-10-19 13:07:41 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
Add missing patches for beautifulsoup-3.1.0.1
|
2009-10-19 13:05:52 by Joerg Sonnenberger | Files touched by this commit (2) |
Log message:
Update to BeautifulSoup 3.1.0.1:
- various changes to prepare for Python 3
|
2009-01-15 01:13:59 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
Supports destdir installation.
|
2008-12-10 13:32:27 by Thomas Klausner | Files touched by this commit (1) |
Log message:
Remove homepage URL from DESCR.
|
2008-12-10 13:32:09 by Thomas Klausner | Files touched by this commit (1) |
Log message:
Fix PKGNAME.
|
2008-09-05 17:46:51 by D'Arcy J.M. Cain | Files touched by this commit (4) |
Log message:
Add BeautifullSoup package.
Beautiful Soup is a Python HTML/XML parser designed for quick turnaround
projects like screen-scraping. Three features make it powerful:
1. Beautiful Soup won't choke if you give it bad markup. It yields a parse
tree that makes approximately as much sense as your original document. This
is usually good enough to collect the data you need and run away.
2. Beautiful Soup provides a few simple methods and Pythonic idioms for
navigating, searching, and modifying a parse tree: a toolkit for dissecting
a document and extracting what you need. You don't have to create a custom
parser for each application.
3. Beautiful Soup automatically converts incoming documents to Unicode and
outgoing documents to UTF-8. You don't have to think about encodings, unless
the document doesn't specify an encoding and Beautiful Soup can't autodetect
one. Then you just have to specify the original encoding.
|