Skip to main content

Fast Reed-Solomon library. Up to 65535 original or recovery shards

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 2.
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.2.1.tar.gz (8.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (460.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (484.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (536.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (449.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (317.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (274.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (306.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (460.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (484.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (536.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (449.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (317.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (274.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (460.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (484.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (536.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (449.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (317.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (274.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.1-cp312-none-win_amd64.whl (153.3 kB view details)

Uploaded CPython 3.12Windows x86-64

reed_solomon_leopard-0.2.1-cp312-none-win32.whl (144.9 kB view details)

Uploaded CPython 3.12Windows x86

reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (460.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (483.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (536.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (448.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (319.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (317.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (306.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (235.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

reed_solomon_leopard-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (249.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

reed_solomon_leopard-0.2.1-cp311-none-win_amd64.whl (152.8 kB view details)

Uploaded CPython 3.11Windows x86-64

reed_solomon_leopard-0.2.1-cp311-none-win32.whl (144.9 kB view details)

Uploaded CPython 3.11Windows x86

reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (460.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (482.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (536.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (449.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (317.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (305.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (236.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

reed_solomon_leopard-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (249.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

reed_solomon_leopard-0.2.1-cp310-none-win_amd64.whl (152.8 kB view details)

Uploaded CPython 3.10Windows x86-64

reed_solomon_leopard-0.2.1-cp310-none-win32.whl (144.9 kB view details)

Uploaded CPython 3.10Windows x86

reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (460.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (482.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (536.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (449.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (317.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (305.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (236.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reed_solomon_leopard-0.2.1-cp39-none-win_amd64.whl (152.5 kB view details)

Uploaded CPython 3.9Windows x86-64

reed_solomon_leopard-0.2.1-cp39-none-win32.whl (144.9 kB view details)

Uploaded CPython 3.9Windows x86

reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (460.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_i686.whl (482.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (536.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (448.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (317.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (305.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (235.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

reed_solomon_leopard-0.2.1-cp38-none-win_amd64.whl (152.3 kB view details)

Uploaded CPython 3.8Windows x86-64

reed_solomon_leopard-0.2.1-cp38-none-win32.whl (144.7 kB view details)

Uploaded CPython 3.8Windows x86

reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (460.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_i686.whl (482.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl (536.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (448.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (316.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (305.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: reed_solomon_leopard-0.2.1.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for reed_solomon_leopard-0.2.1.tar.gz
Algorithm Hash digest
SHA256 16a683ae53a9610ef10384ca1048a6952dd0ecd1de93d3a31727eb739e70f9cf
MD5 5317f693eb655ee87c0342c1aceee53b
BLAKE2b-256 0f8010560c1c594073ed9b6efc8dd545d5f07aee7407e9c8c4314c1e6190f45b

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f916f2a326176b5370a8f3cc3552465596d38aaebd5a1c02587cba6d53e2f30
MD5 c3213281af63ab63fa84d5f0b9da89a8
BLAKE2b-256 9807d30b73be61750972a2fdfab8b60324f76aede95f1b6e384a6e3b506d58a2

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c24778001a25d7ffd4c94a5c3801b00c20d07e8a4be945dd578ba3d241c1ab0f
MD5 de5c695f6d20921aadffcf0ecee8c01a
BLAKE2b-256 6f98607340caabfcd5a63feb4af308f9172b82cb89ae969780354cb7dc96c563

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc9ee02065ed7d5fbe79c0be341f8107afff427fa6461acbc7d8215a7579088a
MD5 62d78ea64369627a9dc8adb2186d77e3
BLAKE2b-256 d0d1ea3912949ec1d88841b05b2c52bc1ae4cb39a8fda50028d0d755cd31aee8

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f9512b0a66037d808a55b9994e7b194fbbc5595342f2076285693711cc1ac10
MD5 a403060afbf196eb86bd036aaff5d894
BLAKE2b-256 e835a6869083584c6ab624e608ddb409a58bbbb47870cb2777394d0c89932a85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1709a700b010b467c4b3f93b3e7d41e8ee510615b6c67042de1f81203036fd7b
MD5 347dd454ec3ffe8dc909ade254183c61
BLAKE2b-256 274980fc6893e42d24dff70a553c0139515d9bc36b3f11010868d68379f517d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20788fa6151985c5152525f2f1b873344d4736e56c475be0282e1104f5558002
MD5 4f0b0280332ace9ae6330e81bd031d8e
BLAKE2b-256 50412b96029f788073b5bb043020fd313bb4bd2f185c2d159962a9dee626fcaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 624168f30616d46ef2ad5b0f63304e11ffaa25ab70a011e5d16ec80ecfa3f364
MD5 d9a65be6bdc25f648360f8c843459fca
BLAKE2b-256 6e7170954fe30944ccbe35f9a39915512556bdbd5a75e36dc7e88ba3e4bb40d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3cff466ab62b0f25ee3141e9d916ddf32dfe202bc3de5dfd3a4c876b4cac488
MD5 090f153eaa99fe7a4f44f8a22189ffd9
BLAKE2b-256 576533f984f7a9f8af4f8e15ec5d5dc0479413cb837acb9eaac5e93afddea946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5dfd714ffe7609e6ee28903c681f3e6c133719e34dbfb49aedd73a57bb858566
MD5 93c0919ec4c835c00270bb19a412bb34
BLAKE2b-256 457a4655189ad28e21719257b780d0aa702e4d953c7d454321595bad52c6e75a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9f62e2fc5bd61f2c0ced28a6cdc70eaecbcf357b03a4e382fbdef45b2a318fb
MD5 49a887264fafc9b6b6b3015757738f02
BLAKE2b-256 d2d974005adb8de54e62f86295e9ba40ec7a636a8d23fc3945895b382abe00c1

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5708196d33c4b711200a54cc9a01a203320824ea3c882309a3179d2f4f41d25
MD5 50b10034767418891b57aa75f25aab7e
BLAKE2b-256 d62db2e097db1d220307d7460170235eea83cae350c321421ef99d00bcf7dd32

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d07347f6cdc30918eb55a97d0314b1d8aa178935dab5c2681eed860d5518917b
MD5 00cf597f7388f0b32ffbc49f26134b90
BLAKE2b-256 c84d7bad9f0aacd8b5d63ddbd13f98deddda8eb407825f80a25bf0cea4cce805

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2984ce9faeee60b58cf418e15157c4e6f250a7a06e3f5c33dd3cfee9539c9fb0
MD5 be3f0ef60644c6add512019f38480e0b
BLAKE2b-256 76f697f567014e17223cfef65d5db13c9f7428e4248f20ff39d9deb3a4ad0ef2

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1494adb015cf1b315612780ec4d1710eab74f53eaeb119af5961b2e4c45e5e15
MD5 0ffa67d897c17c25480a4b38d44674fe
BLAKE2b-256 133b052606729a74ff76202d2fad36b924578b122db7198f6de1235f1a58375c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3cfd850257ca9ee9b03495956171c0381c6b3c3386b8c559b89e21063d24317
MD5 d13aee11742e36d38ddeebff290541c6
BLAKE2b-256 60e2e433dddf8c4312cd665747640d161cf0fa89e83ca2cc9de10a154af80943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96bcfb130ca2803023b08d3b4063cddeb286914cab04d966f59e917d7559b97e
MD5 7b0a85db975c7899e6f6b3b9cd26e54b
BLAKE2b-256 17fdc56f018beaf562b83eee7da2e3b24fc2ce1d819112d7edf3412c243976bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b34f4caf0d9d93a08fda891de244158b1c6ea452e6162e17c1783eec0b964d6
MD5 53f42de1f0a3e78213caf5526223c6f3
BLAKE2b-256 c0f57baac47f9fbc5e525f3a0b2aac3b9a2300ab3ed47c6914c2c97b28118fcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74c37947e7c0d44634a562d3ba9abead5592f393eed8c7778a23f0965db83d74
MD5 65295c516dc80039823b7b3c4df4dc17
BLAKE2b-256 b5e5967d74940def4b534fbfc35ef214a679ffaa14ad6654f9095938be0efd79

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4c077513d203f6c2b9a06317147a921d0a3d98369c25bada22888b71addd5a5
MD5 0ebc641bd3b36417f5d18529fbb4ae00
BLAKE2b-256 964dc6247f133d727d9628561990ab0a400d4dcd250e545f18c46a2fbd207647

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ae9eddcbfc7f089d4b10a082114d25c8642f6092a0499c237abdb95c0761778
MD5 b824819f0ea3cc68981d3093d5fdfd3c
BLAKE2b-256 4124e1083a6ad3c981a3408b99e03f97f99f5856e79187dd107826ac12bfbd18

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5afbc53bb1f0683eca067b08c66eb7cb8d22cbf267d317aa0309b1b92907e241
MD5 1095fed030b3fcd2b6d52bb462a4bc87
BLAKE2b-256 803d8cf12939d9360ef03166cd436b193b49ed605e6bd593901a0a0906c13604

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a94f39ce4eb2dc3371d30ad65bd84a7edf4be57311074ece5dcca451681de1bf
MD5 aa83f2cd894e7f81c90aa84f6483b33a
BLAKE2b-256 a15bae90851dc18241a568cabe596f40b7c75a5c6f6c6b4e15dfb57b3a2eace9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0374e22392bcd8a9610365748a87cd204979453f760bdb50aadd65dbafe5b997
MD5 ee1aa7100fa5fd04f8fb01d0f81e3414
BLAKE2b-256 eb8baafde2bbd42bb63cfa338d933beda1c688e981d5f9dfb78b676fddb465bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 332df3af244667281089085389730366c98ed60fea1e9a741a006963e25761a1
MD5 f317f285ea94cb09db2260d5b1594241
BLAKE2b-256 ce8853fbc4a5edd7a548a53e557dc22a72a1bcf3ad088ca9acb4f286776f12db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19ab749bef00e6e3591c3986c50eac89473951a388fd50732f2d995a9250adc1
MD5 480dad887fb4a01493cdf840698e109c
BLAKE2b-256 330a690dbcc2cc7e41907aec61c237e97bfa4a546f3b78560adb1e26854f66d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9588c3858d868eee56a3b326c62d1730093dfcc3e1e5e100b409e4556340cd0
MD5 059ad4013a0b06fedc4515f5c024fd77
BLAKE2b-256 dea832f87bbf35b51bb65d5d7f071c1cb733d83b3c0d8b82ea623c65e3f392f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a95f8881369bb047e9957baa009edaae87d289adb34e69987099cdaa03ce466a
MD5 0e8feea41940a1199552b4bf6abc92d5
BLAKE2b-256 94fee49b308a57edc07b46f00f261f80096e6bcc68286e4d752dfcf9203f9c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f441f2295e6416577b68a0d249b02a9de6fe3355798361bcebeab639e29d7516
MD5 696151d70aed9b82b999e416b0166bfd
BLAKE2b-256 08f77bb925ff8af213565c57155c2693b4954aef82a89c462195610c8494991a

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17c2dc67a5b99eb0fd83eb38cbdeeeae837aee61def05a28e79afcc73e9670dd
MD5 bc8b155271beecf22518841e5cce6b01
BLAKE2b-256 9ccdbf3b6740f6b977d76e54235962f65248929f811d37d5029c10231f15f0f0

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef497791e323ef47c6fd8b567b731321a2d5fbad9c63a9918c35c9273959f316
MD5 21bade6e4950740ce08167f5857682f4
BLAKE2b-256 f634f0439ab75c3ac58c913181b058bf52893430c7c4229f2594edb54dd7ae6e

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d93759814a37637a27cc876d73475dc022a02c38213e280ee882357fc17a7423
MD5 b54e13c62c067647007e8bfa3b612566
BLAKE2b-256 b69622db7b48cabd1276aeecc51576ea963e194d4da77e771600eca00b1d8bae

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 333e8320a9d3e5baac8c4f1a289a7ab27875ee32e69c6c35cc27ef69b258a228
MD5 1981b380a8813979ac7b8925182f84bb
BLAKE2b-256 fa45383a09ac2340bd902c4938530000cfce84b274b32ff94342da6107d7c843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 736ce297d43aad28f0a6938243ba4d3fa516548269c53dd044a9e2d386afa0a4
MD5 61fd26509e603deb98c182785a9bf790
BLAKE2b-256 1c3c512157b2f18fb531f8d94cb0ed5c71a745adfb66432ab783b31f13f02ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5b0a4ff2d7589c29b1a4515b8cf3ce9e07082dde4824bee8b83057b40d1fd82
MD5 9138eb59be611968ebe7860eb8e161c5
BLAKE2b-256 dcb82f50813156881a70ca3162c05aa2a1cfb16fe77ae6b125348aa263cc2a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af9e3f428535583b5ca42e3de85413522751cab632dfe6dd580bb6bdd7908069
MD5 5bfbebc050fbb4ba9f1ff86565290303
BLAKE2b-256 44dbc9326f7d805c4403e27e2f1c2150123edafb29b49d343c16528766e27b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 657adf0355e073356fb772c8794c787129876c6c17576d6369ff72005558340d
MD5 9891bb997d981ce2db5542bf549542be
BLAKE2b-256 ff516d99705d6777cc98b93be00bd0a3ae8555cd5fffb15ceb99a9f38e4ec9ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca02cd83d3832f1567dc1ce53a579e183c4aad67c703226fba5350a9dd0d3118
MD5 b687abcf75faa3d92feb70672896a99c
BLAKE2b-256 27f95b1d5b940a519b7d0059dd9414100e4977e5d23170687800d84b8597fc81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4196d4a9c8bbcfd3c6bf160e326d8d12832438885c5c3a6bfc60dc935280d967
MD5 8017f8eb5880c746c3232de6d2a29d0a
BLAKE2b-256 f25d5fa4bb30af2b6026064ab1595bc5e9dca3a924397e13ace0a918a6467b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e9c9d88e376eedc65c6857649b6e398a9fb798c67a1d99e967a28d2022c907d
MD5 dd122a40dbd9560044819d73dff88b7a
BLAKE2b-256 bdef1e9f30a4fcfc1f9234d0ea99fc41b243cb90ff228ef335416b4ad25b357c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b50a61bae689d1e773423c427b4b35c65a9da9910bca23e83400e644efbb1da5
MD5 9a6b0806c9772675f2ea738f0798af9a
BLAKE2b-256 b390f7528f19d665583b95deacf7085668fec87c6fea4f6c1c4032ac173fd047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 40e3e3ff84ce5cd9bb859f71af7553e4bbbc00e003405f630b1e908b6e0b071c
MD5 f040fa03c92236fed85446c113fcf366
BLAKE2b-256 4c5e0eb61a724d2bb113cebe7d6c01f59d90cc023b6cf38332b1842e86a6ebb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ca4dd49f33d3306711e4c1fb4f6440c39f617fa212578a70a6dfab0bd0f129ea
MD5 523723b8bae8e2c9e03e5690b2551f9b
BLAKE2b-256 3a8220d20d39f53a8ae958c4478f316920636ef2f9181a9f73ebfb6cc70da725

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c809acbfe999c7a9ac08c268d78142c513d4cbc35f6bb6c66a04f4eaa9f554c
MD5 ecc15017415aa443c6f24d3d90ac989a
BLAKE2b-256 319506d5737a295d4cd65e48bc9ea48bcf15ac786703fc8d3ad31d2d766ed80d

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5a3067b2c59912103770a8e1fb5f4372cf941c840d7e10eba072c35a40080bd
MD5 cd5b1401750429f2b15d1e0d5bc5ec40
BLAKE2b-256 16a0057048095e37489fcdd23adfa477ebf24f77b75c142445fc0114315a92ae

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a95123b6365baceb5f3a7743677ba5a084a40840c440fa145cc8ed553f6d9332
MD5 20172b99f9ffc40126a3ebc6e61acf09
BLAKE2b-256 621fd43619dc74c7735d39e9f3842615b99866e0547be51c3d41e6941d147893

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f944ff280d53cba1492f166eba2e4e320dce621fcd86020b94495ae52630de0
MD5 499499cbfb08126b1becae7ecbf20988
BLAKE2b-256 db7bde87b34c5fe9521bf29e56d98c24e1b6813adec0dea915e4bf5deeebc0ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8fe562861bd6cc36c90cb4744f3c75ff67d58d9a275b3baf1fa81dacf6fa325
MD5 2985418fb98501d165afa122cf4eebf8
BLAKE2b-256 7e87d5522de0bbe608e4a9cc697f0481abe83d944108ffd69776651de57ee0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c7b148fd4c6317671da9408b628279a3f9aafa2c8adc193bd9912c910bc7d3e
MD5 5d8a087d65a9156452d16b76785df29b
BLAKE2b-256 8f7775acb852d52f1074a00d396ddeb79429463fb9c0ccd246fff9f737bb0cb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a61d071f4d537027f5b20bb2af015578148c820c7d249733411ba4203258e370
MD5 455ce21ef3c0b23ec155a92949eda1f2
BLAKE2b-256 d6575dbe3651bf809b16319a732c1bdac9c3002d61de1b33f4014144823ea7d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 104115997f22e62099a190f11f027f21204bc1f9c20e39a8275b6419ddf568d2
MD5 59387d5d4ce2a20ebb33e17bc97cd190
BLAKE2b-256 4eb733b2eb35eb87a30b1cd8381c86be96007f17a549228a93ecc5a4ef06b402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42f40776f3e0481b37ca92a0e471432bcfabdf1e740f4bb09817e57680db47b5
MD5 fe0a2eb5d9a759352bc3fc55f66a14c7
BLAKE2b-256 70b683a1e0d64b42e7d74576367b3261c98ca99b617429d14eee2bc2fd98072a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e2cd82971c7a315e05da37f8b2331e006b600155a83f5601cd2d2b4b4e8e256c
MD5 10209f9ac7360bfd9a02eb4f4fd02826
BLAKE2b-256 150d0d0820255040da9310439bbf75d63b3cda6b9f29185c52ac2ed283bbe26b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b50846be0a5ac17dd5ad597f8fcb9c2b64f9cf02059caf9a7fb62eb350e72772
MD5 ff2a0e76f6f75204ed2cf39bc3b2f768
BLAKE2b-256 da3fb05508a9d5bc575580b8561e19cb063ee979fcd3793787cbb3adefb725b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5fe10e4fd127e06a84ae1598796f42e09228da83bdf5976edfaddbe13e720ffe
MD5 4774ef378efb7c47ccdd4667e310d08e
BLAKE2b-256 1ad82950c85ce767a380b34abfa01500345206c5f4d0439ae6ac490e722787f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 22aa7cea922b46160b84358f96d360fd4515c25f65e03e1cf3ea23dcb4327e3f
MD5 7287ad514f8a50fc44991545c08124cf
BLAKE2b-256 2190c4cd66704b9866a01f0e992a64a3b59aaa58bb751587cac441000018fbe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 11cbee2d22a48471963a88017625f7c3a68422084cb757ec4a8adfffc4bbb3bb
MD5 db937360d76ea7118079666264a26ec8
BLAKE2b-256 9f7ad3289a08e8261e7814d81b37384a6d93f3d3905496fc7d1aca7e8b7bc4ea

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c1212c07eb8e342311d53066872c0267a0e0dbaff5675bdbf850611da822d49
MD5 8186d135329384057cdb4d287dc04c5a
BLAKE2b-256 a3767c3866eb1a36b97d978a078ca2352156de21cfbe5c945a115a6f6576a6b0

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5dc7a807d2a8b49246ed43b070aca94c0d0fb85abd93d2f900cdc83791d76596
MD5 646b6c9655249609b3dcf6fdf21d62c5
BLAKE2b-256 841fcea9797766978cc6a42721cce4b7a483cbd3ab71692dbac9591e8a52c76f

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a14898c3cbdd8d84f63f701640ae7d856d3adfaa122f7727899dfb3cd66d5415
MD5 ad882ff894312efabb11b4e9291cff50
BLAKE2b-256 55ba0cabb3c3d9c271fe9aa8b02e64e5e391b3f2ae72b10c4c521aa70045313d

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 faf60fb497d178dc7822daacab25479e59cb9ca971f4277f26865c0177a7817c
MD5 72038fe9ed36980e1bc87f44886cc1ed
BLAKE2b-256 b05a882e50697ce0e601d62ef11d49b72a654a54695ae2e180d174d67da93ffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f63f33fc4735a0c2f9e5fb7f3db9661f18e9e07a12e61ef2841619a9b7f8f07
MD5 5e37ceddfede7a0caa13132e34f62c37
BLAKE2b-256 7837a7811062eb5d49f2a43bf30eaf2695d0da64767d6d48fa9676653b12aab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ec957f80e276a34ee2bf85c085ca3ba5314f5d8a228bb714f940e103c1d6b5f
MD5 c3e62542d36ca0b1698dfd712ed8e7a2
BLAKE2b-256 3f888c23f0b6cdf7fe7c90e5b5cdaaf7cf4cc8d5b59ced24cdfe2f73a76148f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74d17e940e8ca19fada25fd00634dbfeb63592b5a33ba4972772e19af2382a70
MD5 825b1f4d66b871290f5876a95dc6326d
BLAKE2b-256 c9330cad5129a1f5564c7498eb54f518aa32034f3b1e79431edf35b8bdd5f050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 61e0ae259c5bd973e231790c61c5d38e1aebd237c5d1f34330bfe9dbc7d7e9da
MD5 fc4b39016ed59b429a0e5f0f7f54d795
BLAKE2b-256 5a697e3cc4fa11231115bd3abc5e8a85de03706611da3b126e01e8b5fb634d9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65366fca40cef36dc2b07bdbab0f13c32453f886f0a98defcf60bab8b05f83ad
MD5 007cc53a52d66de6369a1bef5184737d
BLAKE2b-256 cf6954a60133e8225ce4b4711b3f8990ab2a1cc06b8de63d3b8351f4448aebac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 62045099de1841f77ad8dd637ac1ea1224cb2542f638a7786252db6c978cfa7a
MD5 deb9eb25e5b4d7e2307a55f42f7dd81f
BLAKE2b-256 abca8a976f959e064e223d230c717bd9d0db4454f4921e924f8b73e444cf90b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec0a8a4868c3329f3fbb8bbeccf74635c4c1a45e84b1fff1080c56380b9ca553
MD5 565b99af211ddf58c23ab274fdd08285
BLAKE2b-256 c225833f7cc7f3e70dcb720c5cf20eb4dd2082f15c80a12df2f481e63d44dd77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7919ac20462e5321e405d8acee7a874b875de08b91ec2916a1d7ba27ad59e2e9
MD5 05c9c2fccca950b35f2fac9b249800a8
BLAKE2b-256 5b1024e1be9249bc7e4236de8031fe9f35d389ea19eb602ef1a1cb56bc45b6e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 12fcb8791b7509ad67689434c03b97599214216bf497e6b27cab60c26cd58ac4
MD5 2fa6ea859e9696716c1c1e1919a73ea1
BLAKE2b-256 43c216b40ba301eaf4a8638748a8d6e74c60400c6009f18ba3ea4fce3ddacb59

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80e603d17befe87caa29d98b62ce478c395f3b66606a086cdbbe8a6ad19ae612
MD5 445beb7486ac7484c705e9c217488b67
BLAKE2b-256 a8abb38366a770cab6acb3e210be1fda6ae33e5ddef767da8492f60e60bdbf35

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62268d1caf52b0beb7a859154cef0105d89a95a8812d030574c3f51a6c6b3fdc
MD5 55201d4c69b38961d5b5967a144ac87e
BLAKE2b-256 4a9cd5177d3506f581f18103a480d7610afd3d8384fa7550f20bec63a4affb85

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 18d74979dd920f09f35ad63f8e7e0a86f8c3fe330ecee4df1a39bf7b8c587896
MD5 97161af1054362582ad43bbfd5b3e786
BLAKE2b-256 68f349af2a387fedcaf8d4ac1cf1517333c372d6cf05a68ca9ef8dfc227ec13f

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 387f597be5760f61669972cd61ab2c2b67e5d63d9068df696bad8ad56cee538e
MD5 ec0bb6767dfe42b8f1e9d26dbe26bcd0
BLAKE2b-256 89b901a8d6765ec836c7450fb8d521d607c09e518f596f1a5c300ed5b71e7c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f761a1b343d0a500f76aea37d3c09227f15a62305d870cba84b1efcc4a48faf8
MD5 e660ffdbb606e334897b71b3b510f8e3
BLAKE2b-256 065ef950eb1d5b60ef71b24ed6e064339d4f611ae98bb38a10079736d27c5ef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae92a5d76af5886b75bef4623e1068cec19b6353b51babdb2171f578151f2fdc
MD5 e87185ceec439438412d422f139a75b4
BLAKE2b-256 cdff7532411edaa3a57a27d0fbf09e4c2d5a07f3656bbc35382ac8e404fb8b0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 daa5f7e278052c80a0243f6cbb8a99330b514ba03af85262d0c2c9ab5c5b7c77
MD5 8eb078e37d0983de39d90ca0b688a5ab
BLAKE2b-256 9bf10cb63d495871d69f3902d79434f2919b34a86ac068faee368e2b39aaa9e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30952d283facd2a7f052cbe8c0e5afff63053c96be6f45650ac11cb3f7c0398b
MD5 9c566fa19fe7b778a8b04f881d20697a
BLAKE2b-256 b5ef116c38957de0baae66dabc1e0054fe1e752b37e367c47c8303cea7cd0141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a74a28478cbcf784f7aba0f4cecda2220667d23b5b478a16744082c5cf7930ac
MD5 48d72476086af2ac0f3d1609d70eab73
BLAKE2b-256 5883c1f1fa1d3ea9c277a48c6749c13c238c0f9bc2d4a1d44323a50edb5fb2df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d8aaf413508557df381beccfc1a6c9fa68f3785d17d9e7cadb8701602e64ffa
MD5 10a545861946ccf3c88b1ec537b3125c
BLAKE2b-256 aa125635ea723640e95dea238d9f50492087c7fc3b5d969dd4cb76126ce04dab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33eae754cfac86c1aef1d6165c410809be84f84fac28032bfce42e651bb71b65
MD5 381879b853f070b4baee9277df3e1499
BLAKE2b-256 730f98b149963307d43190c1963031a569d2e0ead8a448b37ae1869691b96541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 c1f10702ee67b196a0c761f6ab85a9d76693c93ddaf05efd0f111b25124fdfcc
MD5 6bff8cbfde4552d4577e48f2dcbe1cc3
BLAKE2b-256 e30b685e53c5a70a77e40b2ca3c66bde50459d27192e33df006f3a3005b6fcad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 309142d56c4af13f2f79cafa7d37c111bb7579a65827088aa5732dde82ea4847
MD5 b62944d41fb448eb6e565de58e627a5f
BLAKE2b-256 8ce1dccb46eb488ff0c55493a66eb3005815d55b291be5b2f5901dd493c42c4d

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf54bfb3398239ff472500ffab440d78bd6810f9ad36c9b02b313283d09c2041
MD5 acddc33727563d8cdd25456147a451d9
BLAKE2b-256 0b560e42d7d259b368b00a3a385d2799c818675fd31ad131ee2e6693abac2804

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9cd34e5f62ff72095704df4a6b538cd578fa1ce4e3589e1b18d28986c49d994
MD5 d1c6344cd9edacc4c9f257b1082d05d9
BLAKE2b-256 3670d6f2d5aee42cc4bff6c2a3ef6f227dd7c8f488fd69ad390259db2fe64f70

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8bfaff7ea7e62028360f482e40a191829a67be8a1bf372b70cbc90e5fd0109c9
MD5 e5fa65b165fbd5027e383a891a0838fc
BLAKE2b-256 d80516ca3900998f856028b40eefe0c1ee6e8c9b2ef25620bdeb83bf7b2ebb5c

See more details on using hashes here.

File details

Details for the file reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a49d24abeb61faf26f6b5f22cf5d137a21f32f50584fae9090c5c9daa80dc4d6
MD5 0ef7a17603fe8c53727fd75a8e4385d3
BLAKE2b-256 64d527f8a66ec69a8755d96c67242ea0f92aa9a926d40c68375b5a8b7487a34f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b9a92d62bf3400406b73c8d7f822418cfb9d24d4be3fb950b721b6305355e6c
MD5 cd557696b21345052427e43a23e34c85
BLAKE2b-256 582ce1f4b8609c820b7fab9c78fcd895e5808a5f63551a3a5469d648852500ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc125d4a3baf8a4a28b0eed50dab827f05df58a0e0b104007f9615102793ae69
MD5 6c99f00bd2b03d355bae5694eb5acbcc
BLAKE2b-256 c72847867b3a0718db9a2e90089c8c1152dfa1a2b5f39ce9aab5bb78896fc14c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc85c9b98ba1580b5565e483de94fbb88589de8fe8d12bbd3d0d904cae3bd6a8
MD5 e0dd356372a9421b3cc3f3d2a71b43ca
BLAKE2b-256 1ce1eb0d1154d3bd1e039963c08136baf7b6333804bbd2eae8cbb32929b0ced7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ddfb9c6f6f46d2a310cf4820deb347d35c439465ae8bea9d99a568264f84870
MD5 9e44d45dcc5a64f9793469b96a2fecab
BLAKE2b-256 8c4e1b03fb0b6ea123b62c7b1d9bf923efae6b8b44718c92597ad5bcfe9d8f3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ed5c8f16221aedf06b55926fd8a337518b5bcf7daa7295cd56779fcfa2e75ab
MD5 3a14c6af8bc6ae6bdb6d0ac2f648efc9
BLAKE2b-256 73c382e8832baa53e105cb58c06e26b7074f8d7cdf423a1f993ca9dc997b0e19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9bc36467b366cc8b94efdb2a361b8be9ae6a6ed429f5132ad802abb1fc8df262
MD5 391ac670ee73cded07cf7677e560dbec
BLAKE2b-256 59019003c1ffdf2ce64fa21ab4775ed99618dc1cac9d9dd4523cfe0155c4eeeb

See more details on using hashes here.

Supported by

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