From f5157c6596d090be1096d2a1b343bda6147de70a Mon Sep 17 00:00:00 2001 From: fourtysixandtwo Date: Sat, 4 Jun 2022 03:34:52 +0100 Subject: python/python3-pynzb: Added (NZB file format parser) Signed-off-by: Dave Woodfall Signed-off-by: Willy Sudiarto Raharjo --- python/python3-pynzb/README | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 python/python3-pynzb/README (limited to 'python/python3-pynzb/README') 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. -- cgit v1.2.3