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 three 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_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.

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.

  • isal_zlib methods have a data argument which is positional only. In isal_zlib this is not enforced and it can also called as keyword argument. This is due to implementing isal_zlib in cython and maintaining backwards compatibility with python 3.6.

  • 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.

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.

Acknowledgements

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

  • The ISA-L contributors for making ISA-L.

  • 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.

  • 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-0.10.0.tar.gz (677.8 kB view details)

Uploaded Source

Built Distributions

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

isal-0.10.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (295.1 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

isal-0.10.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (274.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

isal-0.10.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (295.2 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

isal-0.10.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (274.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

isal-0.10.0-cp39-cp39-win_amd64.whl (253.7 kB view details)

Uploaded CPython 3.9Windows x86-64

isal-0.10.0-cp39-cp39-manylinux2014_x86_64.whl (969.3 kB view details)

Uploaded CPython 3.9

isal-0.10.0-cp39-cp39-manylinux2014_aarch64.whl (999.2 kB view details)

Uploaded CPython 3.9

isal-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl (305.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

isal-0.10.0-cp38-cp38-win_amd64.whl (253.7 kB view details)

Uploaded CPython 3.8Windows x86-64

isal-0.10.0-cp38-cp38-manylinux2014_x86_64.whl (989.6 kB view details)

Uploaded CPython 3.8

isal-0.10.0-cp38-cp38-manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8

isal-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl (304.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

isal-0.10.0-cp37-cp37m-win_amd64.whl (251.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

isal-0.10.0-cp37-cp37m-manylinux2014_x86_64.whl (945.8 kB view details)

Uploaded CPython 3.7m

isal-0.10.0-cp37-cp37m-manylinux2014_aarch64.whl (975.0 kB view details)

Uploaded CPython 3.7m

isal-0.10.0-cp37-cp37m-macosx_10_9_x86_64.whl (303.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

isal-0.10.0-cp36-cp36m-win_amd64.whl (251.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

isal-0.10.0-cp36-cp36m-manylinux2014_x86_64.whl (942.1 kB view details)

Uploaded CPython 3.6m

isal-0.10.0-cp36-cp36m-manylinux2014_aarch64.whl (970.8 kB view details)

Uploaded CPython 3.6m

isal-0.10.0-cp36-cp36m-macosx_10_9_x86_64.whl (303.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: isal-0.10.0.tar.gz
  • Upload date:
  • Size: 677.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0.tar.gz
Algorithm Hash digest
SHA256 3f89471065c2837d1235877dbdcdbd8b7649068723026b0582010fa106a71ff3
MD5 ccef9e01e95192b79a6696e0eb9212d8
BLAKE2b-256 239f581cf93edf3d761929aa8c489fb2a749012b911b25273b8ad9e90bd4b32c

See more details on using hashes here.

File details

Details for the file isal-0.10.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 295.1 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f63d8da54c17c79cfc510f8510accb8b029cf049f2e3e88889d0a1f3d2762e83
MD5 f4e1d5fb583b80f001e773c624c2011a
BLAKE2b-256 49efdd19adda77699ec319d0f4eef1c7013623768deb95d990f50846de73779e

See more details on using hashes here.

File details

Details for the file isal-0.10.0-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 295.1 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 170b8bd8fc070eeffafcb307c7b6903101ba2fd83556a4cf3a27f3e905a37a96
MD5 a912385211891e91a4d692bc01854fa9
BLAKE2b-256 35f6896fc9e16768e528b4ae4e613abbaac35d6170545fbfe5615439699b5b12

See more details on using hashes here.

File details

Details for the file isal-0.10.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 274.9 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3e32e5917b1a6d5243850fcf2c06795621b93906e84b975c2d0f1e35602649f
MD5 015d9024d80fd694d61154ab921f30cd
BLAKE2b-256 087715c602b93d865dfbe1a7e55b46b7eaec93e4fea06611b918a78daabc3def

See more details on using hashes here.

File details

Details for the file isal-0.10.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 295.2 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a41dfa9d6eff4a14ecba961ff8d27f186103e061833bc68b8c2b75fed144a8f3
MD5 06f99f137eb32b6d6141787364cae474
BLAKE2b-256 68178c53934d5d6bbb3e6cdbb77bba07cc17683103672836b1ae5e2bd26b82ec

See more details on using hashes here.

File details

Details for the file isal-0.10.0-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 295.1 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aa08af6755310cf1c906c837e4254e38cc0e735ec5a1758210b927c95504d3fd
MD5 426bfd71d6266a56a2d2ee548fcd5fb9
BLAKE2b-256 c3ae2c49d93c46c5dead56465897aa3ec760b48e7dfa578dcf899cd1dc44ab54

See more details on using hashes here.

File details

Details for the file isal-0.10.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 274.9 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f177283963f5a8d749fdb2337534849b410b63696722b192a0dcf7c69279337
MD5 ef0783f3ba7cd4c1e2453633543fa857
BLAKE2b-256 a71772301072b529c148919dfb2b974d3d07d36b61ab7e0590cf17bac3883fa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: isal-0.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 253.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f79c581257bdb771dbc15090eeb7e588798ec01ca2ade7d818dbf0a1e0dabd69
MD5 f08fca79afa64cae1dc76b96b93fe393
BLAKE2b-256 1adce8e5336fdc98af5743bd24b85a66d1cd8ae26368eade551a9bde11110640

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 969.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e8e940e761e4331eb7bb1e018cf0d9a9b3aa2903d20dffabf538cdf6cfe4e11
MD5 37ce46db624e401ee01897b422e41481
BLAKE2b-256 517f5f818cd979be3b9afbc9765d8bee84bdb4c6f496a760585484441201ac21

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: isal-0.10.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 999.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15244b2f322db51b8b82fa28fcdd04c834b6a48d35370a291748109a2d99f7ef
MD5 1e495e75ab282fa6faa4576723661210
BLAKE2b-256 70d1c1c2f2a48045ac32a15d7189f920c4294d1aef2e2202df4960e2c71febc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: isal-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 305.8 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 048b42e400c47f73c74ef954ffda2fc19343a2361f01ea152d9dce0e86e1774f
MD5 60a9ae5b7a5bb4a5fe6c3a5e32e700b5
BLAKE2b-256 b9bf3a266bd2f4bae2feb9fc333fdadce3d7a4140d98ad11647dc833fa14e3eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: isal-0.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 253.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cb39030a48b5d2e500a3a1ab45cf86ea952f138b01a8f73b8119e00929bfa706
MD5 a883427b16b3d9cec7524400bf04abb3
BLAKE2b-256 53627600e568848065316002a3657f06b7a154d2319b698f5a812a0a181c217f

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 989.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e2d81fafda8c6c6f4646f97e9f62c7a675304699c66e60ab8420962f507e056
MD5 be47e245a9fe339ecca7424905bd6021
BLAKE2b-256 e295630af4da070e9e47740c5be98f8b234d483d676161a63b802a5325a45145

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: isal-0.10.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a783a7296545bac55223cb19ff1ac756252e8b54899cfcbdb36c4c6a354ab269
MD5 8d3f9973f426e3ce864d1b1d3ade701e
BLAKE2b-256 0338f82803a87778cc7da5f35c51c03879fc42b6f99aed096cdc1dbc35a0d8ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: isal-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 304.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99a9fa6bbd7dab14c3ff80f6c52f206cc28abd9f4b086eda98e54b447ade8fbf
MD5 ea964dc93b7b84e3f4516c4c232bb0f2
BLAKE2b-256 56883d278f42eceb847fb230a2d7a59dfd56daed60b0db36bda9f46adc614121

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: isal-0.10.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 251.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5d6d7cec728261fea0e68041a634750183fbdd0c0c4e179ba6974136f843c8d5
MD5 0c788577730f37631acd2f8784518511
BLAKE2b-256 c0d90529bb81b6eec79c54bbf3bccac6f65c1a07576eab6685a6faf54068e374

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 945.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58f01e3055b975e4db8e8cb2f49fdef2e1a5f00cd5dccbd743341c35160c74f1
MD5 037ab39913a57f02fb8a4ce26a0af4f6
BLAKE2b-256 f119e14dbe32ca4e7f8817c6034de1d14ef4c984b89bfd459d40869457dfa87e

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: isal-0.10.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 975.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25d5f8ddda78becfaa33697c6ea14011592abef621e1d65d7917c8120da4f772
MD5 9ed174c75cb9f41f55b8c2bcc67401dc
BLAKE2b-256 1f811ff23a96f508eaf1ac188d8b9f027b31d56f19920640ca71e1ae1ee0ba72

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 303.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec6f761c5f89ca387bf6d684e639c99f8247abf2029a894f174394f59c4e15eb
MD5 82d4a176b52731624e5ee6c06cca6ee2
BLAKE2b-256 b68ff7ef6a5f33a2d42095d18dd7c65323b733a7a4e675020dba5355b7045f78

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: isal-0.10.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 251.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 528db67c1d84ab0e00cf59301f1bc87975f80c7f8eadcfd07e6354ea67300706
MD5 cb47f753496f1e2348c21140823d9215
BLAKE2b-256 dccba398bd380b8ce900617cdbc4cf67f174a7490439dbf36290ad3c7a2a89f7

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 942.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47af91b5118d7dc1254ac51cec7314e13d4588b645a27f160dfe695177d90a00
MD5 9559f2a1650196a1da3fb397cd49225e
BLAKE2b-256 8b1d12fc9d5316d09070dc640db618d981f03c1d3361ebebad0fbd15cb56e2db

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: isal-0.10.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 970.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f39a1991154332584700080abd1c4c605bfc90c4634430d703c5c0755b23747e
MD5 95b8bc8ad72ed353a52663671136a8eb
BLAKE2b-256 ab85539820ced86b41910b21d5efd438ad17ee40757c19ead7013ca6b1df9433

See more details on using hashes here.

File details

Details for the file isal-0.10.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: isal-0.10.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 303.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for isal-0.10.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef1ce02ebd203e72256f31019300833f621fef2b7ebe0e4573678b23149d8522
MD5 b6c7e066a44b12251b6a40d1063c4687
BLAKE2b-256 acdf42e2fa295739c886a74fc3e4a4d7511607ed1aeef40b338ff4e57ebadb66

See more details on using hashes here.

Supported by

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