Skip to main content

No project description provided

Project description

reed-solomon-leopard

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

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

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

Installation

You can install reed-solomon-leopard via pip:

pip install reed-solomon-leopard

Usage

import reed_solomon_leopard

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

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

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

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

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

Benchmarks

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

With an AMD Ryzen 5 3600 CPU.

Credits

Leopard-RS

Project details


Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

Uploaded PyPy manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.5+ i686

reed_solomon_leopard-0.1.1-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.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (304.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

reed_solomon_leopard-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (304.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

reed_solomon_leopard-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (261.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

reed_solomon_leopard-0.1.1-cp311-none-win32.whl (152.2 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (304.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

reed_solomon_leopard-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (304.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

reed_solomon_leopard-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (262.2 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

reed_solomon_leopard-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

reed_solomon_leopard-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (311.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (304.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.12+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

reed_solomon_leopard-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

reed_solomon_leopard-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

reed_solomon_leopard-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (304.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1.tar.gz
Algorithm Hash digest
SHA256 91e8ae50c12f39110061e9a9718dd61262ef301a351d0fb20392c04c3dc50330
MD5 b2258ede4604297cbe9f4af5b50bc9bf
BLAKE2b-256 fad7634f0c2a60875f4ca1b9b549d16d0d3990f651d7ccb365018d71b12a04c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1191f43362e8e527d7ab1129cb7ec9cb45857c2e52de82e8cff67b33c4d496c0
MD5 f7ab74b8c01a7951cc8f1a3832987e31
BLAKE2b-256 0df2f8b10982bcd34c3f176a52e77b33b77b45f9df403d4c763d5170ff474665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ffb3d6602e5f5b72d891b12372086dee0030b2f10890b5221bd94a994c38c35d
MD5 c7f63348ecc7c81b5ce768c1c5b74e07
BLAKE2b-256 1b25266048bd172b1606bce89a0f417b03a947e9658d6f0ee8bd0a148209fa66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e44414b9784e8becabd4110fab8c1db7ddb6582f3b648009d4eb64efedf7373
MD5 ce53dae7ab3a22c698ca2ab64a451ee2
BLAKE2b-256 3ef2d07ce0b95cbe86bfc11b2851822222ef756f2626d653b9dd7a174f598459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b445c4511357c14c3edcd67f30ad99fb4b6be08dc134dfbbb80cec486880431b
MD5 985a1579f39addb58eaa88944c24cb52
BLAKE2b-256 45c3e33ba8b199c976012fa5a57192b8df294b9cccd45cea1fb933145d50fc54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4724a42682381a78663a2c256247146512855e0f61e390a1e8bdae147b0291e5
MD5 f79b619c70d38c9656e6f5f606c20043
BLAKE2b-256 bdfe8dd9de326f8a4f209522dc61cc5698dd4fd638b38db829c409c6d87e8f87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd3591a9478cb80de5749f5189cacd9563bd22f4a62114d3980a0ea36745a125
MD5 bc5a561bd8bd5323ccfc5dc7d933068a
BLAKE2b-256 6b1da7d6b58e84e47e30c6c1bf9f4333e9512fad49fdaf99fced5e76ea6c54c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 669772cd03ca5206e0da63726ecff975ced4ccbf5f13efb45ee61d8230f89939
MD5 dd312052ad50c2c74c9f25451c5c742c
BLAKE2b-256 49f861165e24fc225f14b8fde2e0ed32f713389af2bfb3fbc48db1d69fd89c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61f6aacce373348a8cebb8f77114906b12005228649f61fab310057066867580
MD5 c05d41783e5e167d4854f7c0c8e0258e
BLAKE2b-256 8d1058ee58c514b12c03ce7fa3f50814f57ee9f758a997ea8507f45317f10a2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b07749a66aef8d399bed01b1252fb39c641f06dcef0a110436d9c61ea13b0cec
MD5 1fd963a9a8803a3bf852ff5dc0e03052
BLAKE2b-256 65572a017e5bb6b874957a9bc7703d4d896b2b21389aebdabfb6d6087ec227e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fb055891f23bfab0df7ae12f83831bac2f596c113b66e4f03d08f6cabe94e20c
MD5 165b04ac37797bff7a9e8548bac940d0
BLAKE2b-256 040fc0a06a0be787e673e6bbfe2736da3e978eea4bf84223516f92794239b82b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f873cc8ad4cbda744271d2abc2f343eeb039629bf585c9b4802ee547b29bf1a
MD5 771e4df224eb6b088597ce488fb11cb8
BLAKE2b-256 5eac5620750c5d6cc79e6bb6d8df56496ebeb46c0832cf5ab6cd0f2cd74fa2cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 961bd3b5c440023e3ed1cb3d55465a9d521db52aecc6a0a55b399374bb0b960e
MD5 5844d692e6d8dcf9e758eaae71eaf83d
BLAKE2b-256 19710b4f192f9d7b4c2b0d7ae90f4a01d73ffae382d8b99a952263c6bcf6702a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6e3fb647d3d6027d68a19e9da52ff717e83aecd9431c12df30e39bca5618cf9
MD5 3df417792ec06776a5038cf3d1f46c08
BLAKE2b-256 030d377dcd2c962bbca987fca224a10db2d2f5cadb115d5aa3aa1f767558ee3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f5df9314f80a0caa25edb2b4b36f034f14021c77584589861246dd37075ed8c
MD5 027c28b42ab1b0f50e6edb25d6ac81e8
BLAKE2b-256 a1a5f24a58d78d6f8d98f3ceb753ff7b73b81946eb542d73e35c53a3e027c63a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c693be7d91645e9a8eed6a487d0da306e8a4173aec92d039490107084dcee6a6
MD5 3b67f362cf50ce7c4a1a6d75da82c4da
BLAKE2b-256 0b992ec6884ed2af0e27e2c834553d2665f61de4ada3c6c588b6ba0e5ad2fa02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7397d17ac3225bd9221c0f8873b4a6bb39dd7576eaaee0287ca5f8cb5fc281ac
MD5 fa0189c8e6f434a875c7247237148b5c
BLAKE2b-256 5aaa98c57324ded582c01da6ca4f8fef251efe897ad0e8ceab58a77ddc00f019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71d2918a4dc23922a400d22c2b9789bb990b445ec58afd3932c328dced97ad72
MD5 3ce4facccfe2ac0b39f859797fbcbe28
BLAKE2b-256 d156ceb28bf5bd7559c4da98ad2b0db552c82118e49549f076f1ceef37eb417a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb301d7a391212fb22c9226d7905c7e1b5603feec59ee2b9977d3d979c2d79c5
MD5 6f541750cc388dc111e1a02ef1d756d4
BLAKE2b-256 5cde62d527395e44f74cc636fb983bd910068ceb28f5f1af72ebce30b68743ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d1f8a8adbfce468ad16fcfd5d4f06bca62e9bafba57a1ed32273df9a031af087
MD5 1267124ca331892a58828e0e28a8cd69
BLAKE2b-256 59be7fc37b709866047ca515e2e721d07eaf9ffe1c42dcd0bd2f49cbdf6420a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f1f4ae392b066e10ec2484516920f81dd41603eafd1a2c07b5aac77d506d9ac4
MD5 92f389948a4b486c2a917839df3b3e5e
BLAKE2b-256 f3e84a30c3b3696e32718e1f983d6df599a4b59c3f71bc598699a3eb987e18a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc22812b8d3c4011d3a62c275ebfca9638467ec75a16714cdd47693d4fe5cf66
MD5 00bae6e6f9675f8ace07aa168defbe0d
BLAKE2b-256 06acc2ffe76a4b673df574c3d5e0a4fa60ace7c91802993e352502e43b8fbe64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3915c7a69cc12a9d261f38e3483b091e3f5bf576c15062a73097e20ce47ef019
MD5 be0a0dea339bf4e05ebfc668fe67bd6f
BLAKE2b-256 f12623599105f2e4b35d77d81d23e29275dc36ad2456b6f3a4b68c2b04644997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 662d55387729f5310bdbdc62952761229822c16a79394ec4b9c77204ef3476ac
MD5 01da581a594c559ee1b91001ee41e657
BLAKE2b-256 3035a1b92c67948b89de2c7a5dd4df4ae6e80fe3b58d27bdcd0ec5f4d5a723cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30f71b5efaa5d6a05e5b4d41a1ceb8af988157ea99a18b6049d43777ebaacec8
MD5 06e52ee9c73b84e071db8a584c245ba7
BLAKE2b-256 5a3bfc8aad98f397135c1276c9b6196efd8811c7d13bd4c451bfd0660fead1b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cf14eefff1517caf4fa5b816c96f5d9a69e3ff61e23f03ac9ac22c01dc8f5e6
MD5 6e8bc2d2fd8fc7233e611ea3ad978f1b
BLAKE2b-256 70b2f9784e03575b8c7136ad00a1b48e1c3617742759a35a6f8a178af7e8e15b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9f2405ac038b37273a2404d7616047d977bb6c9b4e831b6c92be5f525440e08c
MD5 5fb71ea2a23a9feeff4dd5edcc0f473e
BLAKE2b-256 27ae69829f00df1e5284e9f8a82963128243880b0fdea45fcdc62c177bbfc640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 590787946f24b85b4359f768ed52031ea6c79200658afd4c427c0f4f747eeed9
MD5 5313661ea97eb8d5866584e3d58524db
BLAKE2b-256 38e3dc18ce7f98cf5c5fe15e0886d4c252c9a14f06f527fe33c820dc731efe2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5998ccc3c8ee3aaf4ed7837a5ed8012d939d14bcefffa2ac6cb465310469fccb
MD5 852238d4e7eae979afecc6795debb3b9
BLAKE2b-256 bda1bb36941cc0fe981f2a09fc4e44fcd7c337818f4b28ae0a2041d00c2c63ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 270a56d59a1bc8bec03c9230ce66867d6fd3d7a487b2a580174bc07af97b1c63
MD5 326bb3e464c4e82d23933eed69229b80
BLAKE2b-256 bf4276da20626a531740f28448350311e165edc85ebd509e7a795e25e0188a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 c636cc76949660bf1491448a816bda7bb3e466d5f269c1e4b7ee9d4b7e8d95a4
MD5 7d5014093fe660c974b8b2ee5f648bc4
BLAKE2b-256 689d1431e90c2dd9fb78413351ba281b5018c6b29630814ea33c065d18b8b46f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43bee86f6557f1a2e8ed407e8ca3682e8cb751055d0b50969d1611e1f7ee760f
MD5 d769b7112ff10050c5a70be5c81dd99c
BLAKE2b-256 7cf622061c7fbcf0b12a27c10899bf4420405745980c1a4efe58e45d094e6c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62406317feec6aa106daf1b6d97b1d980f9519dca0014dc703bbb3bfe786fedd
MD5 8af442d977ccd0f84e060559297d6a11
BLAKE2b-256 4f6844f0522aa95b9ef8c836b21d21effe578a85e65bbb5f8efe82ae017af747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b7f92f0a41008108657d97008e1360dc673ffe86357e51d42803dc6afb81e7b4
MD5 c419ff12f30c1fd50693a8a8afbee452
BLAKE2b-256 d0a4e84fbeb11b698fc382262e7b29d1b1e5a4d9e96c49e5d9953e18acb32bab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4114d19c1caf0f500cf32d8ea53962a488a5dd9807f1282a5d49657db45e3b43
MD5 fae81ba081d83e8e09c0a56240700728
BLAKE2b-256 50470e1628395c5a5b9862f3180b877dec8ad761756dc1e8b33ffbac894ed74f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97e70f8afac6b248295f24806651ff0fb95a728cf0533858937f23234aec41c1
MD5 4882f88fc7401d7a3128d1fe3a003985
BLAKE2b-256 96147a2d4dca566c49887c2029a47e03665440ad15072c8e12f3fea64e16c8e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eabdd1c856d3219fafa77bad45e9f6999cc68615433fea798c19831401c1bec6
MD5 3f51773d24fc3bce4b56ec00cd7c7666
BLAKE2b-256 e71e4a5a3a693af18a87cf4fcf86926f3caa51f5df6435d70570464c826405a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7b3ba3df704ce90f5ce545d6820919a912cac3ef8fca85b81a8bdc48717aa45
MD5 81e6229c99d4d5b63beebbd47d929d8b
BLAKE2b-256 98ee754e5ef90af8ddc6868fcc8b9018484aab40f76b63eba26c77607f1a1451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eaafaf5beae72aecbbde8834c0da47197b5471b57aaccc72bf0b3656ebe477c4
MD5 49e656df9e4f997fa8b7f707d38b6af8
BLAKE2b-256 ef451ace7d7fa66c62cf83bc019c4bd0f01d85fbb627fbf1353e71502afd5bf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d6d945a5cad4ad76f2fefa735340314d00a8c2451100db75bb59dc8ea3e450a6
MD5 590d3a82caa1d535b996ec38443b7310
BLAKE2b-256 53406964606d4c29e7f88b862135bda3e6d99b6e359f721464c04e0336dc1356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c331f41345c96b748e999b00c9c4a9a6bd3438e7d3295ae8f9a893fbc8bcd9f6
MD5 8f932aa2e1e246b3c46f7fc6c22222cd
BLAKE2b-256 be9d8b8c4c0f1ef46c824b91458cfc0b0e9107b78fd6e94f8a6b473bf3e0322b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 174a90a3548b6f371814c1877980742a0fed6425f6e25a0143b513b5ce68e911
MD5 847c77552f571aa041087ed27e80be0c
BLAKE2b-256 b34aa96ac8d0ca3fc944fb62cf4a95a990e4c7847c3eda895ab7120dd046ff8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e68e9596a431c440d01e6fff136565cd8fe9ad991a9aae1ea65d986b4d980cc
MD5 d80267cb570745942d8e67c0eb0c48c8
BLAKE2b-256 b8cfaee465592ac6210be02d9713a46a730eb1493afbbf3007a95316e2fd1db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ecd0359313112302461b5fa158ae58f3a863ce2c5471ad1d14d136c224a51b2
MD5 838a385c1d093ac557c9a448986fdc66
BLAKE2b-256 aeb72f8c92be8ab3cbac1c539c4151c88d35b6d954381dd8b83437a4b771aa13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 212e4e8f9be008a74eb274cc22e60a23d69dc7584dff8ff2f6e2515154ad1616
MD5 95a9ad075579dd6fa26dcfe4ed3fe387
BLAKE2b-256 d2b377b9d4e127a94d22dfd16fee195646617f0d346ed0856c3e1937b1fbee85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aeaa36f84709069808a95fe5ee83c35f165575168ad58fb399d24a8521427481
MD5 89aff27a6ff52b9ac3a183caad6c6178
BLAKE2b-256 e3ec47779d1a889322988edaa907c418937f31864a9e77104db110f674e460e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 810826db81fd8df6f3b382af3a13b70e7d84e04cdaacc294f36554e43bfa51ed
MD5 2ba617e9d8320960979932cef8fe39f7
BLAKE2b-256 608adb2f127369c569d808edb86638fec6e955795ee29dd2729f88e123ccd3c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecaa0e2475143e749745871f6f16c2bede2336e2fac98ae4a1d469fcd0263be5
MD5 62d26a0cbafde9393c26a3c3bf63e35c
BLAKE2b-256 62387e29a946ee6c6127e58655bfe6d992e2d87ab8b203fc7a30c5ffe4bebbe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7aa000b9c704ee850080118fa753c6e5da26ccf1f627d02b3733d9ab93cef0c9
MD5 e88ff0bf880474c07042c0cbbd244665
BLAKE2b-256 c20fcb8e74caee706f72d8b8aed84c52969f969a0bcc4732ea8bd49dac76b998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0046029f996df9388b4b3406de4e4154d894b009540670df1c1758c81a43443d
MD5 1b444992aabc4d66a4677264c60a1031
BLAKE2b-256 5c009630748bf3d6b909bd139e1af395367e1fd009efa69d880fc47958c2ab5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 4fc89b50b5959e5d7ddc24bb3b319ad27d66765b2a387d331b6d073e415d9de2
MD5 8da3af40d9257d7e0a71243372f98c4a
BLAKE2b-256 8ec6775e4aec4641e4b25edf8ec728d2c4b5de30c2ece9e66d3696fdebd65b65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8d116162bd3207779e8253fbcf03a694feed805f713e2090d77e8818339a12c
MD5 a8548f8e1909f28a8c733c077c175588
BLAKE2b-256 0b99c769b77601e0e029395f673f901a5dc9a8ac3e873fac277ba6387a82dd19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d227abdbd38fa64622e0ca062379a3e88bbce7275c5246c753f41e42f3a7bdb2
MD5 609cce001d77858a4079ccd65c6b8ab6
BLAKE2b-256 b29857f0631ef6ceefea16868be07ef0e61a2b0b2050c7d1c8337ac9d4d263c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f606673d87d0bcc530911029d59032421cc07cf9d9f06f371a8ac86916f49e87
MD5 a0e5d86aa753f1ee185379b051908517
BLAKE2b-256 2a0e8d230e3ba68d9b1adee7e475ca251fd222dd69d69fb689df36c0c8964bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e73cbcf1eaa4c66d36f9c534bfb8828c8ddb86ffcb4f0a0dbb561918eb9d89da
MD5 a335c9d60f186f38012e904be3fbde10
BLAKE2b-256 802145cd57963e2e4f1092523ff94700802ab3f7180ce9e356c07eee5f16b709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a354f05db1fd3fc7f2c24c90b31c0b13b32ca1a961c240a8f779b9f707e70ad
MD5 f0d2f941dc756c27e5281f5ca2e2179b
BLAKE2b-256 214ff2d58e2ca01acdd545b83ee43a476729b67512c0adf13e8c82e1e15a9722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 69451c42b922b9b24ed336ba90be1829f157f766565981499091693d33e91f08
MD5 4d2368787953fe80be0dc7501724b69b
BLAKE2b-256 b777d57ed9954ce4e2e33de369f1faed795f30f5b19796cdfb29dbdbcb8d892b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfd00228b34c43be5e50a1d5a61833666ca47b812d4dfc6796227a614cade04a
MD5 45dd072e33327216337342a5c91008e6
BLAKE2b-256 bca3f578d0ce101f57f28bdfcb60aca3c85aeb74a4ac60312a5fd142e777fca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 046570fed41855a67c30dd3cc3f15c59e5467e5b2ecdb00abe9aed39ea74e0d8
MD5 acd986b459a6a995330a5d4c5a8f5aad
BLAKE2b-256 0e6f6b2b2bcb0ef85d7c1d0989f0354b8dfdb8a559073ed05f5ef00722895556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 ead0159969d7fab018f3bd2fff77d595468ae0779ca7f1484d3495c94e2b2f04
MD5 5bf8c63e7d9b49c31e7ba91bdb48b589
BLAKE2b-256 adbd6ca09a2ae7955a3808ba4a51f5b79375fabe44ab944b313a195f20268a38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 f9e84a99c18439f77ada008e5a576bf9c79d343c079d5ad795ca0efee5231248
MD5 69d5cfec5af06cfeec0b5253ba56e4fc
BLAKE2b-256 dd19f2a1f18404699119cbc4ff49bf390a114e46e6b0f13baf49e70b5590feee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f29f22e52ba9035813913e9f20d8b4a4ae563acdf88286134461e0e343117ed8
MD5 679dacd6502322f6460c0f70b4463184
BLAKE2b-256 4b48a875c741399c4d50fe11a34c1f77485d0f2f64cdf9794099a1594ac0cd2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 663a8495f19c26e0b94e992e5c6525630d4f45d5513cf5f305cdb4935bf4a37e
MD5 81afe8b81868a84a40c84e968f1595a3
BLAKE2b-256 fde5897acb2e3b927a1091ebe3ddff135960fbdbb659ccf03e68d704d22e3e1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4ba2302d048dd038bca65d4d17b3103a3bfbbfc1d3bfb985bb647c8c64fff96
MD5 96639967f3b1af34e6982a25ecb632e2
BLAKE2b-256 7529cb49b948798662ea99563f00e22c6b201d80aa293c57340332577cae19e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3c762df258514ce8fc59f299cbecdf99acbcfb6c80b2e7fd36358b507cff6e0
MD5 bfd00c2cc275dfef1e775ab4759f53bd
BLAKE2b-256 7bd61cc915998d974e2865e0618a4229a20e61b93af6f7d743d557eda11c0950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49b4e847a517bc0b46edc2e23c4ad2de177e823179326832760625387e98b2f5
MD5 818b3652d9a468bdd6ad876900a75353
BLAKE2b-256 90532b3931184a5f8bd9dcefaed29d7b0f99060f85c9486755edfe176da14e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reed_solomon_leopard-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5438d7509dbe1a26f7290b0fa63a6c0c04351313f631c4a4b832af0b51b31c2
MD5 987a9d94a3b64981a95c8f38fa759ae8
BLAKE2b-256 1fc2a910e11ac52ab61b9d331c727964cb7afd31c67e3693a8de04dff7ec98a4

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