Skip to main content

Faster zlib and gzip compatible compression and decompression by providing python bindings for the ISA-L library.

Project description

python-isal

Faster zlib and gzip compatible compression and decompression by providing Python bindings for the ISA-L library.

This package provides Python bindings for the ISA-L library. The Intel(R) Intelligent Storage Acceleration Library (ISA-L) implements several key algorithms in assembly language. This includes a variety of functions to provide zlib/gzip-compatible compression.

python-isal provides the bindings by offering four modules:

  • isal_zlib: A drop-in replacement for the zlib module that uses ISA-L to accelerate its performance.

  • igzip: A drop-in replacement for the gzip module that uses isal_zlib instead of zlib to perform its compression and checksum tasks, which improves performance.

  • igzip_threaded offers an open function which returns buffered read or write streams that can be used to read and write large files while escaping the GIL using one or multiple threads. This functionality only works for streaming, seeking is not supported.

  • igzip_lib: Provides compression functions which have full access to the API of ISA-L’s compression functions.

isal_zlib and igzip are almost fully compatible with zlib and gzip from the Python standard library. There are some minor differences see: differences-with-zlib-and-gzip-modules.

Quickstart

The python-isal modules can be imported as follows

from isal import isal_zlib
from isal import igzip
from isal import igzip_lib

isal_zlib and igzip are meant to be used as drop in replacements so their api and functions are the same as the stdlib’s modules. Except where ISA-L does not support the same calls as zlib (See differences below).

A full API documentation can be found on our readthedocs page.

python -m isal.igzip implements a simple gzip-like command line application (just like python -m gzip). Full usage documentation can be found on our readthedocs page.

Installation

  • with pip: pip install isal

  • with conda: conda install python-isal

Installation is supported on Linux, Windows and MacOS. For more advanced installation options check the documentation.

python-isal as a dependency in your project

Python-isal supports a limited amount of platforms for which wheels have been made available. To prevent your users from running into issues when installing your project please list a python-isal dependency as follows.

setup.cfg:

install_requires =
    isal; platform.machine == "x86_64" or platform.machine == "AMD64" or platform.machine == "aarch64"

setup.py:

extras_require={
    ":platform.machine == 'x86_64' or platform.machine == 'AMD64' or platform.machine == 'aarch64'": ['isal']
},

Differences with zlib and gzip modules

  • Compression level 0 in zlib and gzip means no compression, while in isal_zlib and igzip this is the lowest compression level. This is a design choice that was inherited from the ISA-L library.

  • Compression levels range from 0 to 3, not 1 to 9. isal_zlib.Z_DEFAULT_COMPRESSION has been aliased to isal_zlib.ISAL_DEFAULT_COMPRESSION (2).

  • isal_zlib only supports NO_FLUSH, SYNC_FLUSH, FULL_FLUSH and FINISH_FLUSH. Other flush modes are not supported and will raise errors.

  • zlib.Z_DEFAULT_STRATEGY, zlib.Z_RLE etc. are exposed as isal_zlib.Z_DEFAULT_STRATEGY, isal_zlib.Z_RLE etc. for compatibility reasons. However, isal_zlib only supports a default strategy and will give warnings when other strategies are used.

  • zlib supports different memory levels from 1 to 9 (with 8 default). isal_zlib supports memory levels smallest, small, medium, large and largest. These have been mapped to levels 1, 2-3, 4-6, 7-8 and 9. So isal_zlib can be used with zlib compatible memory levels.

  • igzip.open returns a class IGzipFile instead of GzipFile. Since the compression levels are not compatible, a difference in naming was chosen to reflect this. igzip.GzipFile does exist as an alias of igzip.IGzipFile for compatibility reasons.

  • igzip._GzipReader has been rewritten in C. Since this is a private member it should not affect compatibility, but it may cause some issues for instances where this code is used directly. If such issues should occur, please report them so the compatibility issues can be fixed.

Contributing

Please make a PR or issue if you feel anything can be improved. Bug reports are also very welcome. Please report them on the github issue tracker.

Development

The repository needs to be cloned recursively to make sure the ISA-L repository is checked out: git clone --recursive https://github.com/pycompression/python-isal.git. If the repository is already checked out you can use git submodule update --init.

Patches should be made on a feature branch. To run the testing install tox with pip install tox and run the commands tox -e lint and tox. That will run most of the testing that is also performed by the CI. For changes to the documentation run tox -e docs. For changes to the C code please also run tox -e asan to check for memory leaks. This requires libasan to be installed.

Building requires the ISA-L build requirements as well.

Acknowledgements

This project builds upon the software and experience of many. Many thanks to:

  • The ISA-L contributors for making ISA-L. Special thanks to @gbtucker for always being especially helpful and responsive.

  • The Cython contributors for making it easy to create an extension and helping a novice get start with pointer addresses.

  • The CPython contributors. Python-isal mimicks zlibmodule.c and gzip.py from the standard library to make it easier for python users to adopt it.

  • @marcelm for taking a chance on this project and make it a dependency for his xopen and by extension cutadapt projects. This gave python-isal its first users who used python-isal in production.

  • Mark Adler (@madler) for the excellent comments in his pigz code which made it very easy to replicate the behaviour for writing gzip with multiple threads using the threading and isal_zlib modules. Another thanks for his permissive license, which allowed the crc32_combine code to be included in the project. (ISA-L does not provide a crc32_combine function, unlike zlib.) And yet another thanks to Mark Adler and also for Jean-loup Gailly for creating the gzip format which is very heavily used in bioinformatics. Without that, I would have never written this library from which I have learned so much.

  • The github actions team for creating the actions CI service that enables building and testing on all three major operating systems.

  • @animalize for explaining how to test and build python-isal for ARM 64-bit platforms.

  • And last but not least: everyone who submitted a bug report or a feature request. These make the project better!

Python-isal would not have been possible without you!

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

isal-1.7.1.tar.gz (752.6 kB view details)

Uploaded Source

Built Distributions

isal-1.7.1-pp310-pypy310_pp73-win_amd64.whl (203.1 kB view details)

Uploaded PyPy Windows x86-64

isal-1.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

isal-1.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (231.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

isal-1.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (188.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

isal-1.7.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (238.2 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

isal-1.7.1-pp39-pypy39_pp73-win_amd64.whl (203.1 kB view details)

Uploaded PyPy Windows x86-64

isal-1.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

isal-1.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (231.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

isal-1.7.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (188.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

isal-1.7.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (238.2 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

isal-1.7.1-pp38-pypy38_pp73-win_amd64.whl (203.1 kB view details)

Uploaded PyPy Windows x86-64

isal-1.7.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

isal-1.7.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (231.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

isal-1.7.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (188.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

isal-1.7.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (237.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

isal-1.7.1-cp313-cp313-win_amd64.whl (202.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

isal-1.7.1-cp313-cp313-musllinux_1_2_x86_64.whl (264.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

isal-1.7.1-cp313-cp313-musllinux_1_2_aarch64.whl (233.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

isal-1.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

isal-1.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

isal-1.7.1-cp313-cp313-macosx_11_0_arm64.whl (188.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

isal-1.7.1-cp313-cp313-macosx_10_13_x86_64.whl (237.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

isal-1.7.1-cp312-cp312-win_amd64.whl (202.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

isal-1.7.1-cp312-cp312-musllinux_1_2_x86_64.whl (264.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

isal-1.7.1-cp312-cp312-musllinux_1_2_aarch64.whl (233.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

isal-1.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

isal-1.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

isal-1.7.1-cp312-cp312-macosx_11_0_arm64.whl (188.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

isal-1.7.1-cp312-cp312-macosx_10_13_x86_64.whl (237.0 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

isal-1.7.1-cp311-cp311-win_amd64.whl (202.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

isal-1.7.1-cp311-cp311-musllinux_1_2_x86_64.whl (264.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

isal-1.7.1-cp311-cp311-musllinux_1_2_aarch64.whl (233.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

isal-1.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

isal-1.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

isal-1.7.1-cp311-cp311-macosx_11_0_arm64.whl (188.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

isal-1.7.1-cp311-cp311-macosx_10_9_x86_64.whl (236.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

isal-1.7.1-cp310-cp310-win_amd64.whl (202.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

isal-1.7.1-cp310-cp310-musllinux_1_2_x86_64.whl (264.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

isal-1.7.1-cp310-cp310-musllinux_1_2_aarch64.whl (233.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

isal-1.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

isal-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

isal-1.7.1-cp310-cp310-macosx_11_0_arm64.whl (188.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

isal-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl (236.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

isal-1.7.1-cp39-cp39-win_amd64.whl (202.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

isal-1.7.1-cp39-cp39-musllinux_1_2_x86_64.whl (264.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

isal-1.7.1-cp39-cp39-musllinux_1_2_aarch64.whl (233.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

isal-1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

isal-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

isal-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl (236.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

isal-1.7.1-cp38-cp38-win_amd64.whl (202.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

isal-1.7.1-cp38-cp38-musllinux_1_2_x86_64.whl (264.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

isal-1.7.1-cp38-cp38-musllinux_1_2_aarch64.whl (233.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

isal-1.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

isal-1.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

isal-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl (236.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file isal-1.7.1.tar.gz.

File metadata

  • Download URL: isal-1.7.1.tar.gz
  • Upload date:
  • Size: 752.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for isal-1.7.1.tar.gz
Algorithm Hash digest
SHA256 845aeff4ffb3a2ea24bde22b165f99aafb1ee92f5da3930cb23638501e8332c9
MD5 52af7e3b239dca5a16878c3f9cb23099
BLAKE2b-256 e01d13e35ebdbf8c63fc16ac8d04fdd0cb1aaf44df1ca856a3304e9b53822d98

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 173fdb22b65b31814789506eb57896cfd301c9e88a64b60558cd92c065fcb6c4
MD5 ad524c26f21523ab2d0cb2259248f2f0
BLAKE2b-256 b37d4a9f1c33d3175b6a4de4a23641caa569df4a8df1f915ab38c8e98e0fe162

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c6b20b14dd1c95a28e1edf8c5485a99f37389fa4cf57e08985f4ff116e188fb
MD5 b00369dcebdce097855fc33dd84cabbc
BLAKE2b-256 43f46b6fba803ead6824553364c11b483f7d921b30b607a512fea75e6dc11cf3

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52a16ae2639823f107d3d5019940bd15a360645e6ad060d5a22109bfb2427903
MD5 b999446d516be656e49179b209e3e2cc
BLAKE2b-256 2de595a8c1d40decbb85f14e4b530c359a13d2712e5f9b1e5a99a0d94a17e5c0

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 087fab66742a684cacb530caeea2a36373116121fee57c4198f5660e3b71ebbf
MD5 34f559d6fdc97e8fbfd9a5cfcacfaf41
BLAKE2b-256 fde5884fe7bf5bc8009b68a2a5ca7e024b2589e748b8774980339c7fa9dbee5f

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 65cf8bee54aa98552b2be0a3d802691a9000c7e95ef499ba01d9c967023db7a2
MD5 bc5b80b5a5f54381088e51b3e453dfb5
BLAKE2b-256 515ab65b38a6697c49dd19d60bb4f11172a0cbbd782e71c24d748a74ed5424b1

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cb32e16c71e48783dfc324e700e9c7e949b4107abfc5595e8efa5f391ea6f103
MD5 1df846023073531a031a7f2f69f81dfd
BLAKE2b-256 e4b2e4a22228f9ded1a0b94515245594bde408067ce5c42bf6995023cf5ef45f

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e4ec87cf96418b8c378758745389d43f867b89414eb15cf558883dc9479828d
MD5 f7df1dcf57dea40b334a0baf17de57ee
BLAKE2b-256 d152b53872441f1fc3eef1aae8307c858abe740addbb878070947897787927ab

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b63531308dfe8583f1c66c6b4120cc5a45e9d7f6ab6e00050ebe1b50307fbabe
MD5 a5083063e9e550344e7f8c935095c253
BLAKE2b-256 5515c352de07d4bc494d0e0e437b966aa503c99ac919698028ab34300ae3c9dd

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3fa60adf669da34a526fc0f233da181884f4784cb817fb743b31c2ef6b67873
MD5 ad3b1f5e11378828d335be28fcaa3168
BLAKE2b-256 90f73212cf9246a1ae873c20f7cb5dab991c3195c8d8b83937d8c3275c0ae036

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6b5c52ddeb100676bc49075ac70e9798333960a7e4ebc75307e3967558b7235c
MD5 0f49947e099696602764963b2fed9f79
BLAKE2b-256 2fd55f6429191cb1ebf793c58ca8084602d048df721fe9d39f7558192a4ab9c8

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 83d93be2bacd44fad0b8846fb9eb5c763cf404e21f69725af88c1c4e3288ee0a
MD5 15cbb77113d4be587a9df13a9b7821bb
BLAKE2b-256 6ba5d4972a2072030e2d7d66c01d6985e27c997894d98429326e7fc0d640f4cc

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67a1218cb4858a8e90ff383c004ea5fb00b7194cb5b7850e6ca96b941dd116f6
MD5 2deeae94688b9725463d60100418d026
BLAKE2b-256 7cf3276d2d1bef350dcc93d98184d4abfe9b6275588ffb5e58d45a86a398e888

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2e7ff6a4b8af2bf60021e7506802060abdefc03986332282163fed954371895
MD5 de9db00c1bc224c071a81fd9066c05a9
BLAKE2b-256 208ef61a6ca539b86ac731a26a1efe16b747773e3d7bf74b6f4f392781dc436a

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9039d8869f051b8d535b3a3ca9bb8c05070063f0ed508d5721abb533fd6aaf6
MD5 0101b6b36ace510c0dbdfc936f7b2473
BLAKE2b-256 61bac586ad66caf1fec617bfa51766bcda082e75b8b66126455bb7752b0a72e3

See more details on using hashes here.

File details

Details for the file isal-1.7.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6044cce89c1497c2523076124af75d96679fc1df6ae30b0ad7f95039833aaeb
MD5 c38d1347d52b1426f128d3ea65c9363b
BLAKE2b-256 0e2d36e8100ef8345c7f8bdd8bf4b429c4c3ddfb3104627fe60472864f12b21f

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: isal-1.7.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 202.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for isal-1.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 250102c0eb7e3e184dec7e1147d77bacf7191a86ecd97b75199548a384570757
MD5 b81d23d250215b396c54c41f355aa4cd
BLAKE2b-256 1ddf9ac52b3a5b8605eff2e4e0a805c156dd4e1332acc919b64201033788226e

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3944f7814ffa0a5d054ad3472bc63457bf91535669fe4fae78fcb4b6384efcaa
MD5 34bfdf6bafe3a990804c5d18a3735f3c
BLAKE2b-256 1f6eb3f051c88a16a8930596edcb47230e3fbe3f30fc52c16e1a50b3723e4b04

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 013f91d24c1cece0d1e77daa5f2e33b384e3ffaa9b769d371d84399c8dcf1c20
MD5 588c77cb4631cd0a6f12995f12d79c84
BLAKE2b-256 3c3b993413f15340a5c2e87f4aa9881ddfbe025abcd8e1132d5f322218df590c

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2474249bc5789656e6d7dd1fee1394aab5f46f7835c6ff6c0adc0f9320645ce
MD5 3995da4b4e715fb005783b0c4477d1fb
BLAKE2b-256 c3def85284cd757028fc388edb694e13371b04372546cf21f6ee66fd16ddf7ce

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 446d8392feae87423a589e21d7b9dc218ec2bf96cc36c05b53fc49036ac95e5b
MD5 7f4911c85b09f42dcdfbf074b0a830aa
BLAKE2b-256 178cfea8c856eb35c739cea3d886153e474ccbff07326a29565805189de9064e

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e01b1a96e4d114919d2a3ba5ad188b53c17fe6e3ed842888498367f26dce567
MD5 cfa26802f5cce8ebe27ff7cb27bcb23c
BLAKE2b-256 f8e9a9fd7096f38b329b8703f0612b95790aecabc26a45ac2130c8e248dc267b

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e96d156e402aaf216483ae4042797c9c21a9f74ed7a347d33efe7d6f4b8a8d57
MD5 e4a9870e69cd0218c1528e585b1aa861
BLAKE2b-256 1d0d9225610ea8274351614fbf306e15ce672a7216102b8f7f2582e86223006f

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: isal-1.7.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 202.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for isal-1.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 71598c40a98b7f134be4942e9ea880c9b04b83ff417fbfc074564a0be30f9ade
MD5 693af53ec962547e86170c15ca929b4a
BLAKE2b-256 b10434160270b00f8e07d3181153e04f85557be5cd7acbb68f2061b04deab798

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23d3516f10ddd4b30fad4cf490a8cf77040887c5257ac0d5db17decaf80e5f12
MD5 c726cb2300bd6cfab1b7320edc768e55
BLAKE2b-256 19dd3e1eb95f44a4ad46a646064dec1dc8360d043a9ce114773eab4f5b132790

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b35d43f9986d7e9bc8f15a6a0671b5e43303a19fa5aba12d1bde327500bd246e
MD5 679ac67ef70919572bc8ec97968089a4
BLAKE2b-256 34ad07e398ac03cad47b51ccf224674e0d71dd2c3bbd4e7eaa50c91d2d9c123d

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2d931e35e70a2d0e32124b4a2d5aeb5b1016b497c95a75a36ddfeaa68d06645
MD5 e038049b67d353daa4526605bd119a79
BLAKE2b-256 7f460c0a1dafc2c5ee4f1bb6f87a09841bf37e4148dbda4f088ac6a3fc0e57c8

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24dda4a2c3eae0e1aaf16283b71f6b4ad75d7784d9e7d9545330bfcd274699bc
MD5 535d2ca0bd8406ff927ccacd5d2d3f0e
BLAKE2b-256 ee6f2064c978ea6912dbc10e5ceb2ae535563222f8758ee5b8d74a70ecad4424

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5c7608413d557c81eaa010ae98ea9a3cd45f746b356c50ca0cfb8bfec862c8d
MD5 9d67bed9dac8cb978c3fde06bb4346ca
BLAKE2b-256 ab55d3e6d5137025ea167c2ef8d0efa2eef8144db9b8b46069eb676cdaafd4b1

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 664751ed4107242d727cf5d7b963a814de9aa6458c2dd13bc0ab0c1ead134ef9
MD5 43aec7d5907d5ec4651e5eedba5140dd
BLAKE2b-256 7c4c4ea75a308ef32ac4f7585fddf9664ab2a3d2f5129609fe7696c4e3ac7be0

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: isal-1.7.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 202.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for isal-1.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eefa9b3f5bbb36e080fc836f7a33bc954b7407b54d135f17e826115f6dd4dad8
MD5 6def3cae8640451e72e8f2b77cea8df5
BLAKE2b-256 683f5518209be6a56feb53a6312d03cf799585cc729f0913977364c928868430

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5629563f397fe6ab704932a06d68eac931fe42c7022deb3597bc4c947d8ad0c
MD5 621cbf7af5f6240f99452f34678ca40e
BLAKE2b-256 1fff4012b232178db2ac8b72180676fc93e5fe792460fdafd64797b847bc4a7e

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 030a3829d581121a06f703a94d0735d10412e642c8e175ce65b75ad2d44dd610
MD5 25481c1238ac66451dbdc87c147d8d7a
BLAKE2b-256 3b3119164f3a1a7aefce24cbde4134169def7199616d7077bef308bce44a3345

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0190d3c2053dfddd087fcbb1c9aa0abf828e6322450e0ccf622ca4e0c3ffa17c
MD5 75bf653ac6852e09c533a505241854f6
BLAKE2b-256 f9a9c7030e64c9d0b3a1b564f34a89dbef8592d10539a92a731f2b4977d2607e

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6b9f44c995b0e2e55d04393f25eb2ac5a76fbcf0a8f0a8774c28e15954ab678
MD5 2fdca8ca58bbfaa08377b2ea68eba3b6
BLAKE2b-256 eeb987c08834209aea7465e4ec372cfadda893f7159803680dcf92ef2f5ee90e

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 186d64c89ca417ce99a690afb97d5cab2acc5735e92e8831f76a8f6f78b95469
MD5 2ad61c15e71746292eeec0d68df3f9d6
BLAKE2b-256 8f4c969a8c530781904177984fd6e239e9d9ac70d7b77717b80efef55b963b77

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b15019d6fb4260fc05e894e500bda2892a21b6099e5e0c03140dbcfa370ffd67
MD5 f843cd6335127e8efe120a23c24f341d
BLAKE2b-256 58a0e406d32ff71928790e494746b41a9998ed5ed0736b06057e304a308fd04c

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: isal-1.7.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 202.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for isal-1.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6957c7fe0414f0bb610f665017dfbf3e84bb56d8ed0215ed6aad6acb1dcfd1d6
MD5 7bb97a5fcbe4c11197ecb46b29cfd9e0
BLAKE2b-256 e11d6dc03910bd22863f880fe01e583867eee77c7a61c11f8600a73f7d28f695

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dd2b19e663045480f54e8f2e5b7658d75d27a71bf666ae18421c8a3ef8c2298
MD5 e3f952a5a51921f98d5677fe7c0d8899
BLAKE2b-256 33e60c80eec0d67127c45fd5dba807865f56a2338dc585af154e755b67fef643

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74a0075a31357500bb981844f734f624faa2c1ba401b4bc4679ad276fd01e662
MD5 98f8442d99ad516a61894d03cfdcdb9b
BLAKE2b-256 6b538454150b20f9636716a6cf073c3b9c6cf4c53dc56788471d8261b21234e6

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ddc41abc2404acee846d5c18639824b93ec540b7d4a94ff67275da578c53075
MD5 a381e941df4833445908780ea3624077
BLAKE2b-256 2378b7c129802a2fb275efbcec17555d9a6bc68fe2b5b07921065f5b46ed10e8

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1dc355ab52f4152bc9d4836ebec681e2c002b44ffb46049742f2ab470d18f158
MD5 e1bce7440324863c25f48ec8217a8a8f
BLAKE2b-256 0e2a1a883542b8fd1d0ca3fed93ad937f543b30ba20d04d28b952a9cf430f3b0

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1059af789db05880c27045c785d8c069d0c8cd9213156032d100327b565df9c9
MD5 5eeb6041b6788c706fc14024a40ab56f
BLAKE2b-256 2bf232546b429de7f607f2cd3d3ef2a54d8f2b1703d63b251feba8e3b5519d77

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 396c4448a354e619d40376d741cfbfdc102396b3abf9d7a7d2ede26b79e16a79
MD5 12b84b4eff400dc5c46a5d274933a321
BLAKE2b-256 037e4e5bd8340ad7f6907f660f7bb8c6bd32660c6d794ec21d3a85e580013ca4

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: isal-1.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 202.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for isal-1.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d856e4a4d812b13f845bee8f7cc39b29ef464c573b19ce8385e69ee8ea43f123
MD5 b32613250f29deda4a4068a32a2c4e68
BLAKE2b-256 0dc4f4c33fe2c0725dba8bd7b97b2094015cf56236b17cc881753b6bff4fa2fa

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 567edaad95122c45cf2d9abe9b9e1ab67a40e2c4bf2be7d46ae0cacfbbca9948
MD5 b1d7181d914788d4a8c882fe75bd5de6
BLAKE2b-256 9592adeb15b0e073965a0a168baed4c324e7fd114f727830c2bfb7ffa4b769af

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94a193870521982ec0fbd43f846a24d19ea11f91567ba083eead11a4fe132f45
MD5 a2cc7789fd848ada822bf75acef31e6e
BLAKE2b-256 89e41588205290cc6630f301ab45dff623730c2084ea5cc4c55c6b7965551101

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6731b60a65223ae6852de73e50e20a4f52110f6cf1548af3467baa769d3bf260
MD5 5901ed8bf984cfd752ff1c85e72c75f8
BLAKE2b-256 99ca5b2eb202325787908fab55faec6d1cf658bfd6572ff65a4fa8d7ff3ff0ea

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a0455e0f4deb89fc9f07fb8aff0d45d6b0069135556583e589e70b12e9e0884
MD5 f8f8f8a93304c581214acd1316c28108
BLAKE2b-256 2b5ef825349a74d0332a874d17e7b7519d67d95182bbbe2d117b2e126b8c2cab

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbe408c22e7ae828393070a43339283dc856f45d843f88d096bb55ccfed83f73
MD5 0e5bdb47503946b393d542981942689d
BLAKE2b-256 3163a935a24ac62fda9c4417d6f8d3f4863e7c5886fa20310ecdb70ad0bb3bc0

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: isal-1.7.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 202.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for isal-1.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7ee4d21cf93f8db234b3ea55614c4810af5be4cc9aa28a685b36d2b086ef0bf8
MD5 ebeff9cd4dff49bc46ca7d24b5a36914
BLAKE2b-256 a6b47c37a077cd572814945a0f1dd12337548b841daa999bd4cc2376744ac07d

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d546e4650c5a09d0c657c81ffe50121aab69ae5d2525562406119209253912bb
MD5 8dc2418f9302ef0c81680ef79e8d7676
BLAKE2b-256 61c318bb747f85252933109a17603af995e2e39095c82eb25e63836e25f95eea

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df32b13f72523f5a44ac93d54bb64558292a7729474cd93358a46819537b7ccb
MD5 1b82b21aa4b75c0594154718bf7d2bce
BLAKE2b-256 fa2ead0b0229a4498bcffe88ee526a1107b1ce074ef6fab56bd29c03bfa630a7

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 506d19fc2f44b3b68e894344ec8e51551b3fa0f7c7efa6e3dfa1d31657c27ddd
MD5 b5f6668f2215f0758f461937edfb6ada
BLAKE2b-256 1442f0441b2615694208270974e5b91f4dad5f96179832559174d4d8278f8767

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efdb078df10b915598647566963f15459f04551748a5aafeb7b66dd0c1ae0a18
MD5 ea76a40b3f2d228defb524864282cd59
BLAKE2b-256 a46bf70ed4ac189bdbf92ee1d6d1460c4218877a17eda98343b655763901b55d

See more details on using hashes here.

File details

Details for the file isal-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for isal-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8caf418d784b144cafe493f95c9d842b4472a5490c3344c189d404ea9f6e2394
MD5 9b532d4fdaffe129eae69affbfd3a1af
BLAKE2b-256 c3492d155e11682d9a5dbb09bae831f7bf4e694b6528db291ec76f4fef21b004

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