mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
7a1b4848a3
The criteria for whether something "belongs" in Development or Libraries or Python or ... is admittedly arbitrary. As a general rule, if it could be either Libraries or Python, it's Python. Otherwise, pick one and we'll go from there... Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
12 lines
665 B
Text
12 lines
665 B
Text
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: one based on expat, another
|
|
based on ElementTree, and a final implementation based on lxml. The order
|
|
in which they were listed is in order of compatibility. The expat version
|
|
should work on all versions of Python > 2.0, the lxml one will work on
|
|
all versions > 2.5, and lxml will only work if you have lxml installed.
|
|
|
|
This requires pysetuptools.
|