isal


Nameisal JSON
Version 1.6.1 PyPI version JSON
download
home_pagehttps://github.com/pycompression/python-isal
SummaryFaster zlib and gzip compatible compression and decompression by providing python bindings for the ISA-L library.
upload_time2024-03-11 12:54:43
maintainer
docs_urlNone
authorLeiden University Medical Center
requires_python>=3.8
licensePSF-2.0
keywords isal isa-l compression deflate gzip igzip threads
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://img.shields.io/pypi/v/isal.svg
  :target: https://pypi.org/project/isal/
  :alt:

.. image:: https://img.shields.io/conda/v/conda-forge/python-isal.svg
  :target: https://github.com/conda-forge/python-isal-feedstock
  :alt:

.. image:: https://img.shields.io/pypi/pyversions/isal.svg
  :target: https://pypi.org/project/isal/
  :alt:

.. image:: https://img.shields.io/pypi/l/isal.svg
  :target: https://github.com/pycompression/python-isal/blob/main/LICENSE
  :alt:

.. image:: https://img.shields.io/conda/pn/conda-forge/python-isal.svg
  :target: https://github.com/conda-forge/python-isal-feedstock
  :alt:

.. image:: https://github.com/pycompression/python-isal//actions/workflows/ci.yml/badge.svg
  :target: https://github.com/pycompression/python-isal/actions
  :alt:

.. image:: https://codecov.io/gh/pycompression/python-isal/branch/develop/graph/badge.svg
  :target: https://codecov.io/gh/pycompression/python-isal
  :alt:

.. image:: https://readthedocs.org/projects/python-isal/badge
   :target: https://python-isal.readthedocs.io
   :alt:


python-isal
===========

.. introduction start

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
<https://github.com/intel/isa-l>`_ library. The Intel(R) Intelligent Storage
Acceleration Library (ISA-L) implements several key algorithms in `assembly
language <https://en.wikipedia.org/wiki/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_.

.. introduction end

Quickstart
----------

.. quickstart start

The python-isal modules can be imported as follows

.. code-block:: python

    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
<https://python-isal.readthedocs.io>`_.

``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 <https://python-isal.readthedocs.io>`_.


.. quickstart end

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
<https://python-isal.readthedocs.io/en/stable/index.html#installation>`_.

.. _differences-with-zlib-and-gzip-modules:

python-isal as a dependency in your project
-------------------------------------------

.. dependency start

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']
    },

.. dependency end

Differences with zlib and gzip modules
--------------------------------------

.. differences start

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

.. differences end

Contributing
------------
.. contributing start

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
<https://github.com/rhpvorderman/python-isal/issues>`_.

.. contributing end

Acknowledgements
----------------

.. acknowledgements start

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

+ The `ISA-L contributors
  <https://github.com/intel/isa-l/graphs/contributors>`_ for making ISA-L.
  Special thanks to @gbtucker for always being especially helpful and
  responsive.
+ The `Cython contributors
  <https://github.com/cython/cython/graphs/contributors>`_ for making it easy
  to create an extension and helping a novice get start with pointer addresses.
+ The `CPython contributors
  <https://github.com/python/cpython/graphs/contributors>`_.
  Python-isal mimicks ``zlibmodule.c`` and ``gzip.py`` from the standard
  library to make it easier for python users to adopt it.
+ `@marcelm <https://github.com/marcelm>`_ for taking a chance on this project
  and make it a dependency for his `xopen
  <https://github.com/pycompression/xopen>`_ and by extension `cutadapt
  <https://github.com/marcelm/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 <https://github.com/orgs/actions/people>`_ for
  creating the actions CI service that enables building and testing on all
  three major operating systems.
+ `@animalize <https://github.com/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!

.. acknowledgements end

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pycompression/python-isal",
    "name": "isal",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "isal isa-l compression deflate gzip igzip threads",
    "author": "Leiden University Medical Center",
    "author_email": "r.h.p.vorderman@lumc.nl",
    "download_url": "https://files.pythonhosted.org/packages/50/a8/25887c43941b2a6ca85529e242fd8e57906e6047fde51ee36510f9d525fa/isal-1.6.1.tar.gz",
    "platform": null,
    "description": ".. image:: https://img.shields.io/pypi/v/isal.svg\n  :target: https://pypi.org/project/isal/\n  :alt:\n\n.. image:: https://img.shields.io/conda/v/conda-forge/python-isal.svg\n  :target: https://github.com/conda-forge/python-isal-feedstock\n  :alt:\n\n.. image:: https://img.shields.io/pypi/pyversions/isal.svg\n  :target: https://pypi.org/project/isal/\n  :alt:\n\n.. image:: https://img.shields.io/pypi/l/isal.svg\n  :target: https://github.com/pycompression/python-isal/blob/main/LICENSE\n  :alt:\n\n.. image:: https://img.shields.io/conda/pn/conda-forge/python-isal.svg\n  :target: https://github.com/conda-forge/python-isal-feedstock\n  :alt:\n\n.. image:: https://github.com/pycompression/python-isal//actions/workflows/ci.yml/badge.svg\n  :target: https://github.com/pycompression/python-isal/actions\n  :alt:\n\n.. image:: https://codecov.io/gh/pycompression/python-isal/branch/develop/graph/badge.svg\n  :target: https://codecov.io/gh/pycompression/python-isal\n  :alt:\n\n.. image:: https://readthedocs.org/projects/python-isal/badge\n   :target: https://python-isal.readthedocs.io\n   :alt:\n\n\npython-isal\n===========\n\n.. introduction start\n\nFaster zlib and gzip compatible compression and decompression\nby providing Python bindings for the ISA-L library.\n\nThis package provides Python bindings for the `ISA-L\n<https://github.com/intel/isa-l>`_ library. The Intel(R) Intelligent Storage\nAcceleration Library (ISA-L) implements several key algorithms in `assembly\nlanguage <https://en.wikipedia.org/wiki/Assembly_language>`_. This includes\na variety of functions to provide zlib/gzip-compatible compression.\n\n``python-isal`` provides the bindings by offering four modules:\n\n+ ``isal_zlib``: A drop-in replacement for the zlib module that uses ISA-L to\n  accelerate its performance.\n+ ``igzip``: A drop-in replacement for the gzip module that uses ``isal_zlib``\n  instead of ``zlib`` to perform its compression and checksum tasks, which\n  improves performance.\n+ ``igzip_threaded`` offers an ``open`` function which returns buffered read\n  or write streams that can be used to read and write large files while\n  escaping the GIL using one or multiple threads. This functionality only\n  works for streaming, seeking is not supported.\n+ ``igzip_lib``: Provides compression functions which have full access to the\n  API of ISA-L's compression functions.\n\n``isal_zlib`` and ``igzip`` are almost fully compatible with ``zlib`` and\n``gzip`` from the Python standard library. There are some minor differences\nsee: differences-with-zlib-and-gzip-modules_.\n\n.. introduction end\n\nQuickstart\n----------\n\n.. quickstart start\n\nThe python-isal modules can be imported as follows\n\n.. code-block:: python\n\n    from isal import isal_zlib\n    from isal import igzip\n    from isal import igzip_lib\n\n``isal_zlib`` and ``igzip`` are meant to be used as drop in replacements so\ntheir api and functions are the same as the stdlib's modules. Except where\nISA-L does not support the same calls as zlib (See differences below).\n\nA full API documentation can be found on `our readthedocs page\n<https://python-isal.readthedocs.io>`_.\n\n``python -m isal.igzip`` implements a simple gzip-like command line\napplication (just like ``python -m gzip``). Full usage documentation can be\nfound on `our readthedocs page <https://python-isal.readthedocs.io>`_.\n\n\n.. quickstart end\n\nInstallation\n------------\n- with pip: ``pip install isal``\n- with conda: ``conda install python-isal``\n\nInstallation is supported on Linux, Windows and MacOS. For more advanced\ninstallation options check the `documentation\n<https://python-isal.readthedocs.io/en/stable/index.html#installation>`_.\n\n.. _differences-with-zlib-and-gzip-modules:\n\npython-isal as a dependency in your project\n-------------------------------------------\n\n.. dependency start\n\nPython-isal supports a limited amount of platforms for which wheels have been\nmade available. To prevent your users from running into issues when installing\nyour project please list a python-isal dependency as follows.\n\n``setup.cfg``::\n\n    install_requires =\n        isal; platform.machine == \"x86_64\" or platform.machine == \"AMD64\" or platform.machine == \"aarch64\"\n\n``setup.py``::\n\n    extras_require={\n        \":platform.machine == 'x86_64' or platform.machine == 'AMD64' or platform.machine == 'aarch64'\": ['isal']\n    },\n\n.. dependency end\n\nDifferences with zlib and gzip modules\n--------------------------------------\n\n.. differences start\n\n+ Compression level 0 in ``zlib`` and ``gzip`` means **no compression**, while\n  in ``isal_zlib`` and ``igzip`` this is the **lowest compression level**.\n  This is a design choice that was inherited from the ISA-L library.\n+ Compression levels range from 0 to 3, not 1 to 9. ``isal_zlib.Z_DEFAULT_COMPRESSION``\n  has been aliased to ``isal_zlib.ISAL_DEFAULT_COMPRESSION`` (2).\n+ ``isal_zlib`` only supports ``NO_FLUSH``, ``SYNC_FLUSH``, ``FULL_FLUSH`` and\n  ``FINISH_FLUSH``. Other flush modes are not supported and will raise errors.\n+ ``zlib.Z_DEFAULT_STRATEGY``, ``zlib.Z_RLE`` etc. are exposed as\n  ``isal_zlib.Z_DEFAULT_STRATEGY``, ``isal_zlib.Z_RLE`` etc. for compatibility\n  reasons. However, ``isal_zlib`` only supports a default strategy and will\n  give warnings when other strategies are used.\n+ ``zlib`` supports different memory levels from 1 to 9 (with 8 default).\n  ``isal_zlib`` supports memory levels smallest, small, medium, large and\n  largest. These have been mapped to levels 1, 2-3, 4-6, 7-8 and 9. So\n  ``isal_zlib`` can be used with zlib compatible memory levels.\n+ ``igzip.open`` returns a class ``IGzipFile`` instead of ``GzipFile``. Since\n  the compression levels are not compatible, a difference in naming was chosen\n  to reflect this. ``igzip.GzipFile`` does exist as an alias of\n  ``igzip.IGzipFile`` for compatibility reasons.\n+ ``igzip._GzipReader`` has been rewritten in C. Since this is a private member\n  it should not affect compatibility, but it may cause some issues for\n  instances where this code is used directly. If such issues should occur,\n  please report them so the compatibility issues can be fixed.\n\n.. differences end\n\nContributing\n------------\n.. contributing start\n\nPlease make a PR or issue if you feel anything can be improved. Bug reports\nare also very welcome. Please report them on the `github issue tracker\n<https://github.com/rhpvorderman/python-isal/issues>`_.\n\n.. contributing end\n\nAcknowledgements\n----------------\n\n.. acknowledgements start\n\nThis project builds upon the software and experience of many.  Many thanks to:\n\n+ The `ISA-L contributors\n  <https://github.com/intel/isa-l/graphs/contributors>`_ for making ISA-L.\n  Special thanks to @gbtucker for always being especially helpful and\n  responsive.\n+ The `Cython contributors\n  <https://github.com/cython/cython/graphs/contributors>`_ for making it easy\n  to create an extension and helping a novice get start with pointer addresses.\n+ The `CPython contributors\n  <https://github.com/python/cpython/graphs/contributors>`_.\n  Python-isal mimicks ``zlibmodule.c`` and ``gzip.py`` from the standard\n  library to make it easier for python users to adopt it.\n+ `@marcelm <https://github.com/marcelm>`_ for taking a chance on this project\n  and make it a dependency for his `xopen\n  <https://github.com/pycompression/xopen>`_ and by extension `cutadapt\n  <https://github.com/marcelm/cutadapt>`_ projects. This gave python-isal its\n  first users who used python-isal in production.\n+ Mark Adler (@madler) for the excellent comments in his pigz code which made\n  it very easy to replicate the behaviour for writing gzip with multiple\n  threads using the ``threading`` and ``isal_zlib`` modules. Another thanks\n  for his permissive license, which allowed the crc32_combine code to be\n  included in the project. (ISA-L does not provide a crc32_combine function,\n  unlike zlib.) And yet another thanks to Mark Adler and also for\n  Jean-loup Gailly for creating the gzip format which is very heavily used\n  in bioinformatics. Without that, I would have never written this library\n  from which I have learned so much.\n+ The `github actions team <https://github.com/orgs/actions/people>`_ for\n  creating the actions CI service that enables building and testing on all\n  three major operating systems.\n+ `@animalize <https://github.com/animalize>`_ for explaining how to test and\n  build python-isal for ARM 64-bit platforms.\n+ And last but not least: everyone who submitted a bug report or a feature\n  request. These make the project better!\n\nPython-isal would not have been possible without you!\n\n.. acknowledgements end\n",
    "bugtrack_url": null,
    "license": "PSF-2.0",
    "summary": "Faster zlib and gzip compatible compression and decompression by providing python bindings for the ISA-L library.",
    "version": "1.6.1",
    "project_urls": {
        "Homepage": "https://github.com/pycompression/python-isal"
    },
    "split_keywords": [
        "isal",
        "isa-l",
        "compression",
        "deflate",
        "gzip",
        "igzip",
        "threads"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f650dffb31f21f2053ff1f52a6f8136898c366b681214a6720344f905ac16517",
                "md5": "800ed3e9bae5227bcaf71c31d496af9a",
                "sha256": "97cba0af7a3c734fd4632a59198df9b762a0dfcac5b6eb9d15610f959617a630"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "800ed3e9bae5227bcaf71c31d496af9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 246078,
            "upload_time": "2024-03-11T12:54:32",
            "upload_time_iso_8601": "2024-03-11T12:54:32.575382Z",
            "url": "https://files.pythonhosted.org/packages/f6/50/dffb31f21f2053ff1f52a6f8136898c366b681214a6720344f905ac16517/isal-1.6.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "862d4838906312c3b7607d6c409afd64b63e90a9b43909086d988b8792adb480",
                "md5": "765414b7fb23debf5fabb05c9ed58066",
                "sha256": "d2ddcf285f487ec0237c440d9c9c490c7c784643ea97432c9b80abc7782b2ef6"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "765414b7fb23debf5fabb05c9ed58066",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 258339,
            "upload_time": "2024-03-11T12:54:16",
            "upload_time_iso_8601": "2024-03-11T12:54:16.414813Z",
            "url": "https://files.pythonhosted.org/packages/86/2d/4838906312c3b7607d6c409afd64b63e90a9b43909086d988b8792adb480/isal-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b91b84229e7233a3007d5048b9028b70f0b18ad09eb76ebaa3f9aab80931ef0",
                "md5": "fbc62210bb28900bd9aa3e11cd333457",
                "sha256": "c5c35b68f47ec6d4da2be605649ee3e43270592a661e66d3ee20e4b5d1548330"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fbc62210bb28900bd9aa3e11cd333457",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 261730,
            "upload_time": "2024-03-11T12:54:18",
            "upload_time_iso_8601": "2024-03-11T12:54:18.358963Z",
            "url": "https://files.pythonhosted.org/packages/4b/91/b84229e7233a3007d5048b9028b70f0b18ad09eb76ebaa3f9aab80931ef0/isal-1.6.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "832520d6be583874a27724424593f8f9f14100a63aed9542a7b883beab5cf33b",
                "md5": "9c8f63d50d16c9e946d58cac7c04e7a6",
                "sha256": "a07ee1ebdf0ef22eb4fff1332dbf74d31057cbce1994774dc0d8b281b27dfb9c"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9c8f63d50d16c9e946d58cac7c04e7a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 201364,
            "upload_time": "2024-03-11T12:58:39",
            "upload_time_iso_8601": "2024-03-11T12:58:39.864534Z",
            "url": "https://files.pythonhosted.org/packages/83/25/20d6be583874a27724424593f8f9f14100a63aed9542a7b883beab5cf33b/isal-1.6.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "943e13fecb7f154553aa8f6f3025b0cbf8a442db7e2f3b8c2863b70c7625d0b2",
                "md5": "4cf32c6f671db5b47caf5f9433fa2474",
                "sha256": "e5310b116ce25088487140f5863bc131d075b7bc57ba1f90f77a441b189f9bf4"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4cf32c6f671db5b47caf5f9433fa2474",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 246076,
            "upload_time": "2024-03-11T12:54:34",
            "upload_time_iso_8601": "2024-03-11T12:54:34.613681Z",
            "url": "https://files.pythonhosted.org/packages/94/3e/13fecb7f154553aa8f6f3025b0cbf8a442db7e2f3b8c2863b70c7625d0b2/isal-1.6.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9600d83b5482c974244e6ded708197a57c7aaabf455cd145327889d98aaf3613",
                "md5": "67a88334186e5f643dbe5538c5269cb7",
                "sha256": "c4ccbdd8d496cd688f1208a32dd1d7ba7f40a99ce463fc7f245a02ea3b979a61"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67a88334186e5f643dbe5538c5269cb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 258335,
            "upload_time": "2024-03-11T12:54:20",
            "upload_time_iso_8601": "2024-03-11T12:54:20.438565Z",
            "url": "https://files.pythonhosted.org/packages/96/00/d83b5482c974244e6ded708197a57c7aaabf455cd145327889d98aaf3613/isal-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "106a4b75c4d585d3173f00e0954aa24f150ba4762227777057965154405ad7a6",
                "md5": "c19ea58287fe1404bf5572ab69e243d7",
                "sha256": "d71efc5861abd3b6eddb2292d4937fb174685ca60afb305bc87415b97531e5e4"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c19ea58287fe1404bf5572ab69e243d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 261735,
            "upload_time": "2024-03-11T12:54:21",
            "upload_time_iso_8601": "2024-03-11T12:54:21.997991Z",
            "url": "https://files.pythonhosted.org/packages/10/6a/4b75c4d585d3173f00e0954aa24f150ba4762227777057965154405ad7a6/isal-1.6.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8f111d2c143d2bf5f842cb0ab44210b32bf48c2c1fb212461a5aa22cf54e5cb",
                "md5": "357b9b05bc5be4bba1dc89b63c581e14",
                "sha256": "6989c1f305b918ecdec4d0eba7b68274af1e7f7e6629b8356c29f9aff912ef32"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "357b9b05bc5be4bba1dc89b63c581e14",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 201363,
            "upload_time": "2024-03-11T12:58:41",
            "upload_time_iso_8601": "2024-03-11T12:58:41.435917Z",
            "url": "https://files.pythonhosted.org/packages/b8/f1/11d2c143d2bf5f842cb0ab44210b32bf48c2c1fb212461a5aa22cf54e5cb/isal-1.6.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa1e390ddf740b7d0dde2c69e6f8476d8cf5206bbd177706f305936f1cbd4801",
                "md5": "df812878228bff1a2ca61b27b0cdc55c",
                "sha256": "ae956d87f5fcedc5ba06371320d7c6a315d323ef2e2cbda8c8140d80aa7f1dfc"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df812878228bff1a2ca61b27b0cdc55c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 246116,
            "upload_time": "2024-03-11T12:54:37",
            "upload_time_iso_8601": "2024-03-11T12:54:37.475119Z",
            "url": "https://files.pythonhosted.org/packages/aa/1e/390ddf740b7d0dde2c69e6f8476d8cf5206bbd177706f305936f1cbd4801/isal-1.6.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b19436622a5b97ed9b0648e8853bcaade872abc040050c3ca5d775608baf85a5",
                "md5": "64b282867ab587940e73e54639340499",
                "sha256": "db80adfae5cfe2311274cade0d2b9f4ad250bf0aeb1fcc405ebfcf2cd228b15e"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64b282867ab587940e73e54639340499",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 258574,
            "upload_time": "2024-03-11T12:54:24",
            "upload_time_iso_8601": "2024-03-11T12:54:24.242114Z",
            "url": "https://files.pythonhosted.org/packages/b1/94/36622a5b97ed9b0648e8853bcaade872abc040050c3ca5d775608baf85a5/isal-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3bac7081f4983e6ecdc351fa91001f715bf5a9e46bc1d89ffe0b35ded0aa2a9",
                "md5": "83f0badce0e3fabffa9f4f1e67ebdfbb",
                "sha256": "d4bdee6200a2e4c609116698734cb586fee83badb7bb4c79b80a0da18e4f0900"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "83f0badce0e3fabffa9f4f1e67ebdfbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 262010,
            "upload_time": "2024-03-11T12:54:26",
            "upload_time_iso_8601": "2024-03-11T12:54:26.346297Z",
            "url": "https://files.pythonhosted.org/packages/e3/ba/c7081f4983e6ecdc351fa91001f715bf5a9e46bc1d89ffe0b35ded0aa2a9/isal-1.6.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63a8e8f826d9dab60ccd60f52639978f601454c27e415df0310a850c5b13f3b2",
                "md5": "897b49df418b6fb3a1bcf16a0a05a510",
                "sha256": "2444b53f55ae7e4bb9e9446f71c4e334c5c9acc6891cc8c26eac182c385c4ee1"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "897b49df418b6fb3a1bcf16a0a05a510",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 201515,
            "upload_time": "2024-03-11T12:58:42",
            "upload_time_iso_8601": "2024-03-11T12:58:42.730096Z",
            "url": "https://files.pythonhosted.org/packages/63/a8/e8f826d9dab60ccd60f52639978f601454c27e415df0310a850c5b13f3b2/isal-1.6.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc1501fd07c8cefba4e46f4caa4c05ea2252742d680cc9ebea092887fb357f64",
                "md5": "9d038b049e175a0db7aa00e7a6e41169",
                "sha256": "4399b9073199b467f16b1d03389e23d4eabd3366f63b0430d0e33b4d07a9540f"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d038b049e175a0db7aa00e7a6e41169",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 246110,
            "upload_time": "2024-03-11T12:54:39",
            "upload_time_iso_8601": "2024-03-11T12:54:39.981084Z",
            "url": "https://files.pythonhosted.org/packages/dc/15/01fd07c8cefba4e46f4caa4c05ea2252742d680cc9ebea092887fb357f64/isal-1.6.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c9bafa8718a03456c6841745e9a1ccb5ae1b4a5e4bcda2e5561db95542ea8c9",
                "md5": "e45929dbc27f4c7586487404d08246ca",
                "sha256": "52081fadb35287acca6c4d925b09f3ff5df022866c5e1c02e2a0fe5bc86ce4bb"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e45929dbc27f4c7586487404d08246ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 258390,
            "upload_time": "2024-03-11T12:54:27",
            "upload_time_iso_8601": "2024-03-11T12:54:27.787861Z",
            "url": "https://files.pythonhosted.org/packages/0c/9b/afa8718a03456c6841745e9a1ccb5ae1b4a5e4bcda2e5561db95542ea8c9/isal-1.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1d07651484baecf53fc8c67ee0faeeefa2becdaa2b06b8efbbf4d50450f18a4",
                "md5": "b1da90379d1b6c0051ef7902684428b9",
                "sha256": "08e5c37986bbe242d913a69c56accdcac1529fcdb5a27b86e668f04f3c7cadac"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1da90379d1b6c0051ef7902684428b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 261794,
            "upload_time": "2024-03-11T12:54:29",
            "upload_time_iso_8601": "2024-03-11T12:54:29.868398Z",
            "url": "https://files.pythonhosted.org/packages/f1/d0/7651484baecf53fc8c67ee0faeeefa2becdaa2b06b8efbbf4d50450f18a4/isal-1.6.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00b1918f9b6f87a2835ec57797a9e5e4873eed1e222e487788b24bb2620076ca",
                "md5": "c31831c167f10e5fa2cfef84d2343cb2",
                "sha256": "aa859a84bb7ac46b699f46255893ce7a03ce45f8dde20f7318ebf9b7da84879f"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c31831c167f10e5fa2cfef84d2343cb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 201413,
            "upload_time": "2024-03-11T12:58:44",
            "upload_time_iso_8601": "2024-03-11T12:58:44.629751Z",
            "url": "https://files.pythonhosted.org/packages/00/b1/918f9b6f87a2835ec57797a9e5e4873eed1e222e487788b24bb2620076ca/isal-1.6.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bee118c5fbf236471ea11e8ea013db5303ae56bb8de8347d044422ebd6702e45",
                "md5": "db1aa22dda6445276afe12875be876d5",
                "sha256": "961159b26377716170f3871d41d342c3a6f936b42ba71aa8d23f5290fd789491"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db1aa22dda6445276afe12875be876d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 246084,
            "upload_time": "2024-03-11T12:54:41",
            "upload_time_iso_8601": "2024-03-11T12:54:41.814216Z",
            "url": "https://files.pythonhosted.org/packages/be/e1/18c5fbf236471ea11e8ea013db5303ae56bb8de8347d044422ebd6702e45/isal-1.6.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ecb327a6fec0c566a9f10de70dcefaea3a1118b93c78a7ff09a7d40647c7628",
                "md5": "38b2a2c9f54714414549fbc701faaedd",
                "sha256": "97b11d18674c20dfefc03eddce06026c765ca479f8225e734e8424ba56cc0e8e"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38b2a2c9f54714414549fbc701faaedd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 258335,
            "upload_time": "2024-03-11T12:54:31",
            "upload_time_iso_8601": "2024-03-11T12:54:31.909102Z",
            "url": "https://files.pythonhosted.org/packages/6e/cb/327a6fec0c566a9f10de70dcefaea3a1118b93c78a7ff09a7d40647c7628/isal-1.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb530edea7ea6f20012b21ec491be723066d700d5b53df276298b9e20ac4d4e7",
                "md5": "578dc30190a9ab537083e260412f89ab",
                "sha256": "4abaa5153c290fdde20d8d5fdd88a457b02a1d51f07e3b703c0caa319347b57c"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "578dc30190a9ab537083e260412f89ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 261728,
            "upload_time": "2024-03-11T12:54:33",
            "upload_time_iso_8601": "2024-03-11T12:54:33.381585Z",
            "url": "https://files.pythonhosted.org/packages/fb/53/0edea7ea6f20012b21ec491be723066d700d5b53df276298b9e20ac4d4e7/isal-1.6.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13d46c5ee8c40ae3224972548571d30eda990f84730b78a431cc56acb53e3dba",
                "md5": "0f36685aca2d5803c4d568ba477cb441",
                "sha256": "ee085fb728ab643494f4a75157887bd579af08c297a60b61532a365c62e50e85"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0f36685aca2d5803c4d568ba477cb441",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 201387,
            "upload_time": "2024-03-11T12:58:46",
            "upload_time_iso_8601": "2024-03-11T12:58:46.159579Z",
            "url": "https://files.pythonhosted.org/packages/13/d4/6c5ee8c40ae3224972548571d30eda990f84730b78a431cc56acb53e3dba/isal-1.6.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30538dffdc18b68fd5e2006c9a2495fe3af64cd61e536bad48a2970ab697f328",
                "md5": "4348b1873e7750e9d29a2cee0b48c0fa",
                "sha256": "cd18547c27d3895adb9a6185532813d92bee06b58d7ae12b09c677db04719976"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4348b1873e7750e9d29a2cee0b48c0fa",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 246722,
            "upload_time": "2024-03-11T12:54:43",
            "upload_time_iso_8601": "2024-03-11T12:54:43.993097Z",
            "url": "https://files.pythonhosted.org/packages/30/53/8dffdc18b68fd5e2006c9a2495fe3af64cd61e536bad48a2970ab697f328/isal-1.6.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f04ff33728e320e03f33714887a06160d21b4591b541d423dd82aac799a6ab68",
                "md5": "1a57af9d93d6d90adaa3f57628375063",
                "sha256": "e342abdba870ce811c31e0ffb9193cd8c5acb9c5362d9095a42add141b7ecb90"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a57af9d93d6d90adaa3f57628375063",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 255378,
            "upload_time": "2024-03-11T12:54:36",
            "upload_time_iso_8601": "2024-03-11T12:54:36.674202Z",
            "url": "https://files.pythonhosted.org/packages/f0/4f/f33728e320e03f33714887a06160d21b4591b541d423dd82aac799a6ab68/isal-1.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61ce45f5bf4ffa80244b25e7a7c67ab7045c56f29fa2dcfc2c9eb13b539233a3",
                "md5": "14700ef2a3f021fe3d6d047b65a15039",
                "sha256": "a7e43e8a4c296d27ee3488c792de475a5e3cae37bbdb14dc54a52e8f9261378e"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "14700ef2a3f021fe3d6d047b65a15039",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 202017,
            "upload_time": "2024-03-11T12:58:47",
            "upload_time_iso_8601": "2024-03-11T12:58:47.476508Z",
            "url": "https://files.pythonhosted.org/packages/61/ce/45f5bf4ffa80244b25e7a7c67ab7045c56f29fa2dcfc2c9eb13b539233a3/isal-1.6.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89001f9b2e9a7f188407af5b111d6ef35a934c36c7952182489fe3688acde167",
                "md5": "7509c3f4117bdfd95a6aabfd0043c2a6",
                "sha256": "9c9a92a07db1d96cc795f5fff317deffab72ba3eccb6a1bdc1abc79b8f1dcfc8"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7509c3f4117bdfd95a6aabfd0043c2a6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 246694,
            "upload_time": "2024-03-11T12:54:45",
            "upload_time_iso_8601": "2024-03-11T12:54:45.435067Z",
            "url": "https://files.pythonhosted.org/packages/89/00/1f9b2e9a7f188407af5b111d6ef35a934c36c7952182489fe3688acde167/isal-1.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "131e2c895a1110f3951caf4aeb09008a09ae2451339513c128432f2e33da87f1",
                "md5": "3e973a7d204ec41454db6c331f773e32",
                "sha256": "208a0fd2780d3f1a2a649fc7211a3d48c35dd227f75ac9f7389e8258fd9098d4"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e973a7d204ec41454db6c331f773e32",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 255383,
            "upload_time": "2024-03-11T12:54:38",
            "upload_time_iso_8601": "2024-03-11T12:54:38.774031Z",
            "url": "https://files.pythonhosted.org/packages/13/1e/2c895a1110f3951caf4aeb09008a09ae2451339513c128432f2e33da87f1/isal-1.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebf7ea68d856f5afd5c9d5374a58282ece62228dabf84b12695c360071169aa5",
                "md5": "8bc2c0089442e106ba71a6a71ac54f00",
                "sha256": "92a88f52c2e964f016e885f9744ee756786f49826ff4b636c079a9431f603695"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8bc2c0089442e106ba71a6a71ac54f00",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 202019,
            "upload_time": "2024-03-11T12:58:48",
            "upload_time_iso_8601": "2024-03-11T12:58:48.722231Z",
            "url": "https://files.pythonhosted.org/packages/eb/f7/ea68d856f5afd5c9d5374a58282ece62228dabf84b12695c360071169aa5/isal-1.6.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e784fcc0ccc4276bb98d10039de906098d131ca9d730efbd83c486428b6ea0f9",
                "md5": "fcad38424e078d32d725f03ab012335a",
                "sha256": "990db4a2ff79112090149a1b4b8f69ad6a0a3e335c78aa4bf80d465d85345407"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fcad38424e078d32d725f03ab012335a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 246664,
            "upload_time": "2024-03-11T12:54:48",
            "upload_time_iso_8601": "2024-03-11T12:54:48.091929Z",
            "url": "https://files.pythonhosted.org/packages/e7/84/fcc0ccc4276bb98d10039de906098d131ca9d730efbd83c486428b6ea0f9/isal-1.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11ff33a5ec199b851479930e90fbd7f9a89348540b9d73d2311b8717bc1f2329",
                "md5": "cebf67e868023545b7d8859fe4749706",
                "sha256": "101f3f49a39f5c247da97e2a6ff4ef83350d1732dfeb27b6b8afcc4e99c5821c"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cebf67e868023545b7d8859fe4749706",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 255372,
            "upload_time": "2024-03-11T12:54:41",
            "upload_time_iso_8601": "2024-03-11T12:54:41.149484Z",
            "url": "https://files.pythonhosted.org/packages/11/ff/33a5ec199b851479930e90fbd7f9a89348540b9d73d2311b8717bc1f2329/isal-1.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4953628efbf627a6829f9946abb465f2343bec394f4553ebdbad68a753546d58",
                "md5": "bcc2715cf4ecb70492d4b88a358b560c",
                "sha256": "6102fe3617cb964d6f213b340249c4d82e81c7faffb796dacc80ca1d909cb9fd"
            },
            "downloads": -1,
            "filename": "isal-1.6.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bcc2715cf4ecb70492d4b88a358b560c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 202024,
            "upload_time": "2024-03-11T12:58:50",
            "upload_time_iso_8601": "2024-03-11T12:58:50.633212Z",
            "url": "https://files.pythonhosted.org/packages/49/53/628efbf627a6829f9946abb465f2343bec394f4553ebdbad68a753546d58/isal-1.6.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50a825887c43941b2a6ca85529e242fd8e57906e6047fde51ee36510f9d525fa",
                "md5": "2b0eac7dee300ffd8802c3f7d543c76b",
                "sha256": "7b64b75d260b544beea3f59cb25a6f520c04768818ef4ac316ee9a1f2ebf18f5"
            },
            "downloads": -1,
            "filename": "isal-1.6.1.tar.gz",
            "has_sig": false,
            "md5_digest": "2b0eac7dee300ffd8802c3f7d543c76b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 774325,
            "upload_time": "2024-03-11T12:54:43",
            "upload_time_iso_8601": "2024-03-11T12:54:43.738833Z",
            "url": "https://files.pythonhosted.org/packages/50/a8/25887c43941b2a6ca85529e242fd8e57906e6047fde51ee36510f9d525fa/isal-1.6.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-11 12:54:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pycompression",
    "github_project": "python-isal",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "isal"
}
        
Elapsed time: 0.19780s