File: control

package info (click to toggle)
python-pynzb 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 152 kB
  • ctags: 59
  • sloc: python: 317; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 1,593 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
23
24
25
26
27
28
29
30
31
32
33
34
35
Source: python-pynzb
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Hans-Christoph Steiner <hans@eds.org>
Section: python
Priority: optional
Build-Depends: python-setuptools (>= 0.6b3),
               python-all (>= 2.6.6-3),
               debhelper (>= 7)
Standards-Version: 3.9.4
Homepage: https://pypi.python.org/pypi/pynzb/
Vcs-Git: git://anonscm.debian.org/collab-maint/python-pynzb.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/python-pynzb.git

Package: python-pynzb
Architecture: all
Depends: ${misc:Depends},
         ${python:Depends},
         python-lxml
Description: unified API for parsing NZB files from NNTP (Usenet) servers
 pynzb is a unified API for parsing NZB files, with several concrete
 implementations included.
 .
 NZB is an XML-based file format for retrieving posts from NNTP (Usenet)
 servers.  Since NZB is XML-based, it's relatively easy to build one-off
 parsers to parse NZB files.  This project is an attempt to consolidate those
 many one-off NZB parsers into one simple interface.
 .
 This package includes three implementations (listed in order of
 compatibility): one based on expat, another based on ElementTree, and a final
 implementation based on lxml.  The expat version should work on all versions
 of Python > 2.0.  The ElementTree implementation will work on Python > 2.5.
 The lxml version will work as long as lxml is installed.
 .
 Simply import nzb_parser from the pynzb package.  It's an instantiated
 version of the fastest available parser that your system can support.