File: control

package info (click to toggle)
beautifulsoup 3.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 172 kB
  • sloc: python: 1,958; makefile: 9
file content (22 lines) | stat: -rw-r--r-- 1,063 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Source: beautifulsoup
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Stefano Rivera <stefanor@debian.org>
Build-Depends: debhelper (>= 8), python-all (>= 2.6.5-13~)
X-Python-Version: >= 2.2
Standards-Version: 3.9.3
Homepage: http://www.crummy.com/software/BeautifulSoup
Vcs-Svn: svn://svn.debian.org/python-modules/packages/beautifulsoup/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/beautifulsoup/trunk/

Package: python-beautifulsoup
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Recommends: python-chardet
Description: error-tolerant HTML parser for Python
 The BeautifulSoup class turns arbitrarily bad HTML into a tree-like nested
 tag-soup list of Tag objects and text snippets. A Tag object corresponds to
 an HTML tag.  It knows about the HTML tag's attributes, and contains a
 representation of everything contained between the original tag and its
 closing tag (if any). It's easy to extract Tags that meet certain criteria.