pystackreg


Namepystackreg JSON
Version 0.2.8 PyPI version JSON
download
home_pagehttps://github.com/glichtner/pystackreg
SummaryImage registration tool (python implementation of the ImageJ/FIJI Plugin TurboReg/StackReg)
upload_time2024-10-03 08:53:49
maintainerNone
docs_urlNone
authorGregor Lichtner (python/C++ port);TurboReg Author: Philippe Thévenaz, Biomedical Imaging Group,Swiss Federal Institute of Technology Lausanne
requires_pythonNone
licenseNone
keywords
VCS
bugtrack_url
requirements numpy tqdm
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pyStackReg
==========

.. start-badges

.. image:: https://github.com/glichtner/pystackreg/actions/workflows/wheels-deploy.yml/badge.svg
    :target: https://github.com/glichtner/pystackreg/actions/workflows/wheels-deploy.yml
    :alt: Build & Test

.. image:: https://readthedocs.org/projects/pystackreg/badge/?version=latest
    :target: https://pystackreg.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

.. image:: https://badge.fury.io/py/pystackreg.svg
    :alt: PyPI Package latest release
    :target: https://pypi.org/project/pystackreg

.. image:: https://img.shields.io/pypi/pyversions/pystackreg.svg
    :alt: Supported Python Versions
    :target: https://pypi.org/project/pystackreg/

.. image:: https://pepy.tech/badge/pystackreg
    :alt: Downloads
    :target: https://pepy.tech/project/pystackreg/

.. end-badges





Summary
-------
Python/C++ port of the ImageJ extension TurboReg/StackReg written by Philippe Thevenaz/EPFL.

A python extension for the automatic alignment of a source image or a stack (movie) to a target image/reference frame.

Description
-----------
pyStackReg is used to align (register) one or more images to a common reference image, as is required usually in time-resolved fluorescence or wide-field microscopy. It is directly ported from the source code of the ImageJ plugin ``TurboReg`` and provides additionally the functionality of the ImageJ plugin ``StackReg``, both of which were written by Philippe Thevenaz/EPFL (available at http://bigwww.epfl.ch/thevenaz/turboreg/).

pyStackReg provides the following five types of distortion:

- translation
- rigid body (translation + rotation)
- scaled rotation (translation + rotation + scaling)
- affine (translation + rotation + scaling + shearing)
- bilinear (non-linear transformation; does not preserve straight lines)

pyStackReg supports the full functionality of StackReg plus some additional options, e.g., using different reference images and having access to the actual transformation matrices (please see the examples below). Note that pyStackReg uses the high quality (i.e. high accuracy) mode of TurboReg that uses cubic spline interpolation for transformation.

Please note: The bilinear transformation cannot be propagated, as a combination of bilinear transformations does not generally result in a bilinear transformation. Therefore, stack registration/transform functions won't work with bilinear transformation when using "previous" image as reference image. You can either use another reference ("first" or "mean" for first or mean image, respectively), or try to register/transform each image of the stack separately to its respective previous image (and use the already transformed previous image as reference for the next image).

Known issues
............
- pystackreg (and StackReg/TurboReg) have known issues with processing strongly rotated images (e.g. by ~90°; see https://github.com/glichtner/pystackreg/issues/30 for a workaround).


Installation
------------
The package is available on conda forge and on PyPi.

- Install using **conda**

.. code-block:: python

    conda install pystackreg -c conda-forge

- Install using **pip**

.. code-block:: python

    pip install pystackreg


Documentation
-------------
The documentation can be found on readthedocs:

https://pystackreg.readthedocs.io/

Tutorial
--------
* A tutorial notebook can be found in the `examples/notebooks` folder
  or statically here: https://pystackreg.readthedocs.io/en/latest/tutorial.html

Usage
-----
The following example opens two different files and registers them using all different possible transformations

.. code-block:: python

    from pystackreg import StackReg
    from skimage import io

    #load reference and "moved" image
    ref = io.imread('some_original_image.tif')
    mov = io.imread('some_changed_image.tif')

    #Translational transformation
    sr = StackReg(StackReg.TRANSLATION)
    out_tra = sr.register_transform(ref, mov)

    #Rigid Body transformation
    sr = StackReg(StackReg.RIGID_BODY)
    out_rot = sr.register_transform(ref, mov)

    #Scaled Rotation transformation
    sr = StackReg(StackReg.SCALED_ROTATION)
    out_sca = sr.register_transform(ref, mov)

    #Affine transformation
    sr = StackReg(StackReg.AFFINE)
    out_aff = sr.register_transform(ref, mov)

    #Bilinear transformation
    sr = StackReg(StackReg.BILINEAR)
    out_bil = sr.register_transform(ref, mov)


The next example shows how to separate registration from transformation (e.g., to register in one color channel and then use that information to transform another color channel):


.. code-block:: python

    from pystackreg import StackReg
    from skimage import io

    img0 = io.imread('some_multiframe_image.tif')
    img1 = io.imread('another_multiframe_image.tif')
    # img0.shape: frames x width x height (3D)

    sr = StackReg(StackReg.RIGID_BODY)

    # register 2nd image to 1st
    sr.register(img0[0, :, :], img0[1,:,:])

    # use the transformation from the above registration to register another frame
    out = sr.transform(img1[1,:,:])

The next examples shows how to register and transform a whole stack:

.. code-block:: python

    from pystackreg import StackReg
    from skimage import io

    img0 = io.imread('some_multiframe_image.tif') # 3 dimensions : frames x width x height

    sr = StackReg(StackReg.RIGID_BODY)

    # register each frame to the previous (already registered) one
    # this is what the original StackReg ImageJ plugin uses
    out_previous = sr.register_transform_stack(img0, reference='previous')

    # register to first image
    out_first = sr.register_transform_stack(img0, reference='first')

    # register to mean image
    out_mean = sr.register_transform_stack(img0, reference='mean')

    # register to mean of first 10 images
    out_first10 = sr.register_transform_stack(img0, reference='first', n_frames=10)

    # calculate a moving average of 10 images, then register the moving average to the mean of
    # the first 10 images and transform the original image (not the moving average)
    out_moving10 = sr.register_transform_stack(img0, reference='first', n_frames=10, moving_average = 10)

The next example shows how to separate registration from transformation for a stack (e.g., to register in one color channel and then use that information to transform another color channel):

.. code-block:: python

    from pystackreg import StackReg
    from skimage import io

    img0 = io.imread('some_multiframe_image.tif') # 3 dimensions : frames x width x height
    img1 = io.imread('another_multiframe_image.tif') # same shape as img0

    # both stacks must have the same shape
    assert img0.shape == img1.shape

    sr = StackReg(StackReg.RIGID_BODY)

    # register each frame to the previous (already registered) one
    # this is what the original StackReg ImageJ plugin uses
    tmats = sr.register_stack(img0, reference='previous')
    out = sr.transform_stack(img1)

    # tmats contains the transformation matrices -> they can be saved
    # and loaded at another time
    import numpy as np
    np.save('transformation_matrices.npy', tmats)

    tmats_loaded = np.load('transformation_matrices.npy')

    # make sure you use the correct transformation here!
    sr = StackReg(StackReg.RIGID_BODY)

    # transform stack using the tmats loaded from file
    sr.transform_stack(img1, tmats=tmats_loaded)

    # with the transformation matrices at hand you can also
    # use the transformation algorithms from other packages:
    from skimage import transform as tf

    out = np.zeros(img0.shape).astype(np.float)

    for i in range(tmats.shape[0]):
        out[i, :, :] = tf.warp(img1[i, :, :], tmats[i, :, :], order=3)


Author information
-------------------
This is a port of the original Java code by Philippe Thevenaz to C++ with a Python wrapper around it. All credit goes to the original author:
::

    /*====================================================================
    | Philippe Thevenaz
    | EPFL/STI/IMT/LIB/BM.4.137
    | Station 17
    | CH-1015 Lausanne VD
    | Switzerland
    |
    | phone (CET): +41(21)693.51.61
    | fax: +41(21)693.37.01
    | RFC-822: philippe.thevenaz@epfl.ch
    | X-400: /C=ch/A=400net/P=switch/O=epfl/S=thevenaz/G=philippe/
    | URL: http://bigwww.epfl.ch/
    \===================================================================*/

    /*====================================================================
    | This work is based on the following paper:
    |
    | P. Thevenaz, U.E. Ruttimann, M. Unser
    | A Pyramid Approach to Subpixel Registration Based on Intensity
    | IEEE Transactions on Image Processing
    | vol. 7, no. 1, pp. 27-41, January 1998.
    |
    | This paper is available on-line at
    | http://bigwww.epfl.ch/publications/thevenaz9801.html
    |
    | Other relevant on-line publications are available at
    | http://bigwww.epfl.ch/publications/
    \===================================================================*/

License
-------

::

    You are free to use this software for commercial and non-commercial
    purposes. However, we expect you to include a citation or acknowledgement
    whenever you present or publish research results that are based
    on this software. You are free to modify this software or derive
    works from it, but you are only allowed to distribute it under the
    same terms as this license specifies. Additionally, you must include
    a reference to the research paper above in all software and works
    derived from this software.


Changelog
=========

0.2.8
-----

Fixed
.....
- Add NumPy 2 support

0.2.7
-----

Fixed
.....
- Axis argument not used for method "mean" in register_stack() (`PR #26 <https://github.com/glichtner/pystackreg/pull/26>`_)

0.2.6
-----

Added
.....
- Exposing `simple_slice` and `running_mean` functions in the util package
- Added conversion function to any integer dtype

0.2.5
-----

Fixed
.....
- Compilation in environments without NumPy

0.2.3
-----

Added
.....
- Added example data and tutorial notebook
- Added unit tests
- Additional documentation
- Detection of time series axis in stacks – will raise a warning if supplied axis in stack registration does not correspond to the detected axis

Changed
.....~~
- `progress_callback` function now gets called with the iteration number, not the iteration index (iteration number = iteration index + 1)

Fixed
.....
- Fixed exception when using a different axis than 0 for registering stacks

0.2.2
-----

Changed
.....~~
- License changed to allow distribution on Python package repositories

0.2.1
-----

Added
.....
- Progress callback function can be supplied to `register_stack()` and `register_transform_stack()` functions via the `progress_callback` parameter. It is called after every iteration (i.e., after each image registration).

Changed
.....~~
- Progress bar output is not shown by default, has to be enabled by using the `verbose=True` parameter in the `register_stack()` and `register_transform_stack()` functions

0.2.0
-----

Added
.....
- Bilinear transformation

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/glichtner/pystackreg",
    "name": "pystackreg",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Gregor Lichtner (python/C++ port);TurboReg Author: Philippe Th\u00e9venaz, Biomedical Imaging Group,Swiss Federal Institute of Technology Lausanne",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/7a/15/17cbdce2348da6a0127816dc6380fc9b8343baea96ed959ee8460f2bc25a/pystackreg-0.2.8.tar.gz",
    "platform": null,
    "description": "pyStackReg\n==========\n\n.. start-badges\n\n.. image:: https://github.com/glichtner/pystackreg/actions/workflows/wheels-deploy.yml/badge.svg\n    :target: https://github.com/glichtner/pystackreg/actions/workflows/wheels-deploy.yml\n    :alt: Build & Test\n\n.. image:: https://readthedocs.org/projects/pystackreg/badge/?version=latest\n    :target: https://pystackreg.readthedocs.io/en/latest/?badge=latest\n    :alt: Documentation Status\n\n.. image:: https://badge.fury.io/py/pystackreg.svg\n    :alt: PyPI Package latest release\n    :target: https://pypi.org/project/pystackreg\n\n.. image:: https://img.shields.io/pypi/pyversions/pystackreg.svg\n    :alt: Supported Python Versions\n    :target: https://pypi.org/project/pystackreg/\n\n.. image:: https://pepy.tech/badge/pystackreg\n    :alt: Downloads\n    :target: https://pepy.tech/project/pystackreg/\n\n.. end-badges\n\n\n\n\n\nSummary\n-------\nPython/C++ port of the ImageJ extension TurboReg/StackReg written by Philippe Thevenaz/EPFL.\n\nA python extension for the automatic alignment of a source image or a stack (movie) to a target image/reference frame.\n\nDescription\n-----------\npyStackReg is used to align (register) one or more images to a common reference image, as is required usually in time-resolved fluorescence or wide-field microscopy. It is directly ported from the source code of the ImageJ plugin ``TurboReg`` and provides additionally the functionality of the ImageJ plugin ``StackReg``, both of which were written by Philippe Thevenaz/EPFL (available at http://bigwww.epfl.ch/thevenaz/turboreg/).\n\npyStackReg provides the following five types of distortion:\n\n- translation\n- rigid body (translation + rotation)\n- scaled rotation (translation + rotation + scaling)\n- affine (translation + rotation + scaling + shearing)\n- bilinear (non-linear transformation; does not preserve straight lines)\n\npyStackReg supports the full functionality of StackReg plus some additional options, e.g., using different reference images and having access to the actual transformation matrices (please see the examples below). Note that pyStackReg uses the high quality (i.e. high accuracy) mode of TurboReg that uses cubic spline interpolation for transformation.\n\nPlease note: The bilinear transformation cannot be propagated, as a combination of bilinear transformations does not generally result in a bilinear transformation. Therefore, stack registration/transform functions won't work with bilinear transformation when using \"previous\" image as reference image. You can either use another reference (\"first\" or \"mean\" for first or mean image, respectively), or try to register/transform each image of the stack separately to its respective previous image (and use the already transformed previous image as reference for the next image).\n\nKnown issues\n............\n- pystackreg (and StackReg/TurboReg) have known issues with processing strongly rotated images (e.g. by ~90\u00b0; see https://github.com/glichtner/pystackreg/issues/30 for a workaround).\n\n\nInstallation\n------------\nThe package is available on conda forge and on PyPi.\n\n- Install using **conda**\n\n.. code-block:: python\n\n    conda install pystackreg -c conda-forge\n\n- Install using **pip**\n\n.. code-block:: python\n\n    pip install pystackreg\n\n\nDocumentation\n-------------\nThe documentation can be found on readthedocs:\n\nhttps://pystackreg.readthedocs.io/\n\nTutorial\n--------\n* A tutorial notebook can be found in the `examples/notebooks` folder\n  or statically here: https://pystackreg.readthedocs.io/en/latest/tutorial.html\n\nUsage\n-----\nThe following example opens two different files and registers them using all different possible transformations\n\n.. code-block:: python\n\n    from pystackreg import StackReg\n    from skimage import io\n\n    #load reference and \"moved\" image\n    ref = io.imread('some_original_image.tif')\n    mov = io.imread('some_changed_image.tif')\n\n    #Translational transformation\n    sr = StackReg(StackReg.TRANSLATION)\n    out_tra = sr.register_transform(ref, mov)\n\n    #Rigid Body transformation\n    sr = StackReg(StackReg.RIGID_BODY)\n    out_rot = sr.register_transform(ref, mov)\n\n    #Scaled Rotation transformation\n    sr = StackReg(StackReg.SCALED_ROTATION)\n    out_sca = sr.register_transform(ref, mov)\n\n    #Affine transformation\n    sr = StackReg(StackReg.AFFINE)\n    out_aff = sr.register_transform(ref, mov)\n\n    #Bilinear transformation\n    sr = StackReg(StackReg.BILINEAR)\n    out_bil = sr.register_transform(ref, mov)\n\n\nThe next example shows how to separate registration from transformation (e.g., to register in one color channel and then use that information to transform another color channel):\n\n\n.. code-block:: python\n\n    from pystackreg import StackReg\n    from skimage import io\n\n    img0 = io.imread('some_multiframe_image.tif')\n    img1 = io.imread('another_multiframe_image.tif')\n    # img0.shape: frames x width x height (3D)\n\n    sr = StackReg(StackReg.RIGID_BODY)\n\n    # register 2nd image to 1st\n    sr.register(img0[0, :, :], img0[1,:,:])\n\n    # use the transformation from the above registration to register another frame\n    out = sr.transform(img1[1,:,:])\n\nThe next examples shows how to register and transform a whole stack:\n\n.. code-block:: python\n\n    from pystackreg import StackReg\n    from skimage import io\n\n    img0 = io.imread('some_multiframe_image.tif') # 3 dimensions : frames x width x height\n\n    sr = StackReg(StackReg.RIGID_BODY)\n\n    # register each frame to the previous (already registered) one\n    # this is what the original StackReg ImageJ plugin uses\n    out_previous = sr.register_transform_stack(img0, reference='previous')\n\n    # register to first image\n    out_first = sr.register_transform_stack(img0, reference='first')\n\n    # register to mean image\n    out_mean = sr.register_transform_stack(img0, reference='mean')\n\n    # register to mean of first 10 images\n    out_first10 = sr.register_transform_stack(img0, reference='first', n_frames=10)\n\n    # calculate a moving average of 10 images, then register the moving average to the mean of\n    # the first 10 images and transform the original image (not the moving average)\n    out_moving10 = sr.register_transform_stack(img0, reference='first', n_frames=10, moving_average = 10)\n\nThe next example shows how to separate registration from transformation for a stack (e.g., to register in one color channel and then use that information to transform another color channel):\n\n.. code-block:: python\n\n    from pystackreg import StackReg\n    from skimage import io\n\n    img0 = io.imread('some_multiframe_image.tif') # 3 dimensions : frames x width x height\n    img1 = io.imread('another_multiframe_image.tif') # same shape as img0\n\n    # both stacks must have the same shape\n    assert img0.shape == img1.shape\n\n    sr = StackReg(StackReg.RIGID_BODY)\n\n    # register each frame to the previous (already registered) one\n    # this is what the original StackReg ImageJ plugin uses\n    tmats = sr.register_stack(img0, reference='previous')\n    out = sr.transform_stack(img1)\n\n    # tmats contains the transformation matrices -> they can be saved\n    # and loaded at another time\n    import numpy as np\n    np.save('transformation_matrices.npy', tmats)\n\n    tmats_loaded = np.load('transformation_matrices.npy')\n\n    # make sure you use the correct transformation here!\n    sr = StackReg(StackReg.RIGID_BODY)\n\n    # transform stack using the tmats loaded from file\n    sr.transform_stack(img1, tmats=tmats_loaded)\n\n    # with the transformation matrices at hand you can also\n    # use the transformation algorithms from other packages:\n    from skimage import transform as tf\n\n    out = np.zeros(img0.shape).astype(np.float)\n\n    for i in range(tmats.shape[0]):\n        out[i, :, :] = tf.warp(img1[i, :, :], tmats[i, :, :], order=3)\n\n\nAuthor information\n-------------------\nThis is a port of the original Java code by Philippe Thevenaz to C++ with a Python wrapper around it. All credit goes to the original author:\n::\n\n    /*====================================================================\n    | Philippe Thevenaz\n    | EPFL/STI/IMT/LIB/BM.4.137\n    | Station 17\n    | CH-1015 Lausanne VD\n    | Switzerland\n    |\n    | phone (CET): +41(21)693.51.61\n    | fax: +41(21)693.37.01\n    | RFC-822: philippe.thevenaz@epfl.ch\n    | X-400: /C=ch/A=400net/P=switch/O=epfl/S=thevenaz/G=philippe/\n    | URL: http://bigwww.epfl.ch/\n    \\===================================================================*/\n\n    /*====================================================================\n    | This work is based on the following paper:\n    |\n    | P. Thevenaz, U.E. Ruttimann, M. Unser\n    | A Pyramid Approach to Subpixel Registration Based on Intensity\n    | IEEE Transactions on Image Processing\n    | vol. 7, no. 1, pp. 27-41, January 1998.\n    |\n    | This paper is available on-line at\n    | http://bigwww.epfl.ch/publications/thevenaz9801.html\n    |\n    | Other relevant on-line publications are available at\n    | http://bigwww.epfl.ch/publications/\n    \\===================================================================*/\n\nLicense\n-------\n\n::\n\n    You are free to use this software for commercial and non-commercial\n    purposes. However, we expect you to include a citation or acknowledgement\n    whenever you present or publish research results that are based\n    on this software. You are free to modify this software or derive\n    works from it, but you are only allowed to distribute it under the\n    same terms as this license specifies. Additionally, you must include\n    a reference to the research paper above in all software and works\n    derived from this software.\n\n\nChangelog\n=========\n\n0.2.8\n-----\n\nFixed\n.....\n- Add NumPy 2 support\n\n0.2.7\n-----\n\nFixed\n.....\n- Axis argument not used for method \"mean\" in register_stack() (`PR #26 <https://github.com/glichtner/pystackreg/pull/26>`_)\n\n0.2.6\n-----\n\nAdded\n.....\n- Exposing `simple_slice` and `running_mean` functions in the util package\n- Added conversion function to any integer dtype\n\n0.2.5\n-----\n\nFixed\n.....\n- Compilation in environments without NumPy\n\n0.2.3\n-----\n\nAdded\n.....\n- Added example data and tutorial notebook\n- Added unit tests\n- Additional documentation\n- Detection of time series axis in stacks \u2013 will raise a warning if supplied axis in stack registration does not correspond to the detected axis\n\nChanged\n.....~~\n- `progress_callback` function now gets called with the iteration number, not the iteration index (iteration number = iteration index + 1)\n\nFixed\n.....\n- Fixed exception when using a different axis than 0 for registering stacks\n\n0.2.2\n-----\n\nChanged\n.....~~\n- License changed to allow distribution on Python package repositories\n\n0.2.1\n-----\n\nAdded\n.....\n- Progress callback function can be supplied to `register_stack()` and `register_transform_stack()` functions via the `progress_callback` parameter. It is called after every iteration (i.e., after each image registration).\n\nChanged\n.....~~\n- Progress bar output is not shown by default, has to be enabled by using the `verbose=True` parameter in the `register_stack()` and `register_transform_stack()` functions\n\n0.2.0\n-----\n\nAdded\n.....\n- Bilinear transformation\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Image registration tool (python implementation of the ImageJ/FIJI Plugin TurboReg/StackReg)",
    "version": "0.2.8",
    "project_urls": {
        "Homepage": "https://github.com/glichtner/pystackreg"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51ef747993408cce9b22cb815be68a38a0d4404694ffee1786c6a30af0394623",
                "md5": "ab56fd754c0536bedc582ee951226aca",
                "sha256": "e90d5cda748d774a27dbd8c0c124f9671636e79873789a6ba6f39a6b4da91dc1"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ab56fd754c0536bedc582ee951226aca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 71757,
            "upload_time": "2024-10-03T08:57:58",
            "upload_time_iso_8601": "2024-10-03T08:57:58.947034Z",
            "url": "https://files.pythonhosted.org/packages/51/ef/747993408cce9b22cb815be68a38a0d4404694ffee1786c6a30af0394623/pystackreg-0.2.8-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d792179515c6cb59c60f6d5d01d3d323a45763bdfcd34f481951e971992c6a10",
                "md5": "e054d747780a3c9ec1e190b45bff3f03",
                "sha256": "ecb92e9291c45a58fa9352a8769af748ea25bc3b01966a4e9fefa3a0858e0934"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e054d747780a3c9ec1e190b45bff3f03",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 843014,
            "upload_time": "2024-10-03T08:22:28",
            "upload_time_iso_8601": "2024-10-03T08:22:28.885575Z",
            "url": "https://files.pythonhosted.org/packages/d7/92/179515c6cb59c60f6d5d01d3d323a45763bdfcd34f481951e971992c6a10/pystackreg-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1ce11d0993acc99f6945046bdc3653873a6ac961e427a0f369f248eb591cd8a",
                "md5": "9769bcd1fe986fdf3f88d81873596ee8",
                "sha256": "bde44c404ad81082eef09e6285e8e93199710489e1ef63e5d28f7286974a2ab4"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9769bcd1fe986fdf3f88d81873596ee8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 824945,
            "upload_time": "2024-10-03T08:22:34",
            "upload_time_iso_8601": "2024-10-03T08:22:34.326129Z",
            "url": "https://files.pythonhosted.org/packages/f1/ce/11d0993acc99f6945046bdc3653873a6ac961e427a0f369f248eb591cd8a/pystackreg-0.2.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce7b68717f418ffb5cc27b78f539646aec705e3373a86823f5e1b136885b39e8",
                "md5": "7e9c94674581a5105d45f95a838100f0",
                "sha256": "77d3d3d8e732a9b43f175dafebd63842f5c2bb2f1ea9d09c211397fb6a68b7d5"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7e9c94674581a5105d45f95a838100f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1812339,
            "upload_time": "2024-10-03T08:22:35",
            "upload_time_iso_8601": "2024-10-03T08:22:35.798514Z",
            "url": "https://files.pythonhosted.org/packages/ce/7b/68717f418ffb5cc27b78f539646aec705e3373a86823f5e1b136885b39e8/pystackreg-0.2.8-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba7564fde44dcecafc21cd9e6de37d1079e882ae80b0087da246f4e128bdef8d",
                "md5": "5c11bd9934cd38bf2806bd0ecf974b6a",
                "sha256": "47d577a5237937d8bd1c1d9d64f2cb71cc1a07789f04f6b479bab8d826d55e23"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5c11bd9934cd38bf2806bd0ecf974b6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1728063,
            "upload_time": "2024-10-03T08:22:37",
            "upload_time_iso_8601": "2024-10-03T08:22:37.775425Z",
            "url": "https://files.pythonhosted.org/packages/ba/75/64fde44dcecafc21cd9e6de37d1079e882ae80b0087da246f4e128bdef8d/pystackreg-0.2.8-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed5e454bcb4a538793013a8dd970005984d451ee1ea11cd7c096e730ed4684b1",
                "md5": "2aaf79c92a353e2480d443e6d9f323a6",
                "sha256": "dc6823065f0e8279e3bd416338c4342f8677e952c8e49155989b6dc75bbd60ee"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "2aaf79c92a353e2480d443e6d9f323a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 55922,
            "upload_time": "2024-10-03T09:10:15",
            "upload_time_iso_8601": "2024-10-03T09:10:15.565265Z",
            "url": "https://files.pythonhosted.org/packages/ed/5e/454bcb4a538793013a8dd970005984d451ee1ea11cd7c096e730ed4684b1/pystackreg-0.2.8-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d2d62b6f428805e467dced7dfeb96ffca17820a9ca4efe87ef1a8fbe6ef9586",
                "md5": "21ad7fb7af97f3e41cb0e8ca913116fd",
                "sha256": "73b36bb7ec18a860429a53895b46da1d013139d6906c1d5efa806c65570d8c36"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "21ad7fb7af97f3e41cb0e8ca913116fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 64665,
            "upload_time": "2024-10-03T09:10:17",
            "upload_time_iso_8601": "2024-10-03T09:10:17.400194Z",
            "url": "https://files.pythonhosted.org/packages/5d/2d/62b6f428805e467dced7dfeb96ffca17820a9ca4efe87ef1a8fbe6ef9586/pystackreg-0.2.8-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54a514d309bec71b4e44a4b3fb26486bcef9998adadb85eea58b02d40f5b4175",
                "md5": "393690c6124b0c6793e70d45ed7b8236",
                "sha256": "49cb45a0be374bd36a7d1d3d561b3c0d456f105d339b79c2bfa4b6c297ab4a1f"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "393690c6124b0c6793e70d45ed7b8236",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 71757,
            "upload_time": "2024-10-03T08:57:59",
            "upload_time_iso_8601": "2024-10-03T08:57:59.941489Z",
            "url": "https://files.pythonhosted.org/packages/54/a5/14d309bec71b4e44a4b3fb26486bcef9998adadb85eea58b02d40f5b4175/pystackreg-0.2.8-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4d4b10d1219b94576c25c8f7a631c7cfb59fbfcc22ddeae36a668a356650f79",
                "md5": "39438d23f757bc86f242183e47c3cb02",
                "sha256": "122cdf491fed5b5bf9620546d7c7b84f002aa6bd98322e07a6ca1761bbb10889"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39438d23f757bc86f242183e47c3cb02",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 843306,
            "upload_time": "2024-10-03T08:22:40",
            "upload_time_iso_8601": "2024-10-03T08:22:40.052805Z",
            "url": "https://files.pythonhosted.org/packages/c4/d4/b10d1219b94576c25c8f7a631c7cfb59fbfcc22ddeae36a668a356650f79/pystackreg-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0d1340d7ba6c25e6786943324b9e578e7daf1e00423889ef6032fd2931963cf",
                "md5": "4e55d54fc1147bfb751fe59825d0f9b1",
                "sha256": "ca37b157087211df15f8811d9e2553b100b1082de152601aa6f2f956c1d9343c"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4e55d54fc1147bfb751fe59825d0f9b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 825136,
            "upload_time": "2024-10-03T08:22:41",
            "upload_time_iso_8601": "2024-10-03T08:22:41.406251Z",
            "url": "https://files.pythonhosted.org/packages/e0/d1/340d7ba6c25e6786943324b9e578e7daf1e00423889ef6032fd2931963cf/pystackreg-0.2.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "beddc607d9ad45591ae87db4c08759a6c744dd55edf0f2ceeae72f8ee8fc8ce2",
                "md5": "01be32de1fc316021c8a852a9ea1c0d2",
                "sha256": "c4948e38394898d7fdb1f481c328a25876299db98c99e0b3263b50730bf17691"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "01be32de1fc316021c8a852a9ea1c0d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1812442,
            "upload_time": "2024-10-03T08:22:43",
            "upload_time_iso_8601": "2024-10-03T08:22:43.664865Z",
            "url": "https://files.pythonhosted.org/packages/be/dd/c607d9ad45591ae87db4c08759a6c744dd55edf0f2ceeae72f8ee8fc8ce2/pystackreg-0.2.8-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb6b8d6f7971d24f2cfe55bcb4a25f545af0715f7cb8482c3f79a12bc7d236df",
                "md5": "99f19e12a4587736b05762b4eec68793",
                "sha256": "760dafe1efac42d2f243da37b296d6dd7e1df071c967abb292a921b0db7c9faa"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99f19e12a4587736b05762b4eec68793",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1728174,
            "upload_time": "2024-10-03T08:22:45",
            "upload_time_iso_8601": "2024-10-03T08:22:45.784972Z",
            "url": "https://files.pythonhosted.org/packages/cb/6b/8d6f7971d24f2cfe55bcb4a25f545af0715f7cb8482c3f79a12bc7d236df/pystackreg-0.2.8-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59a670f60dda166e51fc6f3f91d3ecb8e90dd2e929ff8f26fb74797b7cb0446e",
                "md5": "51981337e526c8a67a6db53a6cca0f4c",
                "sha256": "42336a4b6daf0caa5dc7e774cbafbc91a7a3a5e56797a4f16ace0fd740f934f3"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "51981337e526c8a67a6db53a6cca0f4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 55920,
            "upload_time": "2024-10-03T09:10:18",
            "upload_time_iso_8601": "2024-10-03T09:10:18.827077Z",
            "url": "https://files.pythonhosted.org/packages/59/a6/70f60dda166e51fc6f3f91d3ecb8e90dd2e929ff8f26fb74797b7cb0446e/pystackreg-0.2.8-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa99f4e2ade75ad9a26883dad213a512b4bfaf06f0bb985aaba538f361e85af6",
                "md5": "8457f588236f72f191e5d50468927dd4",
                "sha256": "06e90e69d9aca4a68af532f9128258796acf46e0305dea03b36926e933d15837"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8457f588236f72f191e5d50468927dd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 64664,
            "upload_time": "2024-10-03T09:10:19",
            "upload_time_iso_8601": "2024-10-03T09:10:19.906767Z",
            "url": "https://files.pythonhosted.org/packages/aa/99/f4e2ade75ad9a26883dad213a512b4bfaf06f0bb985aaba538f361e85af6/pystackreg-0.2.8-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1005d8ddccbddc28871f40b5c84b55e121dac836e5efa407c11d3a00002e85d",
                "md5": "aac1190e1db6b0e5d65cd1c4e8acd43a",
                "sha256": "cc82203cde0a1909180d0ab7067071ac13d9558632f602ca72cce40415a3f339"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "aac1190e1db6b0e5d65cd1c4e8acd43a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 71775,
            "upload_time": "2024-10-03T08:58:01",
            "upload_time_iso_8601": "2024-10-03T08:58:01.075499Z",
            "url": "https://files.pythonhosted.org/packages/c1/00/5d8ddccbddc28871f40b5c84b55e121dac836e5efa407c11d3a00002e85d/pystackreg-0.2.8-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d64696c92593465defd31eee1a9ad5d08d008d52efdec7623735cd750e69452",
                "md5": "662de3626d2c7bcc155616f898eb2f10",
                "sha256": "83242b0fd0353d2598f381cf8677956d527b01f613309c2ccc7a99b7288f88e3"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "662de3626d2c7bcc155616f898eb2f10",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 843679,
            "upload_time": "2024-10-03T08:22:47",
            "upload_time_iso_8601": "2024-10-03T08:22:47.777267Z",
            "url": "https://files.pythonhosted.org/packages/9d/64/696c92593465defd31eee1a9ad5d08d008d52efdec7623735cd750e69452/pystackreg-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6429e2520896fb6b333eca35512bc6cbbf7a60e23e2a9c196891d1c46952dbee",
                "md5": "3226ca498ae7dab650cc5b6a773f286a",
                "sha256": "e549326568456886c7b908068a85fc87de13f4b042af0e92a8fa1a20646d0f12"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3226ca498ae7dab650cc5b6a773f286a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 825312,
            "upload_time": "2024-10-03T08:22:49",
            "upload_time_iso_8601": "2024-10-03T08:22:49.580295Z",
            "url": "https://files.pythonhosted.org/packages/64/29/e2520896fb6b333eca35512bc6cbbf7a60e23e2a9c196891d1c46952dbee/pystackreg-0.2.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47fb3d1abc7cca039a2bddc2e868a0efa7d10461611161ad828f3f093f94f802",
                "md5": "a530709c2eccadd89bd6e0fd8a4241ba",
                "sha256": "13647efcb5d87a290a8ba4ee27fa2094fd2213369efd4755b43df244a0a27e32"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a530709c2eccadd89bd6e0fd8a4241ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1813009,
            "upload_time": "2024-10-03T08:22:51",
            "upload_time_iso_8601": "2024-10-03T08:22:51.056517Z",
            "url": "https://files.pythonhosted.org/packages/47/fb/3d1abc7cca039a2bddc2e868a0efa7d10461611161ad828f3f093f94f802/pystackreg-0.2.8-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e7beef105cec19d266893fcff2727fd2206a110275256f659a303ad7d19a52e",
                "md5": "a752f1be74462f928167d36073a08f52",
                "sha256": "13ca10ddae376e42bef7bacfc898db9766e16b7bb3ca4e9e41d83e1eef0527fd"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a752f1be74462f928167d36073a08f52",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1729003,
            "upload_time": "2024-10-03T08:22:53",
            "upload_time_iso_8601": "2024-10-03T08:22:53.060088Z",
            "url": "https://files.pythonhosted.org/packages/9e/7b/eef105cec19d266893fcff2727fd2206a110275256f659a303ad7d19a52e/pystackreg-0.2.8-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb03119ad7c9538846b093ebffa30c6c128b4f1f5a4ac97409f5a123d61767bb",
                "md5": "e7aa9bc328c9238040f1ea08100d2013",
                "sha256": "bb1a541297d595604e02c545c96d8fd71d3592ac16e7d56ddca48aac427ba201"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "e7aa9bc328c9238040f1ea08100d2013",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 55969,
            "upload_time": "2024-10-03T09:10:21",
            "upload_time_iso_8601": "2024-10-03T09:10:21.547416Z",
            "url": "https://files.pythonhosted.org/packages/bb/03/119ad7c9538846b093ebffa30c6c128b4f1f5a4ac97409f5a123d61767bb/pystackreg-0.2.8-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f3f204aca0da3fe0221365618979527096ad55bdc708a3def3e09551d5c4ffe",
                "md5": "7ab9c4a019fd093df8ee85543d854c8d",
                "sha256": "0e7cb59bcf9f667a4988fdaa166442422188f01913d74b8eb7edc44215e838e7"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7ab9c4a019fd093df8ee85543d854c8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 64677,
            "upload_time": "2024-10-03T09:10:22",
            "upload_time_iso_8601": "2024-10-03T09:10:22.785284Z",
            "url": "https://files.pythonhosted.org/packages/6f/3f/204aca0da3fe0221365618979527096ad55bdc708a3def3e09551d5c4ffe/pystackreg-0.2.8-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b41194c4d9b025b4606133ab76ba31bbba529530bbca38e66c485c6bdd1c4da4",
                "md5": "83ea422228d42802846dd8d77160cdfb",
                "sha256": "3c7c146dfccbc70d8f4f2210f4ded28290a48704b9cdec812ae9f19896f0ebe9"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "83ea422228d42802846dd8d77160cdfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 71772,
            "upload_time": "2024-10-03T08:58:03",
            "upload_time_iso_8601": "2024-10-03T08:58:03.278693Z",
            "url": "https://files.pythonhosted.org/packages/b4/11/94c4d9b025b4606133ab76ba31bbba529530bbca38e66c485c6bdd1c4da4/pystackreg-0.2.8-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55bd4937538906aecf30f1d66ce9fe5f624845f03dd856fd5fd59aa5bba15f37",
                "md5": "c70996f3dc09e85ff73bf321b99aa824",
                "sha256": "adbcded9a9697556a7239160e9ae836e574e7f5ccff4bcbba1838ebb1f50735b"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c70996f3dc09e85ff73bf321b99aa824",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 843517,
            "upload_time": "2024-10-03T08:22:54",
            "upload_time_iso_8601": "2024-10-03T08:22:54.725666Z",
            "url": "https://files.pythonhosted.org/packages/55/bd/4937538906aecf30f1d66ce9fe5f624845f03dd856fd5fd59aa5bba15f37/pystackreg-0.2.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "794cab157ed4971a1332e1f9b38052edcc50845a588688ee3aa902af21a3686f",
                "md5": "6b6496f5f187aa559a1cbf81331f602d",
                "sha256": "dbfc206d546f36d373bd6c9b4800fdefb063c2f9f54664059d41139dd77c98f7"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6b6496f5f187aa559a1cbf81331f602d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 825147,
            "upload_time": "2024-10-03T08:22:56",
            "upload_time_iso_8601": "2024-10-03T08:22:56.088312Z",
            "url": "https://files.pythonhosted.org/packages/79/4c/ab157ed4971a1332e1f9b38052edcc50845a588688ee3aa902af21a3686f/pystackreg-0.2.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05da4cde89bf62861ab42f116b66a4a3a88acedaa4842e679f40c0026195e005",
                "md5": "836a3e6cdee20187817997077d85f42a",
                "sha256": "48003e24e87e26da2d71d9b7ad0172fec0fd6306332f9853eac0073740100b98"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "836a3e6cdee20187817997077d85f42a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1812902,
            "upload_time": "2024-10-03T08:22:58",
            "upload_time_iso_8601": "2024-10-03T08:22:58.047616Z",
            "url": "https://files.pythonhosted.org/packages/05/da/4cde89bf62861ab42f116b66a4a3a88acedaa4842e679f40c0026195e005/pystackreg-0.2.8-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7eb8a323223f05253b8480d443d3ee454a77f63b14f249bf7443fa55292ec14",
                "md5": "02a10e3dd4c17ca407d521be0d475ed7",
                "sha256": "07b67ade9ff2dde1357b8bccd524ea521199566a07b4386958fb7430688ff021"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02a10e3dd4c17ca407d521be0d475ed7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1728938,
            "upload_time": "2024-10-03T08:22:59",
            "upload_time_iso_8601": "2024-10-03T08:22:59.766843Z",
            "url": "https://files.pythonhosted.org/packages/e7/eb/8a323223f05253b8480d443d3ee454a77f63b14f249bf7443fa55292ec14/pystackreg-0.2.8-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f463466c441f4480ecc0226b1ea15325a339b3b9d6249cd61ba5c35af2875df",
                "md5": "f785452085ac42da441cc80d34b64851",
                "sha256": "38b169dd5731e390e36bd6fefe50a8bda6c61a7a820822e2f5eef80c27560a64"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "f785452085ac42da441cc80d34b64851",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 55966,
            "upload_time": "2024-10-03T09:10:24",
            "upload_time_iso_8601": "2024-10-03T09:10:24.030963Z",
            "url": "https://files.pythonhosted.org/packages/0f/46/3466c441f4480ecc0226b1ea15325a339b3b9d6249cd61ba5c35af2875df/pystackreg-0.2.8-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2581a1cea43ed6f3d974ec56f8da1edcc0609bae12ab31d31d0486ffb2eded2",
                "md5": "909df6266fc07b3471b8e4fcd369fa49",
                "sha256": "a48da1c2ecdc440b56baed71ebe079fffb33cf4992d6a4b74af0e8c37b9e622e"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "909df6266fc07b3471b8e4fcd369fa49",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 64684,
            "upload_time": "2024-10-03T09:10:24",
            "upload_time_iso_8601": "2024-10-03T09:10:24.957229Z",
            "url": "https://files.pythonhosted.org/packages/d2/58/1a1cea43ed6f3d974ec56f8da1edcc0609bae12ab31d31d0486ffb2eded2/pystackreg-0.2.8-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2252f3d00e93759db2cd8e979eec23e8c5d850eea7a9843cecb4065ad8a14bf",
                "md5": "180df0bc34b5d2d25528d4e3b0e01077",
                "sha256": "b8eb17ceb1d8c17297b6d933a7947cefc28f3a3b0211627bbde95507098914a8"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "180df0bc34b5d2d25528d4e3b0e01077",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 844136,
            "upload_time": "2024-10-03T08:23:02",
            "upload_time_iso_8601": "2024-10-03T08:23:02.018510Z",
            "url": "https://files.pythonhosted.org/packages/e2/25/2f3d00e93759db2cd8e979eec23e8c5d850eea7a9843cecb4065ad8a14bf/pystackreg-0.2.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cdf11fd3358a38aed06a201fe310a5e35b609a8b9c1d0ffa764681597d1b609",
                "md5": "68df88177f50ce69f3f086c9036cf0bd",
                "sha256": "5a4afad67d55b69d2b9cf26f67b8b406b4932615a7300210075abe941852c63a"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "68df88177f50ce69f3f086c9036cf0bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 826777,
            "upload_time": "2024-10-03T08:23:04",
            "upload_time_iso_8601": "2024-10-03T08:23:04.119991Z",
            "url": "https://files.pythonhosted.org/packages/5c/df/11fd3358a38aed06a201fe310a5e35b609a8b9c1d0ffa764681597d1b609/pystackreg-0.2.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80b3512556c980ac62e050ae90b806f904e31fb12ada89f9361b13315398dd16",
                "md5": "9a8b24d48c8e00995c5e4d0213cd03e7",
                "sha256": "ed4a761cbd91adf2dca9e35ad5bb7b887f7986338f6de926d55850ab1ecbf5f7"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp36-cp36m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9a8b24d48c8e00995c5e4d0213cd03e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1814016,
            "upload_time": "2024-10-03T08:23:05",
            "upload_time_iso_8601": "2024-10-03T08:23:05.627028Z",
            "url": "https://files.pythonhosted.org/packages/80/b3/512556c980ac62e050ae90b806f904e31fb12ada89f9361b13315398dd16/pystackreg-0.2.8-cp36-cp36m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "055c40b906a09c284ecd386b04d4793d9a689efcacba43c5ef7e3a96c7b697b8",
                "md5": "b412fdc7d77bd2f45c1d4119c299d18e",
                "sha256": "f7906205f38cb0ebbf644e0804c1cc0176b4954c7731681cc3a8d9b48e72a72d"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b412fdc7d77bd2f45c1d4119c299d18e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1730693,
            "upload_time": "2024-10-03T08:23:07",
            "upload_time_iso_8601": "2024-10-03T08:23:07.099029Z",
            "url": "https://files.pythonhosted.org/packages/05/5c/40b906a09c284ecd386b04d4793d9a689efcacba43c5ef7e3a96c7b697b8/pystackreg-0.2.8-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9e5369d90a545ace4181007334291e6d2bcf8ebc92fe948cd244cde62197793",
                "md5": "be811a24760d94f05e86309fdc4b4a6f",
                "sha256": "63622cbd0eee468088987070bac05c3800244a168e05aab26d81b768493aeb4e"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "be811a24760d94f05e86309fdc4b4a6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 57556,
            "upload_time": "2024-10-03T09:10:26",
            "upload_time_iso_8601": "2024-10-03T09:10:26.815095Z",
            "url": "https://files.pythonhosted.org/packages/a9/e5/369d90a545ace4181007334291e6d2bcf8ebc92fe948cd244cde62197793/pystackreg-0.2.8-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d3d0eec52ee286696da22f4fc1fd2f58ab0008f68fcae039545b60952b336b0",
                "md5": "befce4ac717a12d3fe01a83eb6008b0c",
                "sha256": "617a616d417372a61bb47ddad982cf34d08cfce75db519726bb06ad448bd3481"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "befce4ac717a12d3fe01a83eb6008b0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 66007,
            "upload_time": "2024-10-03T09:10:28",
            "upload_time_iso_8601": "2024-10-03T09:10:28.083311Z",
            "url": "https://files.pythonhosted.org/packages/2d/3d/0eec52ee286696da22f4fc1fd2f58ab0008f68fcae039545b60952b336b0/pystackreg-0.2.8-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adde439440c6e69d6ec44dddce3b2ffb176eaf0634a25b4f7b4285888be95a15",
                "md5": "f28360e312d83fcccca22afce6ae4591",
                "sha256": "22fa34950db791a43a786901a16740053ba6e2afa7c7aa54ae165dc3ba2805ff"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f28360e312d83fcccca22afce6ae4591",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 842581,
            "upload_time": "2024-10-03T08:23:08",
            "upload_time_iso_8601": "2024-10-03T08:23:08.554967Z",
            "url": "https://files.pythonhosted.org/packages/ad/de/439440c6e69d6ec44dddce3b2ffb176eaf0634a25b4f7b4285888be95a15/pystackreg-0.2.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f114db3111586f9087c3a3d0e8611270bcad1514cad90bfd8c93d43f0849181",
                "md5": "a6004b7e3ba0be28a3cfe8b5104de770",
                "sha256": "4c31ef4e75bb862bf84d32b7f534727ef370482555d699762211431dc57e6a6b"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a6004b7e3ba0be28a3cfe8b5104de770",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 824563,
            "upload_time": "2024-10-03T08:23:10",
            "upload_time_iso_8601": "2024-10-03T08:23:10.764573Z",
            "url": "https://files.pythonhosted.org/packages/9f/11/4db3111586f9087c3a3d0e8611270bcad1514cad90bfd8c93d43f0849181/pystackreg-0.2.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97d30136575169c25075542b94696c9bed6a3462dda11acead27f9904d8e20dd",
                "md5": "c4d49fca4c3852a4243e9c36b1843393",
                "sha256": "34f0a99cc0dee0a03506ba859a0480cd9a08042419be39c64986acc0b5d68ecb"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c4d49fca4c3852a4243e9c36b1843393",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1811555,
            "upload_time": "2024-10-03T08:23:12",
            "upload_time_iso_8601": "2024-10-03T08:23:12.286702Z",
            "url": "https://files.pythonhosted.org/packages/97/d3/0136575169c25075542b94696c9bed6a3462dda11acead27f9904d8e20dd/pystackreg-0.2.8-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c8155be245d8c954bbed33eadad02057c7cf3f62dbd084573c3dd699c551e81",
                "md5": "fa1ae6f522da5af223921e34888281ca",
                "sha256": "575ec2868aea11e82b3f7abea4095f608cccc123ce0a7eedc180081fb2069fdd"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa1ae6f522da5af223921e34888281ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1727713,
            "upload_time": "2024-10-03T08:23:14",
            "upload_time_iso_8601": "2024-10-03T08:23:14.707842Z",
            "url": "https://files.pythonhosted.org/packages/4c/81/55be245d8c954bbed33eadad02057c7cf3f62dbd084573c3dd699c551e81/pystackreg-0.2.8-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d44f056361d6f6cd614c4a375650fdeb5a17411c86680562f6e185accac50f99",
                "md5": "7ed32aa58c932795606899ce7370f32f",
                "sha256": "4880052a54e1249fb5344be864929548e50ab2c5a1bac3e3e609d0bf90836221"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "7ed32aa58c932795606899ce7370f32f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 55663,
            "upload_time": "2024-10-03T09:10:29",
            "upload_time_iso_8601": "2024-10-03T09:10:29.681360Z",
            "url": "https://files.pythonhosted.org/packages/d4/4f/056361d6f6cd614c4a375650fdeb5a17411c86680562f6e185accac50f99/pystackreg-0.2.8-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "457e7497f7c972e997e66d631afc6b9b3b9060508174c0bf4b24b5f4a3de3dfb",
                "md5": "161a15edf4264d45762479cd4ecb5798",
                "sha256": "a19790d6efd072d90bb79662dea744174e97fd858b6414177ec6be3e06c3f068"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "161a15edf4264d45762479cd4ecb5798",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 64422,
            "upload_time": "2024-10-03T09:10:30",
            "upload_time_iso_8601": "2024-10-03T09:10:30.684441Z",
            "url": "https://files.pythonhosted.org/packages/45/7e/7497f7c972e997e66d631afc6b9b3b9060508174c0bf4b24b5f4a3de3dfb/pystackreg-0.2.8-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00b984d9c8e5afc1cf791adc1191c84d1ff4208b59d070c1ab385119a6f9ea30",
                "md5": "c5f39c7cfef4a81844b2d2214ca0f841",
                "sha256": "4b8f71f8a6f075d7b9b92d98b1bbcce522b7efe44d186e6a325d837e1f657e59"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c5f39c7cfef4a81844b2d2214ca0f841",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 71632,
            "upload_time": "2024-10-03T08:58:04",
            "upload_time_iso_8601": "2024-10-03T08:58:04.748622Z",
            "url": "https://files.pythonhosted.org/packages/00/b9/84d9c8e5afc1cf791adc1191c84d1ff4208b59d070c1ab385119a6f9ea30/pystackreg-0.2.8-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a085a82538c36e571d7cc21ea7344378556c8a9756342bdfd28b59e17441ddf6",
                "md5": "39495203f49709d9b60f58aab1fef6b1",
                "sha256": "883468ecdee6c83281f17b8ac69612ee16c557398724e546861823e3ba62f64e"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39495203f49709d9b60f58aab1fef6b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 843850,
            "upload_time": "2024-10-03T08:23:16",
            "upload_time_iso_8601": "2024-10-03T08:23:16.165761Z",
            "url": "https://files.pythonhosted.org/packages/a0/85/a82538c36e571d7cc21ea7344378556c8a9756342bdfd28b59e17441ddf6/pystackreg-0.2.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff8861c85e03e465eb409584c233297d2d89a5d92c7f8092d8ee5a6639659ef9",
                "md5": "6de6b5cbd6d8211a6ffc1afd0b8c1e49",
                "sha256": "8142d68efcb46baa1045a90ddf70d08d1f4d9f74f0bbfa095af8f80ffcb0cc6c"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6de6b5cbd6d8211a6ffc1afd0b8c1e49",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 825829,
            "upload_time": "2024-10-03T08:23:18",
            "upload_time_iso_8601": "2024-10-03T08:23:18.084744Z",
            "url": "https://files.pythonhosted.org/packages/ff/88/61c85e03e465eb409584c233297d2d89a5d92c7f8092d8ee5a6639659ef9/pystackreg-0.2.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ebc1a1ba1888178436f7d8759dbb92e5bbb11ccbdd96cf69789a3c506220588",
                "md5": "c2a0170cc8c853f4c603317e69a374aa",
                "sha256": "52653fa7e843cfadb217d23f587c278caace2d09017423f52f6bf9829d0d8a6c"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c2a0170cc8c853f4c603317e69a374aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1813201,
            "upload_time": "2024-10-03T08:23:20",
            "upload_time_iso_8601": "2024-10-03T08:23:20.282135Z",
            "url": "https://files.pythonhosted.org/packages/8e/bc/1a1ba1888178436f7d8759dbb92e5bbb11ccbdd96cf69789a3c506220588/pystackreg-0.2.8-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c25595ebc6984d54e46ccd68668e03c64f6d557b5aa89816b55929f73e5e9e8e",
                "md5": "184eb2d8bac3d050f096fb44be0ec559",
                "sha256": "eea688ffc129831baf60f12c72fb232c0a007d26a7ecc39b1b493ed6a9e03515"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "184eb2d8bac3d050f096fb44be0ec559",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1729334,
            "upload_time": "2024-10-03T08:23:21",
            "upload_time_iso_8601": "2024-10-03T08:23:21.760167Z",
            "url": "https://files.pythonhosted.org/packages/c2/55/95ebc6984d54e46ccd68668e03c64f6d557b5aa89816b55929f73e5e9e8e/pystackreg-0.2.8-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff1a45f1c6cf0ba54dd8288de50d0a8c831c41d0165596f89b3b63266df7deb8",
                "md5": "6328fd5ca1e494248e63814ae62c1f71",
                "sha256": "47d1c17e5f9524ad7eeb5969faf1761ae6fa137c72268ac3668df3e5ffcfad8d"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "6328fd5ca1e494248e63814ae62c1f71",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 55845,
            "upload_time": "2024-10-03T09:10:32",
            "upload_time_iso_8601": "2024-10-03T09:10:32.297016Z",
            "url": "https://files.pythonhosted.org/packages/ff/1a/45f1c6cf0ba54dd8288de50d0a8c831c41d0165596f89b3b63266df7deb8/pystackreg-0.2.8-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec832656329bf7c90255300d69c81460c62170fd50aa8a611a65ba316bd0fe12",
                "md5": "836d91c79f995d58caf5ad1e92ca8c2e",
                "sha256": "8b637a7a6984192abb348fd09568eb5abf0999eb3f8c5d04e6cd291a9e956edf"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "836d91c79f995d58caf5ad1e92ca8c2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 64596,
            "upload_time": "2024-10-03T09:10:33",
            "upload_time_iso_8601": "2024-10-03T09:10:33.864378Z",
            "url": "https://files.pythonhosted.org/packages/ec/83/2656329bf7c90255300d69c81460c62170fd50aa8a611a65ba316bd0fe12/pystackreg-0.2.8-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b0bcd554712b96d8eb465ceb550a7c5599f0213d291cadc9cf3708283287aef",
                "md5": "ce22c63e145654d02b1bcd7bf0f6afb3",
                "sha256": "1f9e0474149be1866d1d834b61c4c022040f457fcc3b2226c7c25b81d148cba4"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ce22c63e145654d02b1bcd7bf0f6afb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 71753,
            "upload_time": "2024-10-03T08:58:05",
            "upload_time_iso_8601": "2024-10-03T08:58:05.736297Z",
            "url": "https://files.pythonhosted.org/packages/7b/0b/cd554712b96d8eb465ceb550a7c5599f0213d291cadc9cf3708283287aef/pystackreg-0.2.8-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20dc742454202e004ec99dd30f34e0cf4594df21a3e8c2487087472b25d739a0",
                "md5": "ebb4c025e745bacfd5600a93fec5f2ed",
                "sha256": "c3b9d7568fde7c620643c9fb83feb74111f3779a9f1961c5c90c0ec8495a0fff"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebb4c025e745bacfd5600a93fec5f2ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 842844,
            "upload_time": "2024-10-03T08:23:24",
            "upload_time_iso_8601": "2024-10-03T08:23:24.228260Z",
            "url": "https://files.pythonhosted.org/packages/20/dc/742454202e004ec99dd30f34e0cf4594df21a3e8c2487087472b25d739a0/pystackreg-0.2.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2db27411d429d04cd4f6593efd50894becfc88b1f2284c76e31def10b80b7551",
                "md5": "0e8b3ec943414802b3f3eba3edc0d26c",
                "sha256": "6fbc7f6cda9cb0f4ba4f2b254ce19eaefdaa9a53c31ba733ab788e16dda41e78"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0e8b3ec943414802b3f3eba3edc0d26c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 824651,
            "upload_time": "2024-10-03T08:23:26",
            "upload_time_iso_8601": "2024-10-03T08:23:26.080610Z",
            "url": "https://files.pythonhosted.org/packages/2d/b2/7411d429d04cd4f6593efd50894becfc88b1f2284c76e31def10b80b7551/pystackreg-0.2.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a877352f880748d25d19e9f0ff4c0c2a76f769996a55bb35af318c1b2fde516",
                "md5": "3c4ee6b534d79f6892fbe9db6de1c0ef",
                "sha256": "e676a3b5300addb798d646749057833df87f1eb44d46d4aca45b5724a72bc644"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3c4ee6b534d79f6892fbe9db6de1c0ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1811983,
            "upload_time": "2024-10-03T08:23:27",
            "upload_time_iso_8601": "2024-10-03T08:23:27.954111Z",
            "url": "https://files.pythonhosted.org/packages/7a/87/7352f880748d25d19e9f0ff4c0c2a76f769996a55bb35af318c1b2fde516/pystackreg-0.2.8-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "033cc7fbf207ae6410b15477eafa20ffd2fb6a24255b74310d89a9e43292fbf7",
                "md5": "a88c8f00ec342ea3fb2029dea5269b93",
                "sha256": "bb7dcfe51e1f89c19b83a8ee356a56e0db8ac70178a6512671891302ac6e268a"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a88c8f00ec342ea3fb2029dea5269b93",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1727793,
            "upload_time": "2024-10-03T08:23:29",
            "upload_time_iso_8601": "2024-10-03T08:23:29.982126Z",
            "url": "https://files.pythonhosted.org/packages/03/3c/c7fbf207ae6410b15477eafa20ffd2fb6a24255b74310d89a9e43292fbf7/pystackreg-0.2.8-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3366210ab2ac74a7a4a0cea7184c98021805913091dc0ce03db91d99c3c12518",
                "md5": "9b2c524bf6fe9919ae945b69f27cd7b9",
                "sha256": "e8763f0f4b141df473f82a35213875e8364e2a5eaa36a91b3c2b7debe7149062"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "9b2c524bf6fe9919ae945b69f27cd7b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 55927,
            "upload_time": "2024-10-03T09:10:35",
            "upload_time_iso_8601": "2024-10-03T09:10:35.213661Z",
            "url": "https://files.pythonhosted.org/packages/33/66/210ab2ac74a7a4a0cea7184c98021805913091dc0ce03db91d99c3c12518/pystackreg-0.2.8-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29e52a94f6510ec53d845359dccabc8faa89db82a95a01251f358152ae9f629c",
                "md5": "3b80d5b1345b68c42ef9b59a4de6661b",
                "sha256": "cfbbd4830db9d414c00e94822ac059b28e831767b231474f5fe3383b2e2edc6c"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3b80d5b1345b68c42ef9b59a4de6661b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 64659,
            "upload_time": "2024-10-03T09:10:36",
            "upload_time_iso_8601": "2024-10-03T09:10:36.227990Z",
            "url": "https://files.pythonhosted.org/packages/29/e5/2a94f6510ec53d845359dccabc8faa89db82a95a01251f358152ae9f629c/pystackreg-0.2.8-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a1517cbdce2348da6a0127816dc6380fc9b8343baea96ed959ee8460f2bc25a",
                "md5": "d37c56a451df6b7b96aecc12e981868a",
                "sha256": "fb615e9fb791298a196f7468cf0d2db1d5a008cde58d74c71afc2acb6a092dfc"
            },
            "downloads": -1,
            "filename": "pystackreg-0.2.8.tar.gz",
            "has_sig": false,
            "md5_digest": "d37c56a451df6b7b96aecc12e981868a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3733031,
            "upload_time": "2024-10-03T08:53:49",
            "upload_time_iso_8601": "2024-10-03T08:53:49.919084Z",
            "url": "https://files.pythonhosted.org/packages/7a/15/17cbdce2348da6a0127816dc6380fc9b8343baea96ed959ee8460f2bc25a/pystackreg-0.2.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-03 08:53:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "glichtner",
    "github_project": "pystackreg",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "tqdm",
            "specs": []
        }
    ],
    "tox": true,
    "lcname": "pystackreg"
}
        
Elapsed time: 0.34243s