Skip to main content

No project description provided

Project description

reed-solomon-leopard

Fast Reed-Solomon encoding and decoding for Python using the Rust crate reed-solomon-simd.

  • O(n log n) complexity.
  • Any combination of 1 - 32768 original shards with 1 - 32768 recovery shards.
  • Up to 65535 original or recovery shards is also possible with following limitations:
original_count recovery_count
<= 2^16 - 2^n <= 2^n
<= 61440 <= 4096
<= 57344 <= 8192
<= 49152 <= 16384
<= 32768 <= 32768
<= 16384 <= 49152
<= 8192 <= 57344
<= 4096 <= 61440
<= 2^n <= 2^16 - 2^n

Note: this library does not detect or correct errors within a shard. So if data corruption is a likely scenario, you should include an error detection hash with each shard, and skip feeding the corrupted shards to the decoder.

Installation

You can install reed-solomon-leopard via pip:

pip install reed-solomon-leopard

Usage

import reed_solomon_leopard

# Our data shards. Each shard must be of the same length as all the other
# shards, and the length must be a multiple of 64.
original = [
    b"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do ",
    b"eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut e",
    b"nim ad minim veniam, quis nostrud exercitation ullamco laboris n",
];

# Generate 5 recovery shards.
recovery = reed_solomon_leopard.encode(original, 5)

# Simulate losing some shards. Any 3 of the 8 shards (3 original +
# 5 recovery) can be used to restore the data. Let's assume we lost
# all, except one original and two recovery shards.
original_partial = {
        1: original[1],
}
recovery_partial = {
        1: recovery[1],
        4: recovery[4],
}

# Let the reed solomon library do its magic.
restored = reed_solomon_leopard.decode(len(original), len(recovery), original_partial, recovery_partial)

# We got the two missing original shards back
assert restored[0] == original[0]
assert restored[2] == original[2]

Benchmarks

$ examples/quick-benchmark.py
Encoding 128 shards of size 524288 to 64 recovery shards to took 0.06 seconds (1563.03 MiB/s)
Decoding with 100% loss took 0.15 seconds (660.80 MiB/s)
Encoding 2048 shards of size 262144 to 4096 recovery shards to took 1.21 seconds (1268.50 MiB/s)
Decoding with 100% loss took 3.33 seconds (461.51 MiB/s)
Encoding 16384 shards of size 65536 to 16384 recovery shards to took 1.69 seconds (1215.11 MiB/s)
Decoding with 100% loss took 4.36 seconds (470.06 MiB/s)
Encoding 32768 shards of size 32768 to 32768 recovery shards to took 1.68 seconds (1217.89 MiB/s)
Decoding with 100% loss took 4.51 seconds (453.93 MiB/s)
Encoding 49152 shards of size 16384 to 16384 recovery shards to took 0.91 seconds (1125.27 MiB/s)
Decoding with 100% loss took 2.15 seconds (476.35 MiB/s)
Encoding 16384 shards of size 16384 to 49152 recovery shards to took 0.95 seconds (1078.45 MiB/s)
Decoding with 100% loss took 2.04 seconds (500.95 MiB/s)

With an AMD Ryzen 5 3600 CPU.

Credits

Leopard-RS

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

reed_solomon_leopard-0.1.0.tar.gz (8.4 kB view details)

Uploaded Source

Built Distributions

reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (304.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (304.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (304.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.1.0-cp312-none-win_amd64.whl (156.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

reed_solomon_leopard-0.1.0-cp312-none-win32.whl (151.6 kB view details)

Uploaded CPython 3.12 Windows x86

reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (311.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (274.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (304.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (246.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

reed_solomon_leopard-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (261.3 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

reed_solomon_leopard-0.1.0-cp311-none-win_amd64.whl (157.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

reed_solomon_leopard-0.1.0-cp311-none-win32.whl (152.1 kB view details)

Uploaded CPython 3.11 Windows x86

reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (311.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (274.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (304.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (246.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

reed_solomon_leopard-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (262.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

reed_solomon_leopard-0.1.0-cp310-none-win_amd64.whl (157.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

reed_solomon_leopard-0.1.0-cp310-none-win32.whl (152.1 kB view details)

Uploaded CPython 3.10 Windows x86

reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (311.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (274.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (304.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (246.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

reed_solomon_leopard-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (262.1 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

reed_solomon_leopard-0.1.0-cp39-none-win_amd64.whl (157.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

reed_solomon_leopard-0.1.0-cp39-none-win32.whl (152.2 kB view details)

Uploaded CPython 3.9 Windows x86

reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (311.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (274.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (304.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (246.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

reed_solomon_leopard-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl (262.1 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

reed_solomon_leopard-0.1.0-cp38-none-win_amd64.whl (157.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

reed_solomon_leopard-0.1.0-cp38-none-win32.whl (152.1 kB view details)

Uploaded CPython 3.8 Windows x86

reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (311.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (274.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (304.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file reed_solomon_leopard-0.1.0.tar.gz.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e05cb6355c8afabdb2540e591b88876a5ca94a8fcb18043915444c3f107d4679
MD5 98585745cc939d158f0ced269eb92ad3
BLAKE2b-256 25ed9ccc5b1f687d40113f4a34ed5df58ff09a60d423d54083785ac6fafd99e7

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32c98695b277d7dc86752fc0a6615294b3ae3fc978aa34580ea029754e1ba854
MD5 76a7859d488036411281193ae850bca6
BLAKE2b-256 431e1761abe4a5c7f9378532a4ee7f1741db6a20c2a778e81cfb1bf057f63a31

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87685fdc2c97cab74623107a52b4fd748d6d0fe2fca2f1004e4e123e85611354
MD5 c716cdfda8b265b56360ee7462791cc6
BLAKE2b-256 cbf30fbc9ce80ffcc7e23ac02206b5a0005b60c02a859d194c4946cb8763467a

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8738ccb2241793899f8a05aa824b5c5dc19f4cbeee34ebdd64ecdfc6f238d969
MD5 4cc44d0ec555c01c200ee598558b4aed
BLAKE2b-256 41f6cfe0d8bda3bdc204e0fb617a032bc18be51f9bf8030f7e03812174ae4692

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49d28aa1e6ee58fde0b0816cc33c9ccf7a8ae0b641dc28585d450abde71b4a60
MD5 a4373e9630eccbc688acadb72712403a
BLAKE2b-256 f2943a853e7418042d04d10d13a51b9709bebcb7aea21b3b69dab80cc48a74b9

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0b391e597633a547783775b4eefa705bfefcc904476a1676ad02adcbe836556
MD5 834f1c145d0692e6c76102d6dc5295aa
BLAKE2b-256 2273bfcfc955d1e5d7f306532b84aeca09c39c12b80f3ed636ff9d43294b103c

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb8b7706c6c5a4f03a8b1f687e52607b1c496bdef8c45b9a8ac7a7a5846fd964
MD5 b393b4ec96ff07a176cbc8c7618c6f1c
BLAKE2b-256 f0344656346995debd82848f9956d841da7ac36bb1ad7e98b1e4085b886a5729

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c828fb0e5b735242e353319db62e33bfc09db8326d36fee678cc2922013403b0
MD5 a69421fe735269388f7aec3a33199833
BLAKE2b-256 e45217e9e7154ac6c34f01dc13b540ed5754d4aa4dfd2d056a45992c0984745d

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ee69570fbf614af427633449fc4a6d75e9ae18d2a4e95197799b497d00172b6
MD5 2cf277fbf9940ddb04f4078959ab19b7
BLAKE2b-256 ec132afcd844b0e25fdb2a9070cad0fe44179149636bd8a0c0e05a78223a951c

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b02f634bb4c9a362709fde06f3693bb3934cf5addcd02c17b48f1c2111fc2d4
MD5 31b06d9d3dc486474d0e1421c6753484
BLAKE2b-256 32a387c422c7a9ebe7905aaf2105a503b6b27765a4bc30ce240a14f3f53280fa

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 335ce5a0270f6c7a104b33454a6ed430b12a817ced2e7b8e7be447d0a5796431
MD5 f36878496cc3d4b6ba5e39d6e976d687
BLAKE2b-256 58587c2a49d50ceb150907fa193715bbd302af105885e73386bdd21a6ebb001b

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19dd49355db3db75dfcc24c2ee2ecf21712dc7670861acc82f915f5b63f48983
MD5 a57c823c509e39372e1dea9e8faa649a
BLAKE2b-256 da02fea80d22be6bf4edb410eeba0b5f5ac44907fe355b12a5d99bfe087c4f8c

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03ebd9b2a2b2ba29b55a23c2e67fb78e294f8e867eea0f5f4c2c5ce17cd471f2
MD5 9b693762e9886d61cef69f9dcefa1398
BLAKE2b-256 589d18da59145f0295b974350055e27de2b841734c3b62a32be6dc7935f5d6eb

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad0a535f4c23e2b7b26d45f1a8f554a06f26b5a21becc243b14e0c3423c88f43
MD5 2e01ca34bd4e786530af87e2b3613c58
BLAKE2b-256 3eb90a19cbc9be638475bf3a24e5537ea3905dcb840203eef79776743313784b

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49ccaa56c661697f9c4ba51bf393b876bd66869cd72a06ae9faa9659a8833b58
MD5 61fd275a2576b77738a9d6981552a1b1
BLAKE2b-256 292d0e09b70b0b35c8d25177999e61547e054badefe8ad8d56bb84ecc812adaf

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8af37c2bbb50810d57d84bdbb8429b86888b7369feb83aa397a1f0c420eb55d1
MD5 269590025dabff13bf8c334fac0eed3d
BLAKE2b-256 c2a36234e3a83bc06b8097f8aac96a97e14599ad132cb85270acdb3b0cf31468

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca26b37e0ba7a6c39430cf6729e07cc700c1217637b26447fc00b2c784316bf7
MD5 0335cff237c74b99b7bff05fe2c5d8fb
BLAKE2b-256 e8c5149302e68851bf13e4dbb38aed72ab251e181b7db3d23f9242f68fd11ee0

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2ce226d721ac7aa4b81d3b1bfd64c06ec5ccb7c2d90bfd8228bc4c5b5ca3622
MD5 af7933a7c59d17ffef60753ec47a547b
BLAKE2b-256 fed3f1f6c2fed2bfaf7ac8a8250a200b45fd73da0f46ea1979aaa8bb819efd5e

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f270d5932e7bc907cd183096477e1cd60a7749dec09811ab8cf6ff7b78f4e1ad
MD5 373102e2cffc62dbff39ae9d883ee3fb
BLAKE2b-256 1750b7967856b8f0acdc78caa470118a4d7e772f2af99733ffc6b9eb4e8bf488

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 0d41fe8896541d024512f90f40ba9d738a0e3916f5cb7705b21299172268d106
MD5 96b5a6fa56dc93e2fba9c1a3a6ad2e8e
BLAKE2b-256 74fdb99ee1d9149a2f41bbedb3502088d57c7fa62963bdec94843a89193cdf9b

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp312-none-win32.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 42a72fe66fe49655d4c6409c4e356685d170c3460fd41246acb916afe525d818
MD5 c7869c24dde8b78aa92bcdd9b8ccb3b5
BLAKE2b-256 f8f5e6c05dd40e265bc4c82349fbe3786b562a89ec6f76a5ad3302b9768722b6

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c7851dd65a65a5f30d278528b34de37ced933f66cb965ab62ab261c29ba9ad6
MD5 1fb9858220630b9d9d313848c7769652
BLAKE2b-256 789b7d838c3a6a2e82b4f0f35e23fdf3686dfaebde31a5fe021b43ee4459fbb5

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4cb65b62025a41fae84f98c054c0f2b1c7df0d50fecf3b69646bc24371ef3706
MD5 e446117ada70027436a63cf61fb51072
BLAKE2b-256 fa5511e6296e6ebc89068c54d49281d29d51da38ea6138b484be2a027d200572

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b82771a7097781cf43c8e4aa8157ab55d286a8757f22d9f7a20a20f84389104
MD5 96b82fc7c037488ced5e7372547643a5
BLAKE2b-256 104b7df35862a46093eeaad77cde7d649f66a00f18e6dd3c5d2b27612c838c9b

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b0dd0f68174a4840763c80ff3d3a60c4ee74ae9d69202f02f66c9dca8efc56df
MD5 8a4cd166967f346fc2fe525a1af72a69
BLAKE2b-256 086056edf61bd576216252301437862962b8032eb892765aa8603f630d05d9ef

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35e9815550fbf269f9b187435b95f2ff25ca6b2e15eebae5bd3f1cbc26dc7fab
MD5 331d37f335a2e01f5b7bb7a1f5cba96b
BLAKE2b-256 cd539be569503c97db65cb7c2106912cf256b8a93f707fde88496da71ad2773e

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c59a2221c04abfa9b690ce43eb7656eeee1bcd0ef409c7705000c7cc25995a2a
MD5 143c9bee8821fc487680d9fd0043a23f
BLAKE2b-256 01db224f300da3277d7d5963f50359789e7e7b181f026b10da8a1b13f7cbc85e

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b11576687e0f09b55e3528cbcd81c3c22d82d96561cbd46dbefda38d9eab1001
MD5 3e3c5d403cf80c04b453c753c914f281
BLAKE2b-256 16634e9b274de70731e9dc15039df5462d58a883a440e56c6ac16b57ccc56ff3

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20bff68b92e7e2827c41075d6c97a2ad861b5f6a236712a1eb3261bf334f93a5
MD5 173753769757d4948f89a26f2e019e13
BLAKE2b-256 9a4d4044d81c4cafe33ca4dcb6d99feda35239fd48703e52b34c2ea4d5133de7

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 981916847701979c9db115e48f25ec3aaa0bf2c66d76b6c1d723b8f357394ae2
MD5 644b32c29735237206cfa99191dbacb4
BLAKE2b-256 5b670c431a4f22df5f9acb776b5cab07082220bfb8bbb769f82051574aff0c6f

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b75fbb7bd3c474f66fc844bbecf4d2d64576c13a28ef187583926cf995e77ad3
MD5 741a0e8087e6acb00453e3786c58fdfc
BLAKE2b-256 980e6deaade3495be51dd094a47bda31602be04dfec45d1e40bc6a91e8d167e0

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e179dfbd3c0139d6a0a3efc4b889d56e4c78724325924ed735b3f93fac6a399
MD5 b0ac300cf1b5c87a669e9b706e4efe12
BLAKE2b-256 a0a52822b80353810c7c4baa1fcf35f5b172c29b433d54f51e00823560015eb9

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15780667fa55254e7574ff066109a5cedb52429ff709923c4cc3261f93e8e00a
MD5 21a95209e6095641260fe218e67b0ef5
BLAKE2b-256 73df400a0071c734a2f68a3ec657362e5d524501a0ff8fd973c7a1c79d64e182

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5cb7ea712ea9e783881555ccbc14b5c3b413f94e018135fccd59d9dc1425e28c
MD5 538c6b5600f6fbb3bc2fb939a1c83824
BLAKE2b-256 dc01983793c7ffcb445680a0c294da716128021779bfe0bdc8341ba0eeaf4335

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc697ad20ee96acbdc13051ac50ced7f641dd6598ad770c2fd9e9623bd361161
MD5 974d8e40e666c8b026b720cfaaff3d61
BLAKE2b-256 284af9d66a9c2f70a1c7ee0a2b9cba5ab8b212ceb84c5782971c597a7c27a8e4

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08e24c143b362afd189a1fcb6cdda41459cff054778bce15e7b6f2b85687f678
MD5 6f466aff0e03ee61db8848515ed62860
BLAKE2b-256 d5f333ccecbc69fd215a23fcda1bf205b5cc8ac84a9ae37785216eafca29b8a9

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 21f4618151a734ee578b920b358bf605dc10ff7255b90c00474a4bf0a49ca8b0
MD5 63ebe98cc13ce68e67851a95118674f9
BLAKE2b-256 65f01a838487fb58ffef2232f061285b4b87299f41b07a7975fc718704e79eae

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9541b72fbe883792b6a2725cca8f636cb45b8d4b328591a7c03388e35162d758
MD5 e14fa7f8e5c3d65df44d55699f2e1421
BLAKE2b-256 f9fe0877766868d7dcd7a3be514944b2c0b6e2fa48966f5f99e6ac24769abe04

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e7043beade2af0c13c18bb3acb1f17ddf01682ec7ea002f4e8edea230b5826b
MD5 2e45d383c63f41574d4897252a29b0eb
BLAKE2b-256 c367be159dbba2095ca3ab0736bcf70f7100babcb27801fc9bbb1b80be1a5c5e

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b188ac42be674fd41dcfef85578d34f9179ab3bc5c556447565c2255172a76eb
MD5 5f1335aa50af20dd941b677dfad0653c
BLAKE2b-256 9839a8e3a241dfdcd6d06fb2f306ee6a9acc88b4b307c14e892e5a8699b15a38

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 55867a8bd8083f4eb67905f66d1ed4e15cfe1877a4b02192a851ce37a18b91e2
MD5 c8099a99818fade04edfc7c176d197fb
BLAKE2b-256 b14db3d05c660641d4d865dfbeb285ef1884194771c8c97609653fc4873e6416

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0726377f36ead705062e8325065e832b1f0c2a3a81fbc16a64df607f4f23061c
MD5 587f44aa7771a69744721cd7fe475de5
BLAKE2b-256 099808817dce1a8a5778a8c02b01a862618471d784e2051a3b64b3242a7a5d27

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 237d654f8e6351cb2a029c5a8cd7e06a3989548c3dd116ca264540820da7510c
MD5 d7ff74a09fc57b50623838a36a22b77d
BLAKE2b-256 22b039d05f95f949a2365f1e0f11bd3c19299b49cab1cedef50d155935f3bcaa

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d86944613c651943c48fc6959d9c380e5d1f8af0be9b34ead5e18b251cffb47
MD5 b4fde8a14f170c26435d8f28a8e896e7
BLAKE2b-256 e2df029a4d2fc732d7f51c39ab97e4dd76c0c4ec015e310119aced0a79d1fe81

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eeec763ba7eb67f128f2d5fd62aa29f416588a82fdbce51cf371606d3935c6a5
MD5 d62aee5019c39c76b25cee33815576f3
BLAKE2b-256 9bf8dcc53b2d81fbacd25350b494e76d45c9ae460f386ed0569023eba1aaed9a

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d4b23460568a65e20239405c2344f26d1b98c6fbe4b376d3323d5f83d340618
MD5 ac89d1fb63bceb626264492f85a0eda7
BLAKE2b-256 eb6a59112be44b12abbbeb7dbd31d2cdf7173d397c30e2d7a1ae363cce0d6d16

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ec5050b1d1c912cfe22c408f8b159e030f07598980501f04d52abe7e0d77c6c
MD5 343b8c4ec5c90d46527d3ce2e6eac4a2
BLAKE2b-256 d12fc967cc4414445a72689b826284521df0053610076c53855d2ea9458d567f

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81c9f1e7633eafb608e5a7067e0caf93128f80bcd1427e23f1d325bb55c3f28b
MD5 0a1902e66df9224a421fced40b94652e
BLAKE2b-256 2c632b976033bc99b97bb3668b9e88667386f82a3d8a0eede2e955f66ba31294

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8cf7061478888042546e24c410e930eec85dde611ebc9e1c28a6ce2756e028d8
MD5 da80e6e6bed07e897b3a25030baa0044
BLAKE2b-256 965546d9e6c61f125be08f729ebf7c2635dfc814557942fba0e53d3834c9d4a1

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c98fd77d6599036e9fcceff29e5846ab00bff2c19e8e83838b4bc81c71416e47
MD5 87876b71e260b3fe3696bc5d9097a46a
BLAKE2b-256 4d8c6ddeef8ab5b3cb988a9901a3ca285c463e607605e2c88ad89c660ceccf34

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp39-none-win32.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1fdd8fb3d9c8adf18418aa5fa4118fef533cac7a1531898c5c7abf2d01fc36fa
MD5 b8c914d451f1a552a23fea9d48dc9a20
BLAKE2b-256 20b9f5ba57994183bc1ecd11eb14d837a6cb2ab3270ab88c26ec772f6402d938

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a892835d6719b85f9d8cd30fd02be8adca1a7c4ec5958372a60a45c61cbc5fe
MD5 bc4561319e53dab216384151db2fac87
BLAKE2b-256 f1d99d14e9101f0f923ac9075f01bac316dcd04eeadd2150f1be6518e8ab2c6f

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6e993e7a57e28d9cc7192bbbcb461eb81199b0228e8fbb5f9f64d310e1a72ea
MD5 35d27b6fc2ebd0f298612b8f839ec106
BLAKE2b-256 ef955902eaa277c7167f13e240f4b1723d5e4fe25610776d15d3a08135566d87

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da22f2b0100ad7faf77fc1fdff3ac3d29bc5ef9066173fc7a5fadfd881e79ed5
MD5 4cc3d2d0f77402c486009d4b239d0da4
BLAKE2b-256 944ca6d9ff742c7fafe89d1a4e3b064c0dc3e315c8ea91d462b96a0511adbe4f

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0629e729e3c681ff0f227ba124b4fb1e6b536fd41a06eb7bb21f47006ee35ef
MD5 4a1bfffbc8046dddbab63b9126e50586
BLAKE2b-256 aab78a13a8320ea50c9d6ca8b56f0e78b2423bd4e800d2a88674e37d780fa981

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a896eb2d6798e33acfed2861d116a42a3b1e8709b6aff59bb434b87af8281eb
MD5 33045152da4185cb80791e6ba29bc11f
BLAKE2b-256 d91ba2cc264edac527c1fe454163f864bdd54f05e4fe4bfd46bcf63043599489

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0cc9a54fe429ef0c2295b51a994a949d9ddbf9948ea9f5cda11051c518df164f
MD5 58d8c75ffe444331a637579467b2afe2
BLAKE2b-256 d6bf40a9446b6d10736d48dd25925391ca8ceef4edc9361a2ad354d0f1ce3d98

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9576b8516744e0f9a1e60e1897f7e46e40273e2b67dbd72e48b783da4fc8f8f
MD5 c4c41258945ce5e417dfc603ff4174b0
BLAKE2b-256 2e551c1a1a3e1325ddc06739448a9bf8f74dd8960322bdda71a4cfb5eb784fa2

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1fa8adb4391ffbf9e78c800ed1b684530d1bfd6ded0dfc868df793d10db807b1
MD5 55bb3cf5b425498ed6babed3eeb9af55
BLAKE2b-256 0cf093fbbee8190e2b8156664006725529323c9b20846f74a14ef525fde62871

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 4d580b98552cbab35d3ab8c6e936cb61c226d1a82ea7bd48ead910a5a4271daa
MD5 14fc949e1d4088bcc48b7443d98e37f0
BLAKE2b-256 67677849fc3412f03f9ef20945f83b8286a1926575b58bc18d5e9dd8bc422d04

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp38-none-win32.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 431fb7df1fa50690a611a791556e951c92755897b5589afb33f1f7dd1e6a9de8
MD5 b8b1eb87f8eedca498eac63b14178e58
BLAKE2b-256 887b195b0eee776f88e83d023f47f490d92419bee496d9e23c72ebe4a93af4e5

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd7a397dd84c37dca87a48e9e38e5079d16f69673f0d448c370468f38b4157ec
MD5 d3ce12cd10b2c53a4d89814cc5699239
BLAKE2b-256 23d6f36cebee9e9afbf2d73a5ef039e2c8d81850918eaaf6400870a1d2c99013

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a5ad2eb606b11fbb931622638e24f77a6988c36d450f6daad683aa7c88fce89
MD5 f2712c68fced2ba41c8453e75c7d8e26
BLAKE2b-256 8bf61bf6cfe153e7e1cafb96c2791ebd04922713729ae30169dba8808b9d28a7

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ecf89d4aea1677c25ce835953581d2e67e76f9e91cd4fb8bb42d2ba61dd8f2f0
MD5 cfaf35efdae1fac21590aac45e21889b
BLAKE2b-256 967c166ba500d8c87ebaffc647754ce862a3542af3d454dba88cd5f084570ddf

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3a9b6910f9d601af641364b7a0e06370bfc01ddd9ee6b155e60b991a84576f8
MD5 e16e4f1de2a9c3c25b66cd05e6e59b44
BLAKE2b-256 f156b184ade762b3d5a4e7ed9dbc93f968cffd0d86b9fe592b7a4c6b00e3b97d

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95b47e8300cd750368f7a1a45daedcdacd2c683f4a778cc4820bda9fad999861
MD5 617f0286279638817662f59bc5dbfb58
BLAKE2b-256 98a932584a95a4c9dd1bb1a33e3627865e64662ff67e10c136ff9aa98431a8c2

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6869b85ed6db9de97e62652d8f4a965c029975968362d5c94481e9a8c50b86d
MD5 6b5f2cb94bb6f428bb35694885b76f60
BLAKE2b-256 818305d0f26cbeece89b48b2eaa8b18161d00388820dc0f7bf1b46ad0e0627da

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page