python/BeautifulSoup4: Updated for v 4.9.1, moved from libraries.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
a289f8b6c7
commit
8a62cd4620
|
@ -24,7 +24,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=BeautifulSoup4
|
||||
VERSION=${VERSION:-4.9.0}
|
||||
VERSION=${VERSION:-4.9.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="BeautifulSoup4"
|
||||
VERSION="4.9.0"
|
||||
VERSION="4.9.1"
|
||||
HOMEPAGE="https://www.crummy.com/software/BeautifulSoup/"
|
||||
DOWNLOAD="https://www.crummy.com/software/BeautifulSoup/bs4/download/4.9/beautifulsoup4-4.9.0.tar.gz"
|
||||
MD5SUM="54e86045e37b578036f34b0e4927c85f"
|
||||
DOWNLOAD="https://www.crummy.com/software/BeautifulSoup/bs4/download/4.9/beautifulsoup4-4.9.1.tar.gz"
|
||||
MD5SUM="57502b5b34ccfd97b180260071f5799a"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="python-soupsieve"
|
|
@ -1,5 +1,6 @@
|
|||
Beautiful Soup is a Python HTML/XML parser designed for quick turnaround
|
||||
projects like screen-scraping. Three features make it powerful:
|
||||
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
|
||||
|
@ -14,8 +15,8 @@ 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.
|
||||
Beautiful Soup can't autodetect one. Then you just have to specify
|
||||
the original encoding.
|
||||
|
||||
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
|
Loading…
Reference in New Issue