diff options
author | Logan Rathbone <poprocks@gmail.com> | 2019-11-22 23:13:45 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-11-22 23:13:45 +0700 |
commit | 12315a168343a9718507eeebe92549b302e4a618 (patch) | |
tree | 2b56895da93ce65772bc5f16792cf4ac009e2bb3 /python/rencode/README | |
parent | dfa01f979031114375c30bb7dad85f53b1507c4a (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/README | 7 |
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. |