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.0.tar.gz (8.8 kB view details)

Uploaded Source

Built Distributions

reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (456.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (474.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (533.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (454.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (302.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (456.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (474.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (533.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (454.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (302.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (456.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (474.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (533.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (454.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.0-cp312-none-win_amd64.whl (154.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

reed_solomon_leopard-0.2.0-cp312-none-win32.whl (145.9 kB view details)

Uploaded CPython 3.12 Windows x86

reed_solomon_leopard-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (455.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (474.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (533.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (452.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (278.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (302.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (234.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

reed_solomon_leopard-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (248.8 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

reed_solomon_leopard-0.2.0-cp311-none-win_amd64.whl (153.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

reed_solomon_leopard-0.2.0-cp311-none-win32.whl (145.4 kB view details)

Uploaded CPython 3.11 Windows x86

reed_solomon_leopard-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (455.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (474.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (533.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (453.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (278.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (302.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (235.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

reed_solomon_leopard-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (249.0 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

reed_solomon_leopard-0.2.0-cp310-none-win_amd64.whl (153.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

reed_solomon_leopard-0.2.0-cp310-none-win32.whl (145.4 kB view details)

Uploaded CPython 3.10 Windows x86

reed_solomon_leopard-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (455.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (474.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (533.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (453.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (278.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (302.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (235.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

reed_solomon_leopard-0.2.0-cp39-none-win_amd64.whl (153.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

reed_solomon_leopard-0.2.0-cp39-none-win32.whl (145.5 kB view details)

Uploaded CPython 3.9 Windows x86

reed_solomon_leopard-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (455.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (474.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (533.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (453.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (278.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (302.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (235.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

reed_solomon_leopard-0.2.0-cp38-none-win_amd64.whl (153.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

reed_solomon_leopard-0.2.0-cp38-none-win32.whl (145.4 kB view details)

Uploaded CPython 3.8 Windows x86

reed_solomon_leopard-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (455.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

reed_solomon_leopard-0.2.0-cp38-cp38-musllinux_1_2_i686.whl (473.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

reed_solomon_leopard-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (532.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

reed_solomon_leopard-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (453.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

reed_solomon_leopard-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

reed_solomon_leopard-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (302.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0.tar.gz
Algorithm Hash digest
SHA256 9b1cdc5113b3a0e01a07c7edddeb00a232bf1825e52751a3e2c36d3387b129d2
MD5 0f6a627cfedb582cbf169d1ddd21d6d8
BLAKE2b-256 ec7d94b8c685405591b949c4112c924ae81fa98d4329aadfea373ca8978f4ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2b593d13ed6cc3c070f04a38065858cea81a36657da631c710f2d59b0f73be3
MD5 627d5aae9cd54c167ab216bd55e27b20
BLAKE2b-256 8815b490de9bd88efe64aa1d135b31a5111af82017e651a4da45572c54cfc8af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70f5ba67a901511c1320ff88b9e110fe283b068892bd4c5553409a471003dc3a
MD5 c7efa50649d07154eba6574b86f76b52
BLAKE2b-256 9405cdde91392da5da024a103f63421404638411a43c1a67e33767096070d697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08166af5cc99b0e89e5c9ade9dfc1f8c584abe1585b8c3552041c341cbfbe85f
MD5 2dd009c7a94e6b9ed5eaf6366aed33bc
BLAKE2b-256 5034c837caf0704ec302bd76654ce0b0601272541ca1e39826d167c13550ddb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea70466b04c0a4b01d0f7fc193e4e882b377909e36b22412a6eab658b5723ea4
MD5 9d120de162bcaada416b2497dca7aa2d
BLAKE2b-256 aa8c18749338ccee93ba8ecd150d55c1e97c16b0196f8f45c96fe9f46de89277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d81e1eae243702d545760570789090c92e3044c98924ba26a2c13b6b8325de3f
MD5 f2a8ce777ce18fe8ddaa1b37b6cc355c
BLAKE2b-256 adddeebde616b32a5098314ae11cbc1b473caee4db50aca9e3b42a83675c6190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24e3e7df4aab196de61e7c2e56a6fbe16b2f6003fcd16461ce87d2b8dbe523dd
MD5 9f9c53b9cbedcbee6ef7d1cc15fcb326
BLAKE2b-256 1bd655c8bd30298ee1346cfff8190cd30fe97ac943dd959d1e8c8542be202952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8759fd40903763e591d8bffaef673eb41d03594436524bad3ea6e378b7301f84
MD5 69e964a154105e4b97dcd4a05b32a690
BLAKE2b-256 83a350bf209c4682677638f2e7774b611e8660ee9b7fe1fd396d34680f50e2c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5053249ec684a5459890527c9e880476ddfefeebfb9f805d50e0865e8ac2191
MD5 ae07e25e81f6046fac38e81ee5b77364
BLAKE2b-256 d04fd0d57287e39f21ea83b96046d659bc8d56496a4a70df2d3baec2fb964e81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a9dfb248c73f10d75d407662edde94539f47e961efb40d924e26e508efbc57a
MD5 9b637e204f5fd87c55a2b4df3b763af8
BLAKE2b-256 c720ce626516c1ca12e2a03010b3e1cc354d10e7e6780d35fec591edbff40523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e7ae61426b9fb5a7f504687a976d4a2a0138262e025ca489b3648ff7ff909fb
MD5 06df9676818329946de615a07f11b24b
BLAKE2b-256 607bcb5c80782881c12d7e76f4552891cd90a5f9ef8f9e9adf0356f55e5b7a3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0e32a6269ac7a9eebd54a6503fd78169e0cfb8127f4362ff877a82bb25cd59c
MD5 116c70ea2c4f8a50c3b49cc18e08f0ee
BLAKE2b-256 ab1dc322bfb1e50fb825c11a84e5ff7e0dc0f83b69fdcd045d7ef07138d419be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da29e65ffbf5d352abc3019193689ff9fe3e1c8e17d01d91c084f9bb43f40272
MD5 add12bb4edca78268d176af6b8593d22
BLAKE2b-256 918b17ad1494b722de0a6e682c37d01f175c7337744f68118c8529fae8bfc652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c81655ef5da4e17f4ba9afba3af5153508e1b17cfbd429d2252f3c1657431fab
MD5 e8b4b9b6d31e3c0cc6dd468508fcfeb7
BLAKE2b-256 76dccca9cd674f185413c7f5060f038f1e6896c66ff92f11ac3ccadc5c2230c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 264578074daa22aa2806efb39eb81d23069636ed8e329a311115a6dfe4ca4a71
MD5 128b57a07e1acfccb4fcb88e0ed58ea6
BLAKE2b-256 2faff8be4e869ffb9ea473db3ddc8e28514f4354c898709553121e5125c6faa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7aa98c904adf19d9df16b9576f41658a425643c546dd7585af33a66744e2326
MD5 210ed1f94502a8036ded47e515061b4d
BLAKE2b-256 261329f99290dbdf1f6afa66a8c7c394e80c808210a23b72aa928d31dd8c2c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b13f00c6a2eb36be536c43e8d92d2c16ff84b1f0d74aa4aa1bfc3ff395733ae
MD5 cf3a3a349513f75dfff9f65770f42489
BLAKE2b-256 ced09bf3a43f0a0bedcd786b5a3d88641ea9c20316f81aea17eb44b16b8cf632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 651e154112d932d9dbc9134f91096efd6c2c9125f692fb1a155e2ddf25913bd6
MD5 b0cae79731add8f682f7384518b88e13
BLAKE2b-256 de66ffe8692a71929d3a1eebc42ae5d5ea7319c4499cd1ec23f3e40d589857d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a0070db1e635bf8bfe0319133e572af96204e52f99727c579829d8a02e84e8e
MD5 4ce7ad2d59850f21c10244a837ee4d54
BLAKE2b-256 65f0ae30824eb6f9dce8af86f48e165236531724c652d6581d6479d01439105b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7031218c668d885f59d4b674230e8d0783ce9cd4c65736f5afa43fa6a27ee3d8
MD5 7f5e036451bb1b6c1bb5293fa16b5972
BLAKE2b-256 e05d1ff9890ba0529ebd080838516a3aaefddb9323c2fd4c7fc1b16dff0f2ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f777014b87e2a42897c3166e9a93e49f8e3ed99b1d0b5dcc62c5fbf95985df32
MD5 3169c4fbf899d10b09b90c6886f26af8
BLAKE2b-256 42bc907345df74732324e9e0270e8d3e6c2f2df26b2e0710ff845b26b16f3dd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d441109ef7b8ade534d7c38fa4b6d989157b4e095a90403211ef218aa42a7fe5
MD5 e352b906d91619b6f313c986f8e074b5
BLAKE2b-256 61e0deecd2c1ba15bfe6c88d38152f505fb03d7f4f62a5c7d8b9505e04886546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afb2efc414019a06df51f7c491652798458ee021dc03714a988b84fcf3bba79f
MD5 7d36e08eb282d583b5ef3483866a1541
BLAKE2b-256 cf84cb8417edf7007a6d3038cfefd0430cf53bfe648ffda6722a159d5a3c7595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33763e96ef820c3ce4a1edcd55cae395ccc8eb92cd02d1a2365fbbca67a2d952
MD5 8ea4868b600186f8c8877364c549fa58
BLAKE2b-256 32c51c862d5acbc12410536556e77afd1d52b6e72fbfc61c78903958a8b9dcc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39017a7d5f42217ddb07d712b48b028465b9ac543dcad5abfa31249bf1bccdb5
MD5 5e1dc0cf8b61521192f53f7554ea1db6
BLAKE2b-256 9ae818f0aee24227f07cf99dc085cec328dc5f83b48f3be1dd1f36d145503760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 415ab200111e24b4c98aca03b174bcde74965ab7719db4cf3f9c5078ceec3c70
MD5 7fb218930d10923aaa5f56bad60ad2ad
BLAKE2b-256 b94104ac9f87e29e74558b7ee876ddcb67c5f0b3b4f39d2ad46366bbf9e9d44f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b472eee07ba763fe58b0c0fc27b4631eea192a8049f977b66d4132e9bafea944
MD5 a2f9bac6ddf6804dea0d87156669f2bd
BLAKE2b-256 16b5000589fd251f78b4b53d935bdab0a4b9c6863821577207b8ba21766c3c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38f3dae883761567100335aa11b54bd973c2c83891d93246d179e9acc47eba1e
MD5 1874a00fd95e36edd5dedb2e4cafc6c1
BLAKE2b-256 50859d74fa902cfa4b2e1a814e8ad23e02586055c78489630196a3c55bdaca43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d0d27531937f2f61762217414afa1e42198380235620db8743d66852cfb530b
MD5 836da95e51ff70860b38ff420d27e291
BLAKE2b-256 7f437368fd5432ca82d5bfcf2fdadf24881cadd62f7d441cd435d3fc13e4a406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 9a626611ad9a7187653db1e71762ef08e6b2c018c8d61d08fbd57d5e457843e3
MD5 248597a0dbd53d8ea8b61357e1b5ae73
BLAKE2b-256 d676b2241e28d4a982c51732fe973897c52a123d0a454eb5e486568839bbff86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 b30954a6db4268658c805a8b42b880a99b82038c1a21b667f038e73a09c4250d
MD5 a9a45eb3e27d4d9efd22251f70e06d90
BLAKE2b-256 2a705c37767945191e4f0216e24ed3a4c1ae1137ca6a1516b4b509b0c654c973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adc53a4887a9b23b25fa325f6d01c12dc4372686d098579121c71bbf135912e6
MD5 3c679cee9657a19cac4837e9b3f20e76
BLAKE2b-256 e675a67aae7bb2f60bac38e72d6130a0177887c4698cc748197ad5fa78844a85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a43c74ae2ec4f5b98c987dc8e3f81130216e5357de7fc94e2c16d529d93788b
MD5 dd95884a4e38b97d6c9fc21ad7cf6947
BLAKE2b-256 d45e8c89bded910f9cce3b65228c54286cec3fe2f56c5e36388c0bf940cb7c25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9feb8f8064b6a5cc4e89350c2c95ff64ca52e67bc3f3c9cf460d84b66a88157d
MD5 c35fa97129eae228b7864d76b43d7a5d
BLAKE2b-256 2bc7e3a59702aabb97e93af3d7c48d82d004c9453ad02001b2bb391e48affd1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24618eb55a038f9343bc01eb9eba56d36da12037a4bff4a47db64b729908ca3b
MD5 a4cd8ef2f003490b872edad67b5301ca
BLAKE2b-256 67d92e1e04fe50b9287703a32832ded1ac651c5b849090f8623b2be6a232d9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70af005b492538246fb98be29c4bba50d99f31a9bdf5bd0ad2ea4ca1a5a5e36b
MD5 422c1aced42c0b90ddc3fec368e7c986
BLAKE2b-256 84b670590ece26c9de88e4669e3034e751b71cb808a6378e4256e078480d55c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11135b020de4c62e848524bd15cc6e6eda9043e42a1b5ac41de2f8b473e1c90d
MD5 7d76df1fdc1aebd1c71487f31afd155c
BLAKE2b-256 7f3bffbdd157c58b33cc32f350635296743ca207580605307bb8a28571b9845e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30f6a18430911dd3738363c37ec04811bce38e918aa54d12559c860df689e818
MD5 40110011e44ac90c2381d70abb6606df
BLAKE2b-256 ed66711e4ab08d14c6137ca9ad78d9f37824b4871e793904dfe1b4bfe247b72c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 798350f6cb17329b4c14fc5f81f5619937534c89dd4190b7306cc6572f94eb40
MD5 911fd20b00086cf81d858a205e795bd0
BLAKE2b-256 825a66270da42e764c6e20b859c045bae34399069dc8114aa66ac70baa770f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cebd51f96a5569ccc72bd197782f3bc3e3db46c93bb7bb7df12d303b5430076
MD5 11d019e3d1569c3b6732cbb6fb525373
BLAKE2b-256 86e63518bf4a26ab84974d7e78447a44830c354e474e379ce31e639d9eaf29fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f06124a3b242af8488c14726b5ae3a0b4f01453d528ceceb12c77bda084f6254
MD5 236e4fb59cb580f744b5ef825ace9570
BLAKE2b-256 b0748fd701a900bcd2b6ced5060a217ad32f8c4134c5e099e1e0867753a77704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 437b5dafdc1a71aa63b3607d21ccc0005f07f7e124f60eb42c4764ae4bec9d53
MD5 cb94fddeaa9ac4d817a7f2a812afb60b
BLAKE2b-256 23f99af0baeac4f8d8b8de73313aaa7a9d4b298898a2791108e01792b035cd24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46eba8e772739b3d79e8d77e7e3ee2c1b6c47c9237b9f1890924051915dd47ae
MD5 a8b736115b46291bb1d6bb5f215827fa
BLAKE2b-256 11bc9c455a6549a07fc3402831e25cb2906753fdf98a8e7db1874214c3acc2be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 01198b560bff51bb2fc8f3eaec5809b371a3c14ee7642c4828056bce82d0b88b
MD5 7b23a64516a924900acd07ce0e31fddf
BLAKE2b-256 a74a54ba2e4107f8aca5b2bfc1478cb58210b97a3cdfc2cee1d2f15c11591ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ce9d4fbca655ec2b088b8b3f02ef467bcc10441e8eef9d3d68e6a201ff89cb29
MD5 bc9a66c6f2dae753c57a52cb758ae25c
BLAKE2b-256 9153af370cc64aadc17417590cba14a56309f47a62a3606c8b2c5b4609029cfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca282f5371af885923bae6f134a2c677615072217db08e448100eb82099c4d99
MD5 ebf8c0b45924297962d0db3cea396f3e
BLAKE2b-256 e9aef91fb3713ac093be2715cb4da445b3439a56b27a9475269e4c7280ff96fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63a037b1bc0bd753a874245ac7236449a0a4f6d8c439dd0ebd479f95c6288a08
MD5 31345754cb02d31cd9fb63f1bcaf11df
BLAKE2b-256 845ab304e72f6a48f73291886c63ce03b48752850ac8f10b348a1f42b93714eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 46da2ced1b2c745c70d06832b3d12c4a569e8a3b28d1940a82b9dbabda21f10e
MD5 76726473d515bf658f1b3f46c4dfd3f6
BLAKE2b-256 1af6c3a9a3ab0b0551353b4a04f96d1241c1b720e2802020e6668d46b5b43002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af3fecc86ac1c638aa2430dee6bf125f485366748168ab5e56a5ed58919989c7
MD5 7e68917eb266ef4b9360b83b62464c73
BLAKE2b-256 de26817be91fa7561da74c4e63f0bb8bf899b233cb116db77ae14d401090c040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7c527c7aa41c45788b78eae4c2c93cb55d374c98a26c8ee4733465688c72481
MD5 c67a13fd9edc7adb2f06f7f4c64a7003
BLAKE2b-256 3fcf6f4af044a2d2aa1faa2ca3f7e2fa735e2997cb8ebb471bbdfb6510f402d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07882ddd3b0c1d4b116f63cd669db0aeeded4b469ca84aa16a3778861078844d
MD5 92225ab7c3ea83adac825c352690613d
BLAKE2b-256 2886187ce0d4f3b50f362e5ba62dadec5853d056050b1fe1fe0e98ee1b99761c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0399b3fd27cd99c7cde4b8dd7f14cedea1a266aca4d52f15bdccab51837ff48
MD5 6007c37dccf8a7f0368147b9ee9ddf7b
BLAKE2b-256 69ad9501aa7446f1206ca5d9ca302300cef46b647baaed562a2407b881f4d930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d87bca9eb18b4ccb4bcb7dd1e3dbab3ccb64de07fd22ce7ddd48c39d1837613d
MD5 6990249c2b6c287fe13457866ff25abc
BLAKE2b-256 12a068388ac26f4a9c5c905fa3ed472e5da182125c3ca5eec53a788c49738273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7d3230ac90fb7110e6f26cf095717129d7c316b645e3193bba631f4c3c9b1c8
MD5 09c9bcf7cc557421753ac9a883a9dbb7
BLAKE2b-256 95d4a3690b2429ae8da87e6ce7bcf997b203b51a74f0cb880ed4e7042862d5b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d00b319b649e2e6a39dba3a7208b65c13d30a241eca689b62ba19f6407aa50af
MD5 81431f8c554aedbd685c353b28db0e2e
BLAKE2b-256 0e563c11bd1cba8c4791a08b7bb0f727daa130ee19999ac75ce44a60dab62ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91ed7509bb231ef0eff993cc7cc6ceb07b4937924b179fa1af24f21209b02dbf
MD5 636de5af68e8b1cb68fa101449f0d35e
BLAKE2b-256 ee40f25f80ebc326549cebee224145c831d168b50a24e8ea8264b847039f47c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9123a1840c6651da76306e0eb861bfa4fb60d792b577322c790def77fcb26ade
MD5 a68904b2354751db795d59282934a0e7
BLAKE2b-256 ac2b0098d1dac5086fadbf4d2dfe619d334f4db77f5f0889fa9c1bebe6746f0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 bb78d6cab061f623eed980660bd3c128e827988c3b6dfbdd0d139ef7d330a2cc
MD5 9bf13ff76262a6189d451d748b59af22
BLAKE2b-256 d08a6bee00fecf15f5d811a606813dac481ab425d8ec6a92a5abe8447eb44c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 83e0ffea7bf25cb9331e571bbfd374cdd0674f4641f9c558ac6fc80892f25a90
MD5 f8931335a5aedecd46835ae209564f07
BLAKE2b-256 6729690307b9781680032e1be6130a7aa84c58b18fefa7472a8943b47f40dba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4fa86a7fe4f9920fe8179144a37e8412c27eb09293a133cbe65cdea056fa936
MD5 cfb7b75245aee196cd00381c51830b17
BLAKE2b-256 d107b5441356ff76f17293cf0e17836a1efdc116338578aeb4951e81a6b2ef87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4cdf5c294495875ae0b2be1214c7430b41c297d3f1e4a7b3f25471b88cebdc1
MD5 bfbbe344b409ffb26d15ee124c979c8c
BLAKE2b-256 56a882a39c454a1b6de4883114a78e1201c7e1d8be0ae6fab136e567ebdf16ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1fcfe96d990f2a870fd54e0bc639e6d308f7a0369b1b326573cd662e3a2c300
MD5 4935296baa5d206c7855fdfd7cb70e9a
BLAKE2b-256 27bd4f6761fb125140cf3f1b78905fe60000f60a8087a4b7cddf2213268938be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4f5f41e7caf90290f575355cfe20b5223872055c137efc0f6e631bca3292d96
MD5 a83adb81e534816ab2f2f996b290327f
BLAKE2b-256 2ba5142d99623584aaa8c76a5e5b95bbc71db39a1972e62a6d997ad0bf5069b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e348651a445dd2b5c2e2a7b2b3cf714c4804c0191c23d20c81c176ec8341177
MD5 f238e5f67179df78fcc30e2dd86f4721
BLAKE2b-256 ef36d4dc90f531f05e85496eb7e8732a3bd87b706f8b6fe63f1d8b2bbbf8eef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a7e5608387839e9142f3abed5d1bf0189a2bf929c64d19e6b92129585f0de7f
MD5 4b077df15e70bc178d11a5aa49ed9c74
BLAKE2b-256 a2c01c1611a489a7aea5d4f8fb5a7dc2969493e7c498da1fba9062fc09e948a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fe69b3df46dc5da0f2be10a90884fad22ae900ba3a095b7f249b587abd7a3ae
MD5 48f48761755dd037e184e5d4e48a241d
BLAKE2b-256 628b6c2e9bc768ba35bc61d2c2e9fdaf8d4c9d387f570c62903da5faeb5114ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 166232957a5b4c65bc1ddc3eefe05b700678cba1788886a03e462b9ca1530f00
MD5 eaf49018abcdc383888b618b3b57c1d7
BLAKE2b-256 ac37a371457615f51c61706bd80f117db2e6a6f5e9a94363463706a0628a9a20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f077f78fa695478d5e86962946b440585407d7ea741c714ce1ff60a5549a5128
MD5 ce8d8a78587ab2264a01979262c1cb87
BLAKE2b-256 ad76195c889bf75449e915a8f029ecf6b31e77231abc2b2e6d60bf1b4cc9cdda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2506150cc38d38e872fe6c585b6760361ed0b0e3f384e5e487a96c23334c3855
MD5 f88599284d3f69c33b43273823389847
BLAKE2b-256 54202964249652569d5dc207c81a0eb47fff75bd5beb92a8432b91273b936d2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 497bd7a391dc8840952cca99743adbb5d1de15a628676a52860f4eedd8e4fe34
MD5 d2f7464ce36d61e3590639eeafa7bbb2
BLAKE2b-256 adda8e2241ac1a146ccd84f96398ee55d4bd5303ffdfb5feb1dabb3201593551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 038210f34d842d9f6592f48d8cb07d3ef142209d6a898f1c8d8ad1691dbece74
MD5 02977dc561e4ba2f97dc120a0a0b811d
BLAKE2b-256 04f90a5a282eb76eb21c356c689731a94679cc4ac2c3568e0ba234e0eabb581d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 685e5d3e51b98019cf9aa60a69e41cb7ae87c0298e99044f56553d7ffaf63ef3
MD5 1570036b81eb25d4aef95628e8d725f1
BLAKE2b-256 4d4a9da0c5ef81ea3c37afe9ee7d7c1b3c025447ee62e5a161df8d7220bd557e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22649dbef67f1e43d76a0534217d1fc513f97b1b2b34b12dfb196e37ca928642
MD5 e5f06d059956371dc21ddaa2e99047ad
BLAKE2b-256 b91a9e934c1ef5b92d2095a01c9706ad671a6aafbdfb529f54acd57070f09e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90f54568695bf81b6f3c3866abefd9865f12a56b668f92c36d1dd76997a2ebd8
MD5 63a4ef86ccc0e8565e0b23e733f2c7a4
BLAKE2b-256 3114ae9624bdea21e44cb66c5fd710e931cc7d5dad13f6efc746d9024c838abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 43d793fb1d981f497fc064706eedd9d3e8ff40874ccb7831b4746151d820594c
MD5 ab7efd0a47924f262927b2da08db9709
BLAKE2b-256 86bd48938851cca52ab74c9937eb1887ddc6d2df1f537e2b5da026251f6f7c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd3f70698a3c97698963c0a5be6b33d3f61419e1a8bbf5ec04abc18aff756ec5
MD5 1778fa3174e12cdd5eeec48d8e520503
BLAKE2b-256 0e20839a052d951b13bba7d8a93fb36f4048d172c61f533f5529f7b617dcc194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70e059ce9a3a9c9f256d4b51d5e567efcf0c84f995b950a0ead68ac0b43f7f83
MD5 41ba338a28fde246a6a610941fc34cdc
BLAKE2b-256 3a7cabfd358f80ed68d49695c41d8345345ff36be50a974b2537ac6e2c4251e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be2dc07a3e7231e5702917ae41e7b911aee74ff052765b77787dc87e54645674
MD5 75c0a584e1ae18dd3406a0f17fe5c452
BLAKE2b-256 3f2efc9ed4bfcf846de087b48775f6b1f810f9e9de4f5a7062376be74bb392b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec8027bb93518d7cc7e2e32b1230d015ba13292138b0f8ea5740ac97b933ea50
MD5 4b98bd51dfd39c45ddf2a06f20c5805e
BLAKE2b-256 66add1ebf6a56b8862d896c1d7aa30b352637d2dd992d04d3c2cf125c85d3a7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e605775b6389caee0608444f3513a892133f06889b6358826b0e49c19d20a80
MD5 a6cb0fdfe98da1048dd3b247f0110e49
BLAKE2b-256 d73898e8ad6313e20a2892dd2853ef699f40f100b5ae7910b7cd6a24e57d7538

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9be2118d88b96a7cd97163cb39682e2c002e57c2fb971f71032e1201df5d6d88
MD5 7d3eff80a7dcfd1f31827eb5152bf38e
BLAKE2b-256 622cc03e81f1984f41b3a14cf959a472fd01f19d05e6a7b582e87b6645276f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 41baa577b7a02999b5c49669a7e84a7a7e465f094e0eb7d68c759614cb69dd15
MD5 07edbe225577ef8983ff7ec551a3f3c0
BLAKE2b-256 943b515d892c69851a7b7c7bb0c3ba08c0a68d36d06009466404bed706956220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 987feeabe6e9ac713b434288ab2bc66e5fd1f4fa682e01db6df68e870dafedb8
MD5 4a86837bfda2463720853c94fb3e8dfc
BLAKE2b-256 db1705410b01824ec3ec73d20e6731ab78121b3e3556920e703345a7593dbfd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2dd380f45d7d7da0da65256858fada0df9ff9f77cc8fef71ba4fc32cdc6ba789
MD5 f73ab7aa19a20e07f42a338fd118cea6
BLAKE2b-256 c73613cc95f7d481957d25f57706fabb20615ab4a693de15c188db219ac4f0d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 14ebda6b9d1ccbb32aef48fb2bd9e21b8ef76c89d0646671822b9eeba63f1add
MD5 e1b32a7603e4c86bdc270d4d236056c7
BLAKE2b-256 8fdc6cec6a5ef3120bb77fe8d8ca0ea164cf6d6f37b3c17b8a0130d28f9bf233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bee7f3d245a79784202446cfb9873b9c6e89f7ab04d7b4f4ce7e05ea093b1097
MD5 8a15a519715aec31577b41b27d189c4e
BLAKE2b-256 50602ec08a1b48d39ab00481f416bdcf3cada77a41edb83a01038dfc1fb3f6bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da9860bf9464bb02766a3716b0fc068c89bbe3275257b7a53ccf435a6ea8af5f
MD5 aca13e8d0cd38e6422e46318b5eac7c3
BLAKE2b-256 70987da7eafeba678ec0b833ed0ed764c021a4cea1e5908fc497f97a49405648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4302cf00a82ec676eb3ffa4caf1478b63727194d2d352cc2f62673be41515b6c
MD5 0c147c395dfaef9186cc6a17ea28877b
BLAKE2b-256 d99182fc7ac3ef8301775c3958161ad7b2fbbddf24dcd471feb682350f99e92b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 553f461ca768e06b8438c3dd9cfe68ad848fcdbeec0045e6200d1026fd518b64
MD5 4e8374e1739c27aacf38522f339347ed
BLAKE2b-256 11895967b4e95c8c04fe9b44f05c86ce340d972b2a2a81cb5bb987c374511ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26fc5ae28e8867b8adfda67ff49d89f8d0e1bc9ed2c16d6385cf023d3f2de6df
MD5 b4a74c2435bab4e22574494ad6459cea
BLAKE2b-256 de3daed0e0689c6f6fbb5926a2abe225535dbc810e26d9ab12fce4c9dc7e10ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 966806030be6fcaa3e3c4ec2ff9da90cd3671e5266bef6eefe1442caf953c921
MD5 f2158cd2bb142f900df1978525b282dd
BLAKE2b-256 21d042ee27d010af66fee78898ef02d5405f08ce661a3682a300593135c0127c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4cc60dabb3c995e113e1749da7a1ae88584f11f4c35088402d83d1757bcbb493
MD5 ac1e2f9789e401944a8a12c152e4cccb
BLAKE2b-256 33653abcb195fccebd93d431639c7a9acb62df4c5d324a87f3bfa4bcb847922f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e26ae5b8afbec267cf62c989419b8a70564ababe0e626d9305ccd8cfd938b104
MD5 ee6f14edc96987dbc709c49daccdded6
BLAKE2b-256 56f69f09e1af8a18d60a727a182690882faf25f1450fb205eb11ca2b95710ff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cce3970136cec4bee772e42bc63c4b21b5dada155852a5b89aca69537152b83
MD5 13e63cfaa72747411ccf4206fccc585f
BLAKE2b-256 15250d398de1d59179abcebd07736969e54a5b215a8cdcbcd16b0f03fcabfe27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea5e1c1e87c08c9d67212a99cec274abb335b2ada484cd7a8dbe514554e9250a
MD5 9d28c07f5bd4ec385b4f4c4c237ed4c5
BLAKE2b-256 957f8d020c18590cca58d46b3383304e2ad514507df544342484f6d9ee61f4b5

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