aboutsummaryrefslogtreecommitdiff
path: root/python/python3-pynzb/README
diff options
context:
space:
mode:
authorfourtysixandtwo <fourtysixandtwo@sliderr.net>2022-06-04 03:34:52 +0100
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-06-04 10:37:15 +0700
commitf5157c6596d090be1096d2a1b343bda6147de70a (patch)
tree77a780ee11c04afb204655d456da53725e60d36f /python/python3-pynzb/README
parentf0e4c698edf20ad7241cad5f91207a94fc8a4eb2 (diff)
python/python3-pynzb: Added (NZB file format parser)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-pynzb/README')
-rw-r--r--python/python3-pynzb/README11
1 files changed, 11 insertions, 0 deletions
diff --git a/python/python3-pynzb/README b/python/python3-pynzb/README
new file mode 100644
index 000000000000..914ca3b8f954
--- /dev/null
+++ b/python/python3-pynzb/README
@@ -0,0 +1,11 @@
+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.