1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
Source: python-reedsolo
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Antoine Beaupré <anarcat@debian.org>,
Faidon Liambotis <paravoid@debian.org>,
Rules-Requires-Root: no
Build-Depends:
debhelper-compat (= 13),
dh-sequence-python3,
python3-all,
python3-all-dev,
python3-setuptools,
cython3,
Testsuite: autopkgtest-pkg-pybuild
Standards-Version: 4.6.2
Homepage: https://github.com/tomerfiliba/reedsolomon
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-reedsolo
Vcs-Git: https://salsa.debian.org/python-team/packages/python-reedsolo.git
Package: python3-reedsolo
Architecture: any
Depends:
${shlibs:Depends},
${python3:Depends},
${misc:Depends},
Description: Reed Solomon encoder/decoder library in Python
A pythonic universal errors-and-erasures Reed-Solomon Codec to protect your
data from errors and bitrot. It includes a pure Python implementation and a
speed-optimized Cython/C extension.
.
This is a burst-type implementation, so that it supports any Galois field
higher than 2^3, but not binary streams. Burst errors are non-random errors
that more often happen on data storage mediums such as hard drives, hence this
library is better suited for data storage protection, and less for streams
noise correction, although it also works for this purpose but with a bit of
overhead (since it works with bytes only, instead of bits).
.
Based on the wonderful tutorial at Wikiversity, written by "Bobmath" and
"LRQ3000". If you are just starting with Reed-Solomon error correction codes,
the Wikiversity article is a good beginner's introduction.
|