imops


Nameimops JSON
Version 0.8.6 PyPI version JSON
download
home_pagehttps://github.com/neuro-ml/imops
SummaryEfficient parallelizable algorithms for multidimensional arrays to speed up your data pipelines
upload_time2024-02-02 08:49:15
maintainer
docs_urlNone
authormaxme1, vovaf709, talgat, alexeybelkov
requires_python>=3.6
licenseMIT License Copyright (c) 2022 NeuroML Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords image processing fast ndarray data pipelines
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![codecov](https://codecov.io/gh/neuro-ml/imops/branch/master/graph/badge.svg)](https://codecov.io/gh/neuro-ml/imops)
[![pypi](https://img.shields.io/pypi/v/imops?logo=pypi&label=PyPi)](https://pypi.org/project/imops/)
![License](https://img.shields.io/github/license/neuro-ml/imops)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/imops)](https://pypi.org/project/imops/)

# Imops

Efficient parallelizable algorithms for multidimensional arrays to speed up your data pipelines.
- [Documentation](https://neuro-ml.github.io/imops/)
- [Benchmarks](https://neuro-ml.github.io/imops/benchmarks/)

# Install

```shell
pip install imops  # default install with Cython backend
pip install imops[numba]  # additionally install Numba backend
```

# How fast is it?

Time comparisons (ms) for Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz using 8 threads. All inputs are C-contiguous NumPy arrays. For morphology functions `bool` dtype is used and `float64` for all others.
| function / backend   |  Scipy()  |  Cython(fast=False)  |  Cython(fast=True)  |  Numba()  |
|:----------------------:|:-----------:|:----------------------:|:---------------------:|:-----------:|
| `zoom(..., order=0)` |   2072    |         1114         |         **867**         |   3590    |
| `zoom(..., order=1)` |   6527    |         596          |         **575**         |   3757    |
| `interp1d`           |    780    |         149          |         **146**         |    420    |
| `radon`              |   59711   |         5982         |        **4837**         |      -     |
| `inverse_radon`      |   52928   |         8254         |        **6535**         |         -  |
| `binary_dilation`    |   2207    |         310          |         **298**         |        -   |
| `binary_erosion`     |   2296    |         326          |         **304**         |        -   |
| `binary_closing`     |   4158    |         544          |         **469**         |        -   |
| `binary_opening`     |   4410    |         567          |         **522**         |        -   |
| `center_of_mass`     |   2237    |          **64**          |         **64**          |        -   |

We use [`airspeed velocity`](https://asv.readthedocs.io/en/stable/) to benchmark our code. For detailed results visit [benchmark page](https://neuro-ml.github.io/imops/benchmarks/).

# Features

### Fast Radon transform

```python
from imops import radon, inverse_radon
```

### Fast 0/1-order zoom

```python
from imops import zoom, zoom_to_shape

# fast zoom with optional fallback to scipy's implementation
y = zoom(x, 2, axis=[0, 1])
# a handy function to zoom the array to a given shape 
# without the need to compute the scale factor
z = zoom_to_shape(x, (4, 120, 67))
```
Works faster only for `ndim<=4, dtype=float32 or float64 (and bool-int16-32-64 if order == 0), output=None, order=0 or 1, mode='constant', grid_mode=False`
### Fast 1d linear interpolation

```python
from imops import interp1d  # same as `scipy.interpolate.interp1d`
```
Works faster only for `ndim<=3, dtype=float32 or float64, order=1`

### Fast 2d linear interpolation
```python
import numpy as np
from imops.interp2d import Linear2DInterpolator
n, m = 1024, 2
points = np.random.randint(low=0, high=1024, size=(n, m))
points = np.unique(points, axis=0)
x_points = points[: n // 2]
values = np.random.uniform(low=0.0, high=1.0, size=(len(x_points),))
interp_points = points[n // 2:]
num_threads = -1 # will be equal to num of CPU cores
# You can optionally pass your own triangulation as an np.array of shape [num_triangles, 3], element at (i, j) position is an index of a point from x_points
interpolator = Linear2DInterpolator(x_points, values, num_threads=num_threads, triangles=None)
# Also you can pass values to __call__ and rewrite the ones that were passed to __init__
interp_values = interpolator(interp_points, values + 1.0, fill_value=0.0)
```

### Fast binary morphology

```python
from imops import binary_dilation, binary_erosion, binary_opening, binary_closing
```
These functions mimic `scikit-image` counterparts
### Padding

```python
from imops import pad, pad_to_shape

y = pad(x, 10, axis=[0, 1])
# `ratio` controls how much padding is applied to left side:
# 0 - pad from right
# 1 - pad from left
# 0.5 - distribute the padding equally
z = pad_to_shape(x, (4, 120, 67), ratio=0.25)
```

### Cropping

```python
from imops import crop_to_shape

# `ratio` controls the position of the crop
# 0 - crop from right
# 1 - crop from left
# 0.5 - crop from the middle
z = crop_to_shape(x, (4, 120, 67), ratio=0.25)
```

### Labeling

```python
from imops import label

# same as `skimage.measure.label`
labeled, num_components = label(x, background=1, return_num=True)
```

# Backends
For all heavy image routines except `label` you can specify which backend to use. Backend can be specified by a string or by an instance of `Backend` class. The latter allows you to customize some backend options:
```python
from imops import Cython, Numba, Scipy, zoom

y = zoom(x, 2, backend='Cython')
y = zoom(x, 2, backend=Cython(fast=False))  # same as previous
y = zoom(x, 2, backend=Cython(fast=True))  # -ffast-math compiled cython backend
y = zoom(x, 2, backend=Scipy())  # use scipy original implementation
y = zoom(x, 2, backend='Numba')
y = zoom(x, 2, backend=Numba(parallel=True, nogil=True, cache=True))  # same as previous
```
Also backend can be specified globally or locally:
```python
from imops import imops_backend, set_backend, zoom

set_backend('Numba')  # sets Numba as default backend
with imops_backend('Cython'):  # sets Cython backend via context manager
    zoom(x, 2)
```
Note that for `Numba` backend setting `num_threads` argument has no effect for now and you should use `NUMBA_NUM_THREADS` environment variable.
Available backends:
|         function / backend            | Scipy   | Cython  | Numba   |
|:-------------------:|:---------:|:---------:|:---------:|
| `zoom`            | &check; | &check; | &check; |
| `interp1d`        | &check; | &check; | &check; |
| `radon`           | &cross; | &check; | &cross; |
| `inverse_radon`   | &cross; | &check; | &cross; |
| `binary_dilation` | &check; | &check; | &cross; |
| `binary_erosion`  | &check; | &check; | &cross; |
| `binary_closing`  | &check; | &check; | &cross; |
| `binary_opening`  | &check; | &check; | &cross; |
| `center_of_mass`  | &check; | &check; | &cross; |

# Acknowledgements

Some parts of our code for radon/inverse radon transform as well as the code for linear interpolation are inspired by
the implementations from [`scikit-image`](https://github.com/scikit-image/scikit-image) and [`scipy`](https://github.com/scipy/scipy).
Also we used [`fastremap`](https://github.com/seung-lab/fastremap) and [`cc3d`](https://github.com/seung-lab/connected-components-3d) out of the box.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/neuro-ml/imops",
    "name": "imops",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "image processing,fast,ndarray,data pipelines",
    "author": "maxme1, vovaf709, talgat, alexeybelkov",
    "author_email": "maxme1 <max@aumi.ai>, vovaf709 <vovaf709@yandex.ru>, talgat <saparov2130@gmail.com>, alexeybelkov <fpmbelkov@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/e6/31/679afc071b043538ddb8390fd095d9f795cde2177a4761ffd57eb35bb562/imops-0.8.6.tar.gz",
    "platform": null,
    "description": "[![codecov](https://codecov.io/gh/neuro-ml/imops/branch/master/graph/badge.svg)](https://codecov.io/gh/neuro-ml/imops)\n[![pypi](https://img.shields.io/pypi/v/imops?logo=pypi&label=PyPi)](https://pypi.org/project/imops/)\n![License](https://img.shields.io/github/license/neuro-ml/imops)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/imops)](https://pypi.org/project/imops/)\n\n# Imops\n\nEfficient parallelizable algorithms for multidimensional arrays to speed up your data pipelines.\n- [Documentation](https://neuro-ml.github.io/imops/)\n- [Benchmarks](https://neuro-ml.github.io/imops/benchmarks/)\n\n# Install\n\n```shell\npip install imops  # default install with Cython backend\npip install imops[numba]  # additionally install Numba backend\n```\n\n# How fast is it?\n\nTime comparisons (ms) for Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz using 8 threads. All inputs are C-contiguous NumPy arrays. For morphology functions `bool` dtype is used and `float64` for all others.\n| function / backend   |  Scipy()  |  Cython(fast=False)  |  Cython(fast=True)  |  Numba()  |\n|:----------------------:|:-----------:|:----------------------:|:---------------------:|:-----------:|\n| `zoom(..., order=0)` |   2072    |         1114         |         **867**         |   3590    |\n| `zoom(..., order=1)` |   6527    |         596          |         **575**         |   3757    |\n| `interp1d`           |    780    |         149          |         **146**         |    420    |\n| `radon`              |   59711   |         5982         |        **4837**         |      -     |\n| `inverse_radon`      |   52928   |         8254         |        **6535**         |         -  |\n| `binary_dilation`    |   2207    |         310          |         **298**         |        -   |\n| `binary_erosion`     |   2296    |         326          |         **304**         |        -   |\n| `binary_closing`     |   4158    |         544          |         **469**         |        -   |\n| `binary_opening`     |   4410    |         567          |         **522**         |        -   |\n| `center_of_mass`     |   2237    |          **64**          |         **64**          |        -   |\n\nWe use [`airspeed velocity`](https://asv.readthedocs.io/en/stable/) to benchmark our code. For detailed results visit [benchmark page](https://neuro-ml.github.io/imops/benchmarks/).\n\n# Features\n\n### Fast Radon transform\n\n```python\nfrom imops import radon, inverse_radon\n```\n\n### Fast 0/1-order zoom\n\n```python\nfrom imops import zoom, zoom_to_shape\n\n# fast zoom with optional fallback to scipy's implementation\ny = zoom(x, 2, axis=[0, 1])\n# a handy function to zoom the array to a given shape \n# without the need to compute the scale factor\nz = zoom_to_shape(x, (4, 120, 67))\n```\nWorks faster only for `ndim<=4, dtype=float32 or float64 (and bool-int16-32-64 if order == 0), output=None, order=0 or 1, mode='constant', grid_mode=False`\n### Fast 1d linear interpolation\n\n```python\nfrom imops import interp1d  # same as `scipy.interpolate.interp1d`\n```\nWorks faster only for `ndim<=3, dtype=float32 or float64, order=1`\n\n### Fast 2d linear interpolation\n```python\nimport numpy as np\nfrom imops.interp2d import Linear2DInterpolator\nn, m = 1024, 2\npoints = np.random.randint(low=0, high=1024, size=(n, m))\npoints = np.unique(points, axis=0)\nx_points = points[: n // 2]\nvalues = np.random.uniform(low=0.0, high=1.0, size=(len(x_points),))\ninterp_points = points[n // 2:]\nnum_threads = -1 # will be equal to num of CPU cores\n# You can optionally pass your own triangulation as an np.array of shape [num_triangles, 3], element at (i, j) position is an index of a point from x_points\ninterpolator = Linear2DInterpolator(x_points, values, num_threads=num_threads, triangles=None)\n# Also you can pass values to __call__ and rewrite the ones that were passed to __init__\ninterp_values = interpolator(interp_points, values + 1.0, fill_value=0.0)\n```\n\n### Fast binary morphology\n\n```python\nfrom imops import binary_dilation, binary_erosion, binary_opening, binary_closing\n```\nThese functions mimic `scikit-image` counterparts\n### Padding\n\n```python\nfrom imops import pad, pad_to_shape\n\ny = pad(x, 10, axis=[0, 1])\n# `ratio` controls how much padding is applied to left side:\n# 0 - pad from right\n# 1 - pad from left\n# 0.5 - distribute the padding equally\nz = pad_to_shape(x, (4, 120, 67), ratio=0.25)\n```\n\n### Cropping\n\n```python\nfrom imops import crop_to_shape\n\n# `ratio` controls the position of the crop\n# 0 - crop from right\n# 1 - crop from left\n# 0.5 - crop from the middle\nz = crop_to_shape(x, (4, 120, 67), ratio=0.25)\n```\n\n### Labeling\n\n```python\nfrom imops import label\n\n# same as `skimage.measure.label`\nlabeled, num_components = label(x, background=1, return_num=True)\n```\n\n# Backends\nFor all heavy image routines except `label` you can specify which backend to use. Backend can be specified by a string or by an instance of `Backend` class. The latter allows you to customize some backend options:\n```python\nfrom imops import Cython, Numba, Scipy, zoom\n\ny = zoom(x, 2, backend='Cython')\ny = zoom(x, 2, backend=Cython(fast=False))  # same as previous\ny = zoom(x, 2, backend=Cython(fast=True))  # -ffast-math compiled cython backend\ny = zoom(x, 2, backend=Scipy())  # use scipy original implementation\ny = zoom(x, 2, backend='Numba')\ny = zoom(x, 2, backend=Numba(parallel=True, nogil=True, cache=True))  # same as previous\n```\nAlso backend can be specified globally or locally:\n```python\nfrom imops import imops_backend, set_backend, zoom\n\nset_backend('Numba')  # sets Numba as default backend\nwith imops_backend('Cython'):  # sets Cython backend via context manager\n    zoom(x, 2)\n```\nNote that for `Numba` backend setting `num_threads` argument has no effect for now and you should use `NUMBA_NUM_THREADS` environment variable.\nAvailable backends:\n|         function / backend            | Scipy   | Cython  | Numba   |\n|:-------------------:|:---------:|:---------:|:---------:|\n| `zoom`            | &check; | &check; | &check; |\n| `interp1d`        | &check; | &check; | &check; |\n| `radon`           | &cross; | &check; | &cross; |\n| `inverse_radon`   | &cross; | &check; | &cross; |\n| `binary_dilation` | &check; | &check; | &cross; |\n| `binary_erosion`  | &check; | &check; | &cross; |\n| `binary_closing`  | &check; | &check; | &cross; |\n| `binary_opening`  | &check; | &check; | &cross; |\n| `center_of_mass`  | &check; | &check; | &cross; |\n\n# Acknowledgements\n\nSome parts of our code for radon/inverse radon transform as well as the code for linear interpolation are inspired by\nthe implementations from [`scikit-image`](https://github.com/scikit-image/scikit-image) and [`scipy`](https://github.com/scipy/scipy).\nAlso we used [`fastremap`](https://github.com/seung-lab/fastremap) and [`cc3d`](https://github.com/seung-lab/connected-components-3d) out of the box.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2022 NeuroML  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Efficient parallelizable algorithms for multidimensional arrays to speed up your data pipelines",
    "version": "0.8.6",
    "project_urls": {
        "Docs": "https://neuro-ml.github.io/imops",
        "Download": "https://github.com/neuro-ml/imops/archive/v0.8.6.tar.gz",
        "Homepage": "https://github.com/neuro-ml/imops",
        "Issues": "https://github.com/neuro-ml/imops/issues",
        "Source": "https://github.com/neuro-ml/imops"
    },
    "split_keywords": [
        "image processing",
        "fast",
        "ndarray",
        "data pipelines"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2355a4a40fa5107473804a2f2586e2bede3e29d7630e8c2d0f9782061ee631e",
                "md5": "cb5368498238112b586faa639a8fe2a4",
                "sha256": "e1abc5392b7f240ab1d56ea833ccdba78fba7045c8f0d791c4dbab84293f9113"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb5368498238112b586faa639a8fe2a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 3836782,
            "upload_time": "2024-02-02T08:47:24",
            "upload_time_iso_8601": "2024-02-02T08:47:24.374646Z",
            "url": "https://files.pythonhosted.org/packages/d2/35/5a4a40fa5107473804a2f2586e2bede3e29d7630e8c2d0f9782061ee631e/imops-0.8.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1809d56b65efcfbcfe68d5e121d79ccb4704ebb45d85cc0edc64b32bbd8b3838",
                "md5": "b2203ca1dab443cedbfbe72be2634ef0",
                "sha256": "186aae3fca673c7d8b6ad845bf879c6716941982aec96f29960d5db142c051b7"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b2203ca1dab443cedbfbe72be2634ef0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 10742022,
            "upload_time": "2024-02-02T08:47:27",
            "upload_time_iso_8601": "2024-02-02T08:47:27.464971Z",
            "url": "https://files.pythonhosted.org/packages/18/09/d56b65efcfbcfe68d5e121d79ccb4704ebb45d85cc0edc64b32bbd8b3838/imops-0.8.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f10eb5e2cf4adab3de379d08c3d44fd0dbf718d1b12ceffc4dfd1caabb5ce910",
                "md5": "b29c8e359978f9ead0db92eac15eab07",
                "sha256": "1042091d3925de43d0e6e868692f4da05e3fabae300c6f2888b8da03458d7069"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b29c8e359978f9ead0db92eac15eab07",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 11134761,
            "upload_time": "2024-02-02T08:47:30",
            "upload_time_iso_8601": "2024-02-02T08:47:30.954452Z",
            "url": "https://files.pythonhosted.org/packages/f1/0e/b5e2cf4adab3de379d08c3d44fd0dbf718d1b12ceffc4dfd1caabb5ce910/imops-0.8.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68ad4fed7c810ea51b7dceafee214b67b481a22cfebed6138459168467b86121",
                "md5": "e3526415bd375c2a93b3cfae96c4f4eb",
                "sha256": "8c417ca270ee66de0ded163a86df94aaba941f8f5676717d8320caf1275901f7"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e3526415bd375c2a93b3cfae96c4f4eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 11407521,
            "upload_time": "2024-02-02T08:47:34",
            "upload_time_iso_8601": "2024-02-02T08:47:34.471513Z",
            "url": "https://files.pythonhosted.org/packages/68/ad/4fed7c810ea51b7dceafee214b67b481a22cfebed6138459168467b86121/imops-0.8.6-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e916ef37425f69052de74c105cb2159eb4926542654d05d487298e9f2ce0e8f2",
                "md5": "a06c99b929aa58f89e9defc30652ce1b",
                "sha256": "3b6aade38d203d71beca87fe256797207d6485dfeca578c04237791d226430e5"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a06c99b929aa58f89e9defc30652ce1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 11857994,
            "upload_time": "2024-02-02T08:47:38",
            "upload_time_iso_8601": "2024-02-02T08:47:38.205576Z",
            "url": "https://files.pythonhosted.org/packages/e9/16/ef37425f69052de74c105cb2159eb4926542654d05d487298e9f2ce0e8f2/imops-0.8.6-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e238924dfc4ce1ed6a927b5d2eedc931bdeb32683af2c41564fc6ff049f66c5",
                "md5": "f9a2442290fc18d2badedab3628da78f",
                "sha256": "37ea28e7d5ae7fcd2164f48b83e1f7635ddd76ae7389a94cfd6997045dda5488"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "f9a2442290fc18d2badedab3628da78f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2906499,
            "upload_time": "2024-02-02T08:47:41",
            "upload_time_iso_8601": "2024-02-02T08:47:41.064907Z",
            "url": "https://files.pythonhosted.org/packages/9e/23/8924dfc4ce1ed6a927b5d2eedc931bdeb32683af2c41564fc6ff049f66c5/imops-0.8.6-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88bfb59e35cc8ee9351d367913aa8913f5741f5aac16eb0ca163614a4b77be88",
                "md5": "9e50bb85355420f1daabea0aa3f0b484",
                "sha256": "b17ca17671578a151ed9d663a1fee2a32d23ae1c5321fdbd5469e04aa9fbae62"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9e50bb85355420f1daabea0aa3f0b484",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 3104281,
            "upload_time": "2024-02-02T08:47:43",
            "upload_time_iso_8601": "2024-02-02T08:47:43.535348Z",
            "url": "https://files.pythonhosted.org/packages/88/bf/b59e35cc8ee9351d367913aa8913f5741f5aac16eb0ca163614a4b77be88/imops-0.8.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b7bd7dcbad0887fcd377c91c94dfd5fbac607243289fa7cf5f4bad50ffd6d30",
                "md5": "9d14f0608b991d7ea33b064f80584322",
                "sha256": "4ddcf13fa8be7f15b5d1f5cf88056346907c00205213fc6755372a294bf12df1"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d14f0608b991d7ea33b064f80584322",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 3833235,
            "upload_time": "2024-02-02T08:47:46",
            "upload_time_iso_8601": "2024-02-02T08:47:46.025924Z",
            "url": "https://files.pythonhosted.org/packages/5b/7b/d7dcbad0887fcd377c91c94dfd5fbac607243289fa7cf5f4bad50ffd6d30/imops-0.8.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2de1aff5d74ad2ef38c493ebe2dad71b2e5601a13358646d4cd6c431c0ba785c",
                "md5": "596272a951795e439fee1aa31ed20e6c",
                "sha256": "454e0306e732fdbb9663bc81c074788aa55d11e83eea45300f22db0e122ccb13"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "596272a951795e439fee1aa31ed20e6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 11188449,
            "upload_time": "2024-02-02T08:47:48",
            "upload_time_iso_8601": "2024-02-02T08:47:48.665006Z",
            "url": "https://files.pythonhosted.org/packages/2d/e1/aff5d74ad2ef38c493ebe2dad71b2e5601a13358646d4cd6c431c0ba785c/imops-0.8.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f97239c5509a4fec1c3a80db1e528c3b9c3008789cace312c1297d590e7ecc2e",
                "md5": "3a5bca62fa4bf40cfac843dcf894c36e",
                "sha256": "09b4fa5471e906936a5398d7445025e31afef968835a1d0f6c44c046421de269"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a5bca62fa4bf40cfac843dcf894c36e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 11591571,
            "upload_time": "2024-02-02T08:47:52",
            "upload_time_iso_8601": "2024-02-02T08:47:52.637006Z",
            "url": "https://files.pythonhosted.org/packages/f9/72/39c5509a4fec1c3a80db1e528c3b9c3008789cace312c1297d590e7ecc2e/imops-0.8.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "615c26688f143894cd20bb71456f786536270a792c37324cdc8cd22b3db75942",
                "md5": "81ddb5b09188de163d0253d79cbb5e93",
                "sha256": "610fad352bf5575daeac6b2d2cb6e73e98f2696afbdaf15790ff210ba843c27b"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "81ddb5b09188de163d0253d79cbb5e93",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 11720065,
            "upload_time": "2024-02-02T08:47:56",
            "upload_time_iso_8601": "2024-02-02T08:47:56.272647Z",
            "url": "https://files.pythonhosted.org/packages/61/5c/26688f143894cd20bb71456f786536270a792c37324cdc8cd22b3db75942/imops-0.8.6-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f6f3a9ff592b2508c291e5c08ec06a76a528f632e5e2c3028768407169a5146",
                "md5": "7439b0090b823705355cf7939768d582",
                "sha256": "76a74dc98e20eec7c32363883a482c3464af5d5b3cd44eb7e1d2bdd4e257f0eb"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7439b0090b823705355cf7939768d582",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 12168430,
            "upload_time": "2024-02-02T08:47:58",
            "upload_time_iso_8601": "2024-02-02T08:47:58.847460Z",
            "url": "https://files.pythonhosted.org/packages/4f/6f/3a9ff592b2508c291e5c08ec06a76a528f632e5e2c3028768407169a5146/imops-0.8.6-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b877542f1511560e1e83289cb8b5d2fb95531203c9011ab2603a0b5dd05cdb6d",
                "md5": "fca40e4d43ec802f398a224c4ad36405",
                "sha256": "1aea2b482eab401a3b010d2e3bee35e9eb72f76dd93e89498888ec923a53ede5"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "fca40e4d43ec802f398a224c4ad36405",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2901424,
            "upload_time": "2024-02-02T08:48:01",
            "upload_time_iso_8601": "2024-02-02T08:48:01.835578Z",
            "url": "https://files.pythonhosted.org/packages/b8/77/542f1511560e1e83289cb8b5d2fb95531203c9011ab2603a0b5dd05cdb6d/imops-0.8.6-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf61573e8e1274556a819ed44d0cbf1c8e82b5a5ae8a66da417754cb4e05f0e0",
                "md5": "969edc896aea69c71ee3691956be2ce9",
                "sha256": "cc500bbbe062f4f3c89213abadb8e75ddec845490b06ac9632b9c8b9ddc3371d"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "969edc896aea69c71ee3691956be2ce9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 3097654,
            "upload_time": "2024-02-02T08:48:04",
            "upload_time_iso_8601": "2024-02-02T08:48:04.446933Z",
            "url": "https://files.pythonhosted.org/packages/bf/61/573e8e1274556a819ed44d0cbf1c8e82b5a5ae8a66da417754cb4e05f0e0/imops-0.8.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0bf7d263f921f76e3a539ea39de322480c41e73533f7133211ac9ef27351898",
                "md5": "122acb4a9f26dc80a04375b6787dd835",
                "sha256": "04c7ef2acbdc12ee2dc0d877f9a42bc3712668031e7c5cb064af34b744e07c7d"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "122acb4a9f26dc80a04375b6787dd835",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 2998758,
            "upload_time": "2024-02-02T08:48:06",
            "upload_time_iso_8601": "2024-02-02T08:48:06.922206Z",
            "url": "https://files.pythonhosted.org/packages/f0/bf/7d263f921f76e3a539ea39de322480c41e73533f7133211ac9ef27351898/imops-0.8.6-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c8f0f58e7a3df1b881b9c66307970383f58a3200d7523c6b6776800560c0358",
                "md5": "4380f84bd5bf22aa3bdb030784add3e2",
                "sha256": "804e2b66ad95f2ff18caa4190a2511d8f077682b6359bebab20869230c36ca92"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4380f84bd5bf22aa3bdb030784add3e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 8439253,
            "upload_time": "2024-02-02T08:48:08",
            "upload_time_iso_8601": "2024-02-02T08:48:08.794848Z",
            "url": "https://files.pythonhosted.org/packages/1c/8f/0f58e7a3df1b881b9c66307970383f58a3200d7523c6b6776800560c0358/imops-0.8.6-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "010939388535eee57cafb8c37900f66010a01cc862fa28cc09a99000c9de28e7",
                "md5": "c126473b32a6f6f338df83d631c78f68",
                "sha256": "de957ad6e9844ae73dfed890010e25285986b817ffb398cd5c56819ee5e5ca1b"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c126473b32a6f6f338df83d631c78f68",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 8842518,
            "upload_time": "2024-02-02T08:48:11",
            "upload_time_iso_8601": "2024-02-02T08:48:11.454758Z",
            "url": "https://files.pythonhosted.org/packages/01/09/39388535eee57cafb8c37900f66010a01cc862fa28cc09a99000c9de28e7/imops-0.8.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f08ef2aa3f976389cffcae65623a7e33efc025c116bef452dbd2eee5fddd4e8",
                "md5": "aad9e7cc96e744d6161ea35e44bc688f",
                "sha256": "96f5211e930deff4a93dfc366305df52c9e8337f5f92317271c2c8b13c9c4e5d"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "aad9e7cc96e744d6161ea35e44bc688f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 9053329,
            "upload_time": "2024-02-02T08:48:14",
            "upload_time_iso_8601": "2024-02-02T08:48:14.146644Z",
            "url": "https://files.pythonhosted.org/packages/7f/08/ef2aa3f976389cffcae65623a7e33efc025c116bef452dbd2eee5fddd4e8/imops-0.8.6-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98f4c3db3c541a0db6178bf9a7932eea1d8e02d61806b6c85d8e50625037ce42",
                "md5": "2c2aa70f2118e401dedb2dfd723105a7",
                "sha256": "317ad4829a868406368f4a7a276b6ba0f38aeaffe61dc4fe08ba53470a207e58"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c2aa70f2118e401dedb2dfd723105a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 9522376,
            "upload_time": "2024-02-02T08:48:16",
            "upload_time_iso_8601": "2024-02-02T08:48:16.899421Z",
            "url": "https://files.pythonhosted.org/packages/98/f4/c3db3c541a0db6178bf9a7932eea1d8e02d61806b6c85d8e50625037ce42/imops-0.8.6-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee898040c75a61480c8bf3b390abadbfd29b63b415c86cf42914335fd6e3a1df",
                "md5": "d4d54d27a74030a4db0d39a338a09980",
                "sha256": "6af53eafda78288377e9903619f0551db4b6e8154f87d6a37995882b1c84ba1b"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "d4d54d27a74030a4db0d39a338a09980",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 1141084,
            "upload_time": "2024-02-02T08:48:19",
            "upload_time_iso_8601": "2024-02-02T08:48:19.519403Z",
            "url": "https://files.pythonhosted.org/packages/ee/89/8040c75a61480c8bf3b390abadbfd29b63b415c86cf42914335fd6e3a1df/imops-0.8.6-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09bd00550ba873f7415a83c71eac548e53a71b2caccf1c69275f564e49906b56",
                "md5": "ba12c2305367e87d35151e48f9e0a46e",
                "sha256": "eda6334e3defc888041e80fc14e8506a6e5cd1a491e77f91b35bf55aa11ae2a5"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ba12c2305367e87d35151e48f9e0a46e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 1390933,
            "upload_time": "2024-02-02T08:48:21",
            "upload_time_iso_8601": "2024-02-02T08:48:21.050884Z",
            "url": "https://files.pythonhosted.org/packages/09/bd/00550ba873f7415a83c71eac548e53a71b2caccf1c69275f564e49906b56/imops-0.8.6-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf0fc15a66d7f9c610efdf043196cb80a5813dc48357d23f44f34beb688bdebd",
                "md5": "10ca14177339adc97dfd97bbd564c1fc",
                "sha256": "6f6773a7dd364fd5f50778a573f14107bcf243286cb6aaa5e8bb5aeb4b9cfacf"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10ca14177339adc97dfd97bbd564c1fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 4852043,
            "upload_time": "2024-02-02T08:48:23",
            "upload_time_iso_8601": "2024-02-02T08:48:23.447336Z",
            "url": "https://files.pythonhosted.org/packages/cf/0f/c15a66d7f9c610efdf043196cb80a5813dc48357d23f44f34beb688bdebd/imops-0.8.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b7502399739d86921e2f411e437adc56327d4d697f6c69300da2aeb84b2d7e8",
                "md5": "b0ea88e5517d813eddede22f1926320c",
                "sha256": "f5e6cc68dacface53380fc426313e357a422d1620e221627aaa03c1f823c2c32"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b0ea88e5517d813eddede22f1926320c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 10284502,
            "upload_time": "2024-02-02T08:48:26",
            "upload_time_iso_8601": "2024-02-02T08:48:26.065513Z",
            "url": "https://files.pythonhosted.org/packages/2b/75/02399739d86921e2f411e437adc56327d4d697f6c69300da2aeb84b2d7e8/imops-0.8.6-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "761e1b2700cb4767b091da4624979f11d3dccc54b12f8ee8cbb0e192671e8218",
                "md5": "f205374b49edc0aca07ecfbd41139868",
                "sha256": "3f08ddb28359d20a2dc6cf81f5abba718bd259b70f7d4ae0a7d687cfb06a45b7"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f205374b49edc0aca07ecfbd41139868",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 10708930,
            "upload_time": "2024-02-02T08:48:29",
            "upload_time_iso_8601": "2024-02-02T08:48:29.437213Z",
            "url": "https://files.pythonhosted.org/packages/76/1e/1b2700cb4767b091da4624979f11d3dccc54b12f8ee8cbb0e192671e8218/imops-0.8.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e04c3f633681644b1e3cb110e854d6f2960056e6807b47634729e8cd48364085",
                "md5": "d24ff8484da51d095048ed12e64ff8f7",
                "sha256": "f14e704ab4fc8078a5244265f0ca9abea994a36c10b682e807c926db224b2e69"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d24ff8484da51d095048ed12e64ff8f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 10937299,
            "upload_time": "2024-02-02T08:48:31",
            "upload_time_iso_8601": "2024-02-02T08:48:31.916109Z",
            "url": "https://files.pythonhosted.org/packages/e0/4c/3f633681644b1e3cb110e854d6f2960056e6807b47634729e8cd48364085/imops-0.8.6-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f945bc09586b1c794d90b9d704f5890feeba712b94f8b67f47f0f72e9111e9d1",
                "md5": "8772ef9e2f6d4d2eb703fe0f4c121a88",
                "sha256": "643365a84d7f165cdc2b4da0a79fde1c7aef1280a4e70434a8f969ec8e939fbd"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8772ef9e2f6d4d2eb703fe0f4c121a88",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 11394690,
            "upload_time": "2024-02-02T08:48:35",
            "upload_time_iso_8601": "2024-02-02T08:48:35.259460Z",
            "url": "https://files.pythonhosted.org/packages/f9/45/bc09586b1c794d90b9d704f5890feeba712b94f8b67f47f0f72e9111e9d1/imops-0.8.6-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92a34c3d2d4e17b5bf86c69e7a0823dd92596f408cd28cc0cc7acfa722f7024c",
                "md5": "2476b95169736e3109f0b0314eac7bbe",
                "sha256": "cd7bd6175f490787d130dea6c06ab18f10ae91326f03f8d7890c13d4e2c23d15"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "2476b95169736e3109f0b0314eac7bbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 2908807,
            "upload_time": "2024-02-02T08:48:37",
            "upload_time_iso_8601": "2024-02-02T08:48:37.530882Z",
            "url": "https://files.pythonhosted.org/packages/92/a3/4c3d2d4e17b5bf86c69e7a0823dd92596f408cd28cc0cc7acfa722f7024c/imops-0.8.6-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fdb06d48f45e23a73de49d1214c199b59096661f101860d25af24ae0cad6a46",
                "md5": "38531c1bf68ba11ce277bdf0efc7a837",
                "sha256": "55f204476dcc5ddfb345ba6d9b9afc9f28eb4530d54e35b9b8f71cb1ca748995"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "38531c1bf68ba11ce277bdf0efc7a837",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 3105391,
            "upload_time": "2024-02-02T08:48:39",
            "upload_time_iso_8601": "2024-02-02T08:48:39.228947Z",
            "url": "https://files.pythonhosted.org/packages/7f/db/06d48f45e23a73de49d1214c199b59096661f101860d25af24ae0cad6a46/imops-0.8.6-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "376440c98b62da8492ff84489d61b95c0e45f6889ee17c13376561851dab5e18",
                "md5": "c582ba4c829affaa9b960936601c24d5",
                "sha256": "e0b0fe1a726ab2d8c79e448f821241f74c20e23bc4fa63dacabe5fbab2757638"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c582ba4c829affaa9b960936601c24d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 4882747,
            "upload_time": "2024-02-02T08:48:41",
            "upload_time_iso_8601": "2024-02-02T08:48:41.001090Z",
            "url": "https://files.pythonhosted.org/packages/37/64/40c98b62da8492ff84489d61b95c0e45f6889ee17c13376561851dab5e18/imops-0.8.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e6b27eb2dc89c007fa724fcacb342252e6ca545251ec52e841e31575db8332b",
                "md5": "7efe69b743bec656cf4aada5e763543c",
                "sha256": "6415c0f40f7281fc3ccd1fba3f57692fba59908f494510f1080699bf7c574dd4"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7efe69b743bec656cf4aada5e763543c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 10962053,
            "upload_time": "2024-02-02T08:48:42",
            "upload_time_iso_8601": "2024-02-02T08:48:42.972381Z",
            "url": "https://files.pythonhosted.org/packages/7e/6b/27eb2dc89c007fa724fcacb342252e6ca545251ec52e841e31575db8332b/imops-0.8.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d5663adffb63a16469e68f7039cde1d8ae5df84ff6ceb111387926f155eb3dc",
                "md5": "01c761e32330a467f3651e11a90d202a",
                "sha256": "3e466edc81ddae079fab98de3a2a5dde60ea5f7236a3e3098077627d6a37dfdf"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01c761e32330a467f3651e11a90d202a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 11362312,
            "upload_time": "2024-02-02T08:48:45",
            "upload_time_iso_8601": "2024-02-02T08:48:45.480766Z",
            "url": "https://files.pythonhosted.org/packages/8d/56/63adffb63a16469e68f7039cde1d8ae5df84ff6ceb111387926f155eb3dc/imops-0.8.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c056d678e600237694e64a7946a38497944ff82580dde11026292b719f430c71",
                "md5": "416968766b650210f64e43da8a7558a4",
                "sha256": "7b0018f5988a304ce68edd00e2388536e0ec49545af47e54531d042d59cea66b"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "416968766b650210f64e43da8a7558a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 11867152,
            "upload_time": "2024-02-02T08:48:48",
            "upload_time_iso_8601": "2024-02-02T08:48:48.281547Z",
            "url": "https://files.pythonhosted.org/packages/c0/56/d678e600237694e64a7946a38497944ff82580dde11026292b719f430c71/imops-0.8.6-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e4a67fb69efeee84cda82e265f783c723e714d3d3704220df02bce83f23d7c9",
                "md5": "df93153d816c90c814f6d2c307cd65d2",
                "sha256": "7c7f2a6c3f556e6dc6c1f2f085e544999ae229e3b4966090951f6ff28bf195ff"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df93153d816c90c814f6d2c307cd65d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 12353737,
            "upload_time": "2024-02-02T08:48:51",
            "upload_time_iso_8601": "2024-02-02T08:48:51.011657Z",
            "url": "https://files.pythonhosted.org/packages/7e/4a/67fb69efeee84cda82e265f783c723e714d3d3704220df02bce83f23d7c9/imops-0.8.6-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bf829e4653cc2ddfc72cf2a6e677d89cca40f4450ea69bc4dd8777bcc430f1a",
                "md5": "7f9cd7579a09d66c07100aada2cb24d3",
                "sha256": "8e6ab95d9883bddc1c83e17ce4457d4cd724a20bbf70819b61d611d04b4f57a1"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "7f9cd7579a09d66c07100aada2cb24d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 2916326,
            "upload_time": "2024-02-02T08:48:53",
            "upload_time_iso_8601": "2024-02-02T08:48:53.310251Z",
            "url": "https://files.pythonhosted.org/packages/1b/f8/29e4653cc2ddfc72cf2a6e677d89cca40f4450ea69bc4dd8777bcc430f1a/imops-0.8.6-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be5872d8e443df5ca55a57fbf2985be8f99d73bf842b5cd25606bd98dc15f556",
                "md5": "a2b16f458862e60bc0c1137d92b347b3",
                "sha256": "524d38fa60c70e1f3503b64cca1eeb5213454a24cde7e1cba6b1d89eded0f89e"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a2b16f458862e60bc0c1137d92b347b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 3117818,
            "upload_time": "2024-02-02T08:48:55",
            "upload_time_iso_8601": "2024-02-02T08:48:55.183468Z",
            "url": "https://files.pythonhosted.org/packages/be/58/72d8e443df5ca55a57fbf2985be8f99d73bf842b5cd25606bd98dc15f556/imops-0.8.6-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17f1e5d99789e4323ad1ff4725e8f08abefa923133874dbd73db83286f321d3a",
                "md5": "fe7c51d4ab05710f4bcb33a11c21413b",
                "sha256": "7dbf464aec4a16fdec17461d9e3d0c9991e4ca203f373733d584427fb3351755"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe7c51d4ab05710f4bcb33a11c21413b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 4900246,
            "upload_time": "2024-02-02T08:48:57",
            "upload_time_iso_8601": "2024-02-02T08:48:57.839402Z",
            "url": "https://files.pythonhosted.org/packages/17/f1/e5d99789e4323ad1ff4725e8f08abefa923133874dbd73db83286f321d3a/imops-0.8.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef1a026435c6fe85608163e686951f5953568a4c709b545a3d5dfa28b7367580",
                "md5": "103e8c3f148b085df6fd6b6eadcca51d",
                "sha256": "f9d2d3fea6acbf38d67c725a640b807260ae3c9e2a9e82c43a28c98b2f11d8de"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "103e8c3f148b085df6fd6b6eadcca51d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 10812307,
            "upload_time": "2024-02-02T08:49:00",
            "upload_time_iso_8601": "2024-02-02T08:49:00.583984Z",
            "url": "https://files.pythonhosted.org/packages/ef/1a/026435c6fe85608163e686951f5953568a4c709b545a3d5dfa28b7367580/imops-0.8.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e802f7f48d6a6cf861eaa903b8e4255db3f6f02db5d1fe7f7bc7055266d24301",
                "md5": "eb3b1ce7faeec054264e3a83cc383ebf",
                "sha256": "2402f4d77df42e26c919d32d01c49c23a27cf7962da363aed3b0b3a5ceaeb6d2"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb3b1ce7faeec054264e3a83cc383ebf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 11200184,
            "upload_time": "2024-02-02T08:49:03",
            "upload_time_iso_8601": "2024-02-02T08:49:03.535670Z",
            "url": "https://files.pythonhosted.org/packages/e8/02/f7f48d6a6cf861eaa903b8e4255db3f6f02db5d1fe7f7bc7055266d24301/imops-0.8.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "136e85c70548642c365e968b700c52b158c9de546a884fef17499389fb11f91e",
                "md5": "2ffc8292c4c72afcbe095670502399fb",
                "sha256": "7bfa28d5d82d5b2fca6e74baeb93765c837e19149539ee96a5bfece4a5de045d"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2ffc8292c4c72afcbe095670502399fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 11378344,
            "upload_time": "2024-02-02T08:49:06",
            "upload_time_iso_8601": "2024-02-02T08:49:06.859219Z",
            "url": "https://files.pythonhosted.org/packages/13/6e/85c70548642c365e968b700c52b158c9de546a884fef17499389fb11f91e/imops-0.8.6-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3314b38489fba2e9920c8f7a8498298f5062407c7157d6561b37159444621c78",
                "md5": "3db3036dfeb394b5866f5daf069eeec5",
                "sha256": "0c931e73ea309a88e3b54784ef24ea64aa654b723356e1154e085e0167394c60"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3db3036dfeb394b5866f5daf069eeec5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 11869130,
            "upload_time": "2024-02-02T08:49:09",
            "upload_time_iso_8601": "2024-02-02T08:49:09.555175Z",
            "url": "https://files.pythonhosted.org/packages/33/14/b38489fba2e9920c8f7a8498298f5062407c7157d6561b37159444621c78/imops-0.8.6-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "763290b256850127f02bc4e2992b9a01fcfb2d289e7218002b92bcaf812e9b87",
                "md5": "1e7c7658286f323acb673d37db6cf866",
                "sha256": "4c4db6cba61b25c79f13954ccd06112a08f6e692df91eab55d6c5184859babee"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "1e7c7658286f323acb673d37db6cf866",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2918885,
            "upload_time": "2024-02-02T08:49:11",
            "upload_time_iso_8601": "2024-02-02T08:49:11.990055Z",
            "url": "https://files.pythonhosted.org/packages/76/32/90b256850127f02bc4e2992b9a01fcfb2d289e7218002b92bcaf812e9b87/imops-0.8.6-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52de08fd29b68917318f344e602a9a858ecd69c8a12edefcf8844919320b7c9b",
                "md5": "48e3609e5b8a39ee1553b8b17d38d61a",
                "sha256": "065f3b08209abbe82dd5caa12334f98fc14e9174773d9171cfac0c4fee88421e"
            },
            "downloads": -1,
            "filename": "imops-0.8.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "48e3609e5b8a39ee1553b8b17d38d61a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 3118693,
            "upload_time": "2024-02-02T08:49:13",
            "upload_time_iso_8601": "2024-02-02T08:49:13.759721Z",
            "url": "https://files.pythonhosted.org/packages/52/de/08fd29b68917318f344e602a9a858ecd69c8a12edefcf8844919320b7c9b/imops-0.8.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e631679afc071b043538ddb8390fd095d9f795cde2177a4761ffd57eb35bb562",
                "md5": "27f26af65b953cf8f008e9481d583fed",
                "sha256": "c0a147f80d827be643d44c135efcdf56bfb77e8bebdff0ec24f983e93370c1ef"
            },
            "downloads": -1,
            "filename": "imops-0.8.6.tar.gz",
            "has_sig": false,
            "md5_digest": "27f26af65b953cf8f008e9481d583fed",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 57957,
            "upload_time": "2024-02-02T08:49:15",
            "upload_time_iso_8601": "2024-02-02T08:49:15.909375Z",
            "url": "https://files.pythonhosted.org/packages/e6/31/679afc071b043538ddb8390fd095d9f795cde2177a4761ffd57eb35bb562/imops-0.8.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-02 08:49:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "neuro-ml",
    "github_project": "imops",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "imops"
}
        
Elapsed time: 0.17422s