diff options
author | Lionel Young <redtricycle@gmail.com> | 2010-12-19 00:56:07 -0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-12-20 22:44:03 -0600 |
commit | a68aa4a82cdfd9cebceeefe9ccacd0ffc3ac7378 (patch) | |
tree | 9da2421e87ab053a2523a38b41d09898fa92d05c /libraries/pynzb/README | |
parent | 3012dbb96324830d00814e3527b2b920afe3ab86 (diff) |
libraries/pynzb: Added (NZB file format parser)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'libraries/pynzb/README')
-rw-r--r-- | libraries/pynzb/README | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libraries/pynzb/README b/libraries/pynzb/README new file mode 100644 index 0000000000..5dde33e53d --- /dev/null +++ b/libraries/pynzb/README @@ -0,0 +1,12 @@ +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. |