aboutsummaryrefslogtreecommitdiff
path: root/python/rencode/README
diff options
context:
space:
mode:
authorLogan Rathbone <poprocks@gmail.com>2019-11-22 23:13:45 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2019-11-22 23:13:45 +0700
commit12315a168343a9718507eeebe92549b302e4a618 (patch)
tree2b56895da93ce65772bc5f16792cf4ac009e2bb3 /python/rencode/README
parentdfa01f979031114375c30bb7dad85f53b1507c4a (diff)
python/rencode: Added (Python module).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/rencode/README')
-rw-r--r--python/rencode/README7
1 files changed, 7 insertions, 0 deletions
diff --git a/python/rencode/README b/python/rencode/README
new file mode 100644
index 0000000000..459886ec92
--- /dev/null
+++ b/python/rencode/README
@@ -0,0 +1,7 @@
+The rencode module is similar to bencode from the BitTorrent project.
+For complex, heterogeneous data structures with many small elements,
+r-encodings take up significantly less space than b-encodings.
+
+This version of rencode is a complete rewrite in Cython to attempt to
+increase the performance over the pure Python module written by Petru
+Paler, Connelly Barnes et al.