aicspylibczi


Nameaicspylibczi JSON
Version 3.1.2 PyPI version JSON
download
home_pagehttps://github.com/AllenCellModeling/aicspylibczi
SummaryA python module and a python extension for Zeiss (CZI/ZISRAW) microscopy files.
upload_time2023-04-17 22:50:20
maintainer
docs_urlNone
authorJamie Sherman, Paul Watkins
requires_python
license
keywords aicspylibczi allen cell imaging computational biology
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # aicspylibczi

[![C++ Build & Test](https://github.com/AllenCellModeling/aicspylibczi/workflows/C%2B%2B%20Main%20Build/badge.svg)](https://github.com/AllenCellModeling/aicspylibczi/actions)
[![Python Build & Test](https://github.com/AllenCellModeling/aicspylibczi/workflows/Python%20Build%20Main/badge.svg)](https://github.com/AllenCellModeling/aicspylibczi/actions)
[![codecov](https://codecov.io/gh/AllenCellModeling/aicspylibczi/branch/master/graph/badge.svg)](https://codecov.io/gh/AllenCellModeling/aicspylibczi)
[![License: GPLv3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/AllenCellModeling/aicspylibczi/blob/master/LICENSE)

Python module to expose [libCZI](https://github.com/zeiss-microscopy/libCZI) functionality for reading (subset of) Zeiss
CZI files and meta-data. We only support 64bit architectures currently if you desperately need 32 bit support please make an issue or modify the source and build it for your use case.

## Usage

The first example show how to work with a standard CZI file (Single or Multi-Scene). The second example shows how to work with a Mosaic CZI file.

#### Example 1: Read in a czi and select a portion of the image to display

```python
import numpy as np
from aicspylibczi import CziFile
from pathlib import Path
import matplotlib.pyplot as plt

pth = Path('20190610_S02-02.czi')
czi = CziFile(pth)

# Get the shape of the data, the coordinate pairs are (start index, size)
dimensions = czi.get_dims_shape()  # [{'X': (0, 1900), 'Y': (0, 1300), 'Z': (0, 60), 'C': (0, 4), 'S': (0, 40), 'B': (0, 1)}]

czi.dims  # BSCZYX

czi.size  # (1, 40, 4, 60, 1300, 1900)

# Load the image slice I want from the file
img, shp = czi.read_image(S=13, Z=16)


# shp = [('B', 1), ('S', 1), ('C', 4), ('Z', 1), ('Y', 1300), ('X', 1900)]  # List[(Dimension, size), ...]
# img.shape = (1, 1, 4, 1, 1300, 1900)   # numpy.ndarray

# define helper functions
def norm_by(x, min_, max_):
    norms = np.percentile(x, [min_, max_])
    i2 = np.clip((x - norms[0]) / (norms[1] - norms[0]), 0, 1)
    return i2


def recolor(im):  # transform from rgb to cyan-magenta-yellow
    im_shape = np.array(im.shape)
    color_transform = np.array([[1, 1, 0], [0, 1, 1], [1, 0, 1]]).T
    im_reshape = im.reshape([np.prod(im_shape[0:2]), im_shape[2]]).T
    im_recolored = np.matmul(color_transform.T, im_reshape).T
    im_shape[2] = 3
    im = im_recolored.reshape(im_shape)
    return im


# normalize, combine into RGB and transform to CMY
c1 = (norm_by(img[0, 0, 0, 0, 0:750, 250:1000], 50, 99.8) * 255).astype(np.uint8)
c2 = (norm_by(img[0, 0, 1, 0, 0:750, 250:1000], 50, 99.8) * 255).astype(np.uint8)
c3 = (norm_by(img[0, 0, 2, 0, 0:750, 250:1000], 0, 100) * 255).astype(np.uint8)
rgb = np.stack((c1, c2, c3), axis=2)
cmy = np.clip(recolor(rgb), 0, 255)

# plot using matplotlibĀ¶
plt.figure(figsize=(10, 10))
plt.imshow(cmy)
plt.axis('off')
```

![Cardio Image](images/cardio.png)

#### Example 2: Read in a mosaic file

```python
import numpy as np
import aicspylibczi
import pathlib
from PIL import Image

mosaic_file = pathlib.Path('mosaic_test.czi')
czi = aicspylibczi.CziFile(mosaic_file)

# Get the shape of the data
dimensions = czi.dims  # 'STCZMYX'

czi.size  # (1, 1, 1, 1, 2, 624, 924)

czi.get_dims_shape()  # [{'X': (0, 924), 'Y': (0, 624), 'Z': (0, 1), 'C': (0, 1), 'T': (0, 1), 'M': (0, 2), 'S': (0, 1)}]

czi.is_mosaic()  # True
# Mosaic files ignore the S dimension and use an internal mIndex to reconstruct, the scale factor allows one to generate a manageable image
mosaic_data = czi.read_mosaic(C=0, scale_factor=1)

mosaic_data.shape  # (1, 1, 624, 1756)
# the C channel has been specified S & M are used internally for position so this is (T, Z, Y, X)

normed_mosaic_data = norm_by(mosaic_data[0, 0, :, :], 5, 98) * 255
img = Image.fromarray(normed_mosaic_data.astype(np.uint8))
```

![Mosaic Image](images/mosaic.png)

## Installation

The preferred installation method is with `pip install`.
This will install the aicspylibczi python module and extension binaries ([hosted on PyPI](https://pypi.org/project/aicspylibczi/)):

`pip install aicspylibczi`

**If this doesn't work:** Please investigate the following (generally windows issues):

- your OS is 64 bit - we only support 64 bit binaries
- your python is a 64 bit application (not 32 bit)
- are your C++ runtime libraries up to date? [vc_redist.exe](https://aka.ms/vs/16/release/vc_redist.x64.exe)

If you have tried this and are still having trouble please reach out to us and we will endeavor to help.

## Documentation

Documentation is available at
[github.io](https://allencellmodeling.github.io/aicspylibczi).

## Build

Use these steps to build and install aicspylibczi locally:

- Clone the repository including submodules (`--recurse-submodules`).
- Requirements:
  - libCZI requires a c++11 compatible compiler. Built & Tested with clang.
  - Development requirements are those required for libCZI: **libpng**, **zlib**
  - Install the package:
    ```
    pip install .
    pip install -e .[dev] # for development (-e means editable so changes take effect when made)
    pip install .[all] # for everything including jupyter notebook to work with the Example_Usage above
    ```
  - libCZI is automatically built as a submodule and linked statically into aicspylibczi.
- Note: If you get the message directly below on windows you need to set PYTHONHOME to be the folder the python.exe you are compiling against lives in.

```
EXEC : Fatal Python error : initfsencoding: unable to load the file system codec ...
ModuleNotFoundError: No module named 'encodings'
```

## Known Issues

- with read_mosaic if the scale_factor is not 1.0 Zeiss's libCZI will, on some files, fail to render certain subblocks
  within the composite mosaic image. It is not currently known if this is an issue with the file or with libCZI.

## History

aicspylibczi was originally a fork of [pylibczi](https:://github.com/elhuhdron/pylibczi) that was developed by
Paul Watkins and focused on mSEM data. In attempting to extend the work to we transitioned
to pybind11, implemented c++ and python tests, added continuous integration via github actions,
and added the functionality to read individual subblocks and stacks of subblocks as a numpy.ndarray.
Metadata reading, including specific subblock metadata reading has also been added.

We intend for this work to be merged back into the original project once we have the new work integrated with
the original work.

## Licenses & Acknowledgements

This project was created from a fork of pylibczi as explained above in the history section and Paul Watkins
is a developer on our repo as well. Pylibczi, from
the [Center of Advanced European Studies And Research](https://www.caesar.de/en/about-caesar/)
and the core dependency libCZI, are covered by the GPLv3 license.

The [GPLv3 license](https://www.gnu.org/licenses/gpl-3.0.en.html) is a consequence of libCZI which imposes GPLv3. If
you wish to use libCZI or this derivative in a commercial product you may need to talk to
Zeiss and CAESAR. [A discussion about GPLv3](https://choosealicense.com/licenses/gpl-3.0/).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/AllenCellModeling/aicspylibczi",
    "name": "aicspylibczi",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "aicspylibczi,allen cell,imaging,computational biology",
    "author": "Jamie Sherman, Paul Watkins",
    "author_email": "jamies@alleninstitute.org, pwatkins@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/b1/9a/68187675716c9b383d9bef4b3e59f50deeaf227486e467eaa2bf2d1f5e1c/aicspylibczi-3.1.2.tar.gz",
    "platform": null,
    "description": "# aicspylibczi\n\n[![C++ Build & Test](https://github.com/AllenCellModeling/aicspylibczi/workflows/C%2B%2B%20Main%20Build/badge.svg)](https://github.com/AllenCellModeling/aicspylibczi/actions)\n[![Python Build & Test](https://github.com/AllenCellModeling/aicspylibczi/workflows/Python%20Build%20Main/badge.svg)](https://github.com/AllenCellModeling/aicspylibczi/actions)\n[![codecov](https://codecov.io/gh/AllenCellModeling/aicspylibczi/branch/master/graph/badge.svg)](https://codecov.io/gh/AllenCellModeling/aicspylibczi)\n[![License: GPLv3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/AllenCellModeling/aicspylibczi/blob/master/LICENSE)\n\nPython module to expose [libCZI](https://github.com/zeiss-microscopy/libCZI) functionality for reading (subset of) Zeiss\nCZI files and meta-data. We only support 64bit architectures currently if you desperately need 32 bit support please make an issue or modify the source and build it for your use case.\n\n## Usage\n\nThe first example show how to work with a standard CZI file (Single or Multi-Scene). The second example shows how to work with a Mosaic CZI file.\n\n#### Example 1: Read in a czi and select a portion of the image to display\n\n```python\nimport numpy as np\nfrom aicspylibczi import CziFile\nfrom pathlib import Path\nimport matplotlib.pyplot as plt\n\npth = Path('20190610_S02-02.czi')\nczi = CziFile(pth)\n\n# Get the shape of the data, the coordinate pairs are (start index, size)\ndimensions = czi.get_dims_shape()  # [{'X': (0, 1900), 'Y': (0, 1300), 'Z': (0, 60), 'C': (0, 4), 'S': (0, 40), 'B': (0, 1)}]\n\nczi.dims  # BSCZYX\n\nczi.size  # (1, 40, 4, 60, 1300, 1900)\n\n# Load the image slice I want from the file\nimg, shp = czi.read_image(S=13, Z=16)\n\n\n# shp = [('B', 1), ('S', 1), ('C', 4), ('Z', 1), ('Y', 1300), ('X', 1900)]  # List[(Dimension, size), ...]\n# img.shape = (1, 1, 4, 1, 1300, 1900)   # numpy.ndarray\n\n# define helper functions\ndef norm_by(x, min_, max_):\n    norms = np.percentile(x, [min_, max_])\n    i2 = np.clip((x - norms[0]) / (norms[1] - norms[0]), 0, 1)\n    return i2\n\n\ndef recolor(im):  # transform from rgb to cyan-magenta-yellow\n    im_shape = np.array(im.shape)\n    color_transform = np.array([[1, 1, 0], [0, 1, 1], [1, 0, 1]]).T\n    im_reshape = im.reshape([np.prod(im_shape[0:2]), im_shape[2]]).T\n    im_recolored = np.matmul(color_transform.T, im_reshape).T\n    im_shape[2] = 3\n    im = im_recolored.reshape(im_shape)\n    return im\n\n\n# normalize, combine into RGB and transform to CMY\nc1 = (norm_by(img[0, 0, 0, 0, 0:750, 250:1000], 50, 99.8) * 255).astype(np.uint8)\nc2 = (norm_by(img[0, 0, 1, 0, 0:750, 250:1000], 50, 99.8) * 255).astype(np.uint8)\nc3 = (norm_by(img[0, 0, 2, 0, 0:750, 250:1000], 0, 100) * 255).astype(np.uint8)\nrgb = np.stack((c1, c2, c3), axis=2)\ncmy = np.clip(recolor(rgb), 0, 255)\n\n# plot using matplotlib\u00b6\nplt.figure(figsize=(10, 10))\nplt.imshow(cmy)\nplt.axis('off')\n```\n\n![Cardio Image](images/cardio.png)\n\n#### Example 2: Read in a mosaic file\n\n```python\nimport numpy as np\nimport aicspylibczi\nimport pathlib\nfrom PIL import Image\n\nmosaic_file = pathlib.Path('mosaic_test.czi')\nczi = aicspylibczi.CziFile(mosaic_file)\n\n# Get the shape of the data\ndimensions = czi.dims  # 'STCZMYX'\n\nczi.size  # (1, 1, 1, 1, 2, 624, 924)\n\nczi.get_dims_shape()  # [{'X': (0, 924), 'Y': (0, 624), 'Z': (0, 1), 'C': (0, 1), 'T': (0, 1), 'M': (0, 2), 'S': (0, 1)}]\n\nczi.is_mosaic()  # True\n# Mosaic files ignore the S dimension and use an internal mIndex to reconstruct, the scale factor allows one to generate a manageable image\nmosaic_data = czi.read_mosaic(C=0, scale_factor=1)\n\nmosaic_data.shape  # (1, 1, 624, 1756)\n# the C channel has been specified S & M are used internally for position so this is (T, Z, Y, X)\n\nnormed_mosaic_data = norm_by(mosaic_data[0, 0, :, :], 5, 98) * 255\nimg = Image.fromarray(normed_mosaic_data.astype(np.uint8))\n```\n\n![Mosaic Image](images/mosaic.png)\n\n## Installation\n\nThe preferred installation method is with `pip install`.\nThis will install the aicspylibczi python module and extension binaries ([hosted on PyPI](https://pypi.org/project/aicspylibczi/)):\n\n`pip install aicspylibczi`\n\n**If this doesn't work:** Please investigate the following (generally windows issues):\n\n- your OS is 64 bit - we only support 64 bit binaries\n- your python is a 64 bit application (not 32 bit)\n- are your C++ runtime libraries up to date? [vc_redist.exe](https://aka.ms/vs/16/release/vc_redist.x64.exe)\n\nIf you have tried this and are still having trouble please reach out to us and we will endeavor to help.\n\n## Documentation\n\nDocumentation is available at\n[github.io](https://allencellmodeling.github.io/aicspylibczi).\n\n## Build\n\nUse these steps to build and install aicspylibczi locally:\n\n- Clone the repository including submodules (`--recurse-submodules`).\n- Requirements:\n  - libCZI requires a c++11 compatible compiler. Built & Tested with clang.\n  - Development requirements are those required for libCZI: **libpng**, **zlib**\n  - Install the package:\n    ```\n    pip install .\n    pip install -e .[dev] # for development (-e means editable so changes take effect when made)\n    pip install .[all] # for everything including jupyter notebook to work with the Example_Usage above\n    ```\n  - libCZI is automatically built as a submodule and linked statically into aicspylibczi.\n- Note: If you get the message directly below on windows you need to set PYTHONHOME to be the folder the python.exe you are compiling against lives in.\n\n```\nEXEC : Fatal Python error : initfsencoding: unable to load the file system codec ...\nModuleNotFoundError: No module named 'encodings'\n```\n\n## Known Issues\n\n- with read_mosaic if the scale_factor is not 1.0 Zeiss's libCZI will, on some files, fail to render certain subblocks\n  within the composite mosaic image. It is not currently known if this is an issue with the file or with libCZI.\n\n## History\n\naicspylibczi was originally a fork of [pylibczi](https:://github.com/elhuhdron/pylibczi) that was developed by\nPaul Watkins and focused on mSEM data. In attempting to extend the work to we transitioned\nto pybind11, implemented c++ and python tests, added continuous integration via github actions,\nand added the functionality to read individual subblocks and stacks of subblocks as a numpy.ndarray.\nMetadata reading, including specific subblock metadata reading has also been added.\n\nWe intend for this work to be merged back into the original project once we have the new work integrated with\nthe original work.\n\n## Licenses & Acknowledgements\n\nThis project was created from a fork of pylibczi as explained above in the history section and Paul Watkins\nis a developer on our repo as well. Pylibczi, from\nthe [Center of Advanced European Studies And Research](https://www.caesar.de/en/about-caesar/)\nand the core dependency libCZI, are covered by the GPLv3 license.\n\nThe [GPLv3 license](https://www.gnu.org/licenses/gpl-3.0.en.html) is a consequence of libCZI which imposes GPLv3. If\nyou wish to use libCZI or this derivative in a commercial product you may need to talk to\nZeiss and CAESAR. [A discussion about GPLv3](https://choosealicense.com/licenses/gpl-3.0/).\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A python module and a python extension for Zeiss (CZI/ZISRAW) microscopy files.",
    "version": "3.1.2",
    "split_keywords": [
        "aicspylibczi",
        "allen cell",
        "imaging",
        "computational biology"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "522c6120481d0e8d92537b2b68f543969a47d90d7397e3c0436b0c4a9ebb7c95",
                "md5": "64dd5707e3514f223bbb78cbb1a9e349",
                "sha256": "39ab6d2fb7cfc4bc9bd65aa8a1fbd04d14c451619b5b56be55666d66ab93df17"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "64dd5707e3514f223bbb78cbb1a9e349",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1555687,
            "upload_time": "2023-04-17T22:49:18",
            "upload_time_iso_8601": "2023-04-17T22:49:18.147869Z",
            "url": "https://files.pythonhosted.org/packages/52/2c/6120481d0e8d92537b2b68f543969a47d90d7397e3c0436b0c4a9ebb7c95/aicspylibczi-3.1.2-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f7e5ef7fe7b1a0668ed59c5ce943d5e2801fe34db4fe3d317ed8de23c8edec5",
                "md5": "d8bc226c353ead47002c1a51bb535b1a",
                "sha256": "498e4936cc08de78916cbcd5cbf043b6cf42da6371b4449781419af738ad5b88"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8bc226c353ead47002c1a51bb535b1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 837771,
            "upload_time": "2023-04-17T22:49:21",
            "upload_time_iso_8601": "2023-04-17T22:49:21.101305Z",
            "url": "https://files.pythonhosted.org/packages/4f/7e/5ef7fe7b1a0668ed59c5ce943d5e2801fe34db4fe3d317ed8de23c8edec5/aicspylibczi-3.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91d74e96a4f74a6d6dc66f02af08ed9966b7fe7042ac29b0d96d75f853eabdba",
                "md5": "3ee944eb75f401500555c98939b06534",
                "sha256": "e53e3fb305c783a4ffe44fe2bf3f390bfe24b0f944f6d345171159b41d178f11"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3ee944eb75f401500555c98939b06534",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 739780,
            "upload_time": "2023-04-17T22:49:23",
            "upload_time_iso_8601": "2023-04-17T22:49:23.764091Z",
            "url": "https://files.pythonhosted.org/packages/91/d7/4e96a4f74a6d6dc66f02af08ed9966b7fe7042ac29b0d96d75f853eabdba/aicspylibczi-3.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4e50f733fa994dcaf5e6e8931a0c639fb4654d1534eada3b458924e853fe445",
                "md5": "34e8c448b3c01d385c97c3878766ddfe",
                "sha256": "28df036ac02b66769273764231928e3134f61261942393205dda73479f272e8e"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34e8c448b3c01d385c97c3878766ddfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1002673,
            "upload_time": "2023-04-17T22:49:26",
            "upload_time_iso_8601": "2023-04-17T22:49:26.463627Z",
            "url": "https://files.pythonhosted.org/packages/d4/e5/0f733fa994dcaf5e6e8931a0c639fb4654d1534eada3b458924e853fe445/aicspylibczi-3.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4f5a5a8002d40cd839b66762f9d835ffdb958b6ec2c347e5f5621935bffecec",
                "md5": "1621588d6698d7a82a05f763c1c7f883",
                "sha256": "9b72bb6c6dde1dfffa1d76c4976182a511a8dc95dd5a22b10fc5c0d6d2ce579f"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1621588d6698d7a82a05f763c1c7f883",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 568938,
            "upload_time": "2023-04-17T22:49:29",
            "upload_time_iso_8601": "2023-04-17T22:49:29.265864Z",
            "url": "https://files.pythonhosted.org/packages/b4/f5/a5a8002d40cd839b66762f9d835ffdb958b6ec2c347e5f5621935bffecec/aicspylibczi-3.1.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e12844ba87b9364e49b9f02a89abb334836209297cb959fd1ad5fa945c85ea4",
                "md5": "4184f0ddf6a60a06e75690acdc62eeca",
                "sha256": "f36343dcf7f5417144c37782f34a4b74fc60a212277c22639fe34f468fd0dcb7"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4184f0ddf6a60a06e75690acdc62eeca",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1555711,
            "upload_time": "2023-04-17T22:49:31",
            "upload_time_iso_8601": "2023-04-17T22:49:31.889127Z",
            "url": "https://files.pythonhosted.org/packages/1e/12/844ba87b9364e49b9f02a89abb334836209297cb959fd1ad5fa945c85ea4/aicspylibczi-3.1.2-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f2e90a7b93f362bccf8fc94583c858248d6a3da90df03ae6dca8a6ac7f9dcd1",
                "md5": "ac2852ea6b3437822e71207d62a1dfbb",
                "sha256": "c76fe294b734d379e0448fc0c0ab55cc6b979f41e2f9841ad98d064b15be7a1d"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac2852ea6b3437822e71207d62a1dfbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 837630,
            "upload_time": "2023-04-17T22:49:34",
            "upload_time_iso_8601": "2023-04-17T22:49:34.181663Z",
            "url": "https://files.pythonhosted.org/packages/7f/2e/90a7b93f362bccf8fc94583c858248d6a3da90df03ae6dca8a6ac7f9dcd1/aicspylibczi-3.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0fe00a088c08c884c467971baa163d5d85e3cd96d4bab315515bb5f776757e6",
                "md5": "350dc3f6a2f2968c92469df511480a3b",
                "sha256": "2f763308dbfc120e0ae9ea7b4faa18a4fb699a6b14013c657e82c99c88a0fe37"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "350dc3f6a2f2968c92469df511480a3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 739784,
            "upload_time": "2023-04-17T22:49:36",
            "upload_time_iso_8601": "2023-04-17T22:49:36.804801Z",
            "url": "https://files.pythonhosted.org/packages/a0/fe/00a088c08c884c467971baa163d5d85e3cd96d4bab315515bb5f776757e6/aicspylibczi-3.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ec8ed8923d33664a69a3f8ee42778d89972af0e48908ede8d1e0b6b1d641e41",
                "md5": "96b9c49d95ea9399ac18cde90b21289f",
                "sha256": "2c6d494aa4f5eb42e9d9c95a590725758ec99591dcb6859c7a1952847f6b60fc"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "96b9c49d95ea9399ac18cde90b21289f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1002641,
            "upload_time": "2023-04-17T22:49:39",
            "upload_time_iso_8601": "2023-04-17T22:49:39.193967Z",
            "url": "https://files.pythonhosted.org/packages/6e/c8/ed8923d33664a69a3f8ee42778d89972af0e48908ede8d1e0b6b1d641e41/aicspylibczi-3.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0dc9181146b8d9a4fb1b599f82455bd84943c635aabf034951f353216c771335",
                "md5": "df72ce52b638e8fb2fa00ae958bc8716",
                "sha256": "434cbe451f57eabd5095857e6a2bdbd90ff8c8d19eeace74e4d018b38eb7f51f"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "df72ce52b638e8fb2fa00ae958bc8716",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 568974,
            "upload_time": "2023-04-17T22:49:41",
            "upload_time_iso_8601": "2023-04-17T22:49:41.253646Z",
            "url": "https://files.pythonhosted.org/packages/0d/c9/181146b8d9a4fb1b599f82455bd84943c635aabf034951f353216c771335/aicspylibczi-3.1.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c93dbe057cfd364d1bd8bd64936ef1c824913548fc33593c318063f97c034f1",
                "md5": "518efa2efc7fa8511a6226c332b3480e",
                "sha256": "faf01cae5b440e494cc0c8f955736ba8485c9a69bedbf6146d86102016aea9fc"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "518efa2efc7fa8511a6226c332b3480e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 836121,
            "upload_time": "2023-04-17T22:49:43",
            "upload_time_iso_8601": "2023-04-17T22:49:43.546165Z",
            "url": "https://files.pythonhosted.org/packages/7c/93/dbe057cfd364d1bd8bd64936ef1c824913548fc33593c318063f97c034f1/aicspylibczi-3.1.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b42cd1a7d9f5d18d43275066ec68074ff7cd94b64216b7235b5958c2b1507e12",
                "md5": "ea7923f0fd0c1b68d460d7d89d4d32f8",
                "sha256": "6f75b52ae10a12ef827c49c9e15ddfff54c19800138a4347cfce9ceba2deac61"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea7923f0fd0c1b68d460d7d89d4d32f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1009519,
            "upload_time": "2023-04-17T22:49:46",
            "upload_time_iso_8601": "2023-04-17T22:49:46.394236Z",
            "url": "https://files.pythonhosted.org/packages/b4/2c/d1a7d9f5d18d43275066ec68074ff7cd94b64216b7235b5958c2b1507e12/aicspylibczi-3.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15387e68c49cb93b49e73debb15a6e6b761e4a5d6514fa74b12bd89f0dd0ffbb",
                "md5": "a7a51f9bb7c38731de7e0ff78f8f9b04",
                "sha256": "070c9acaf1220a5f17c0d1f5acee0fdbf2e78463315afbbe702cbf061f626631"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a7a51f9bb7c38731de7e0ff78f8f9b04",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 568497,
            "upload_time": "2023-04-17T22:49:48",
            "upload_time_iso_8601": "2023-04-17T22:49:48.407537Z",
            "url": "https://files.pythonhosted.org/packages/15/38/7e68c49cb93b49e73debb15a6e6b761e4a5d6514fa74b12bd89f0dd0ffbb/aicspylibczi-3.1.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90e96549f5347c57fb629b01baa50e2abbea6c31bf41b9a0d5c6a6e8f48d7d4b",
                "md5": "0d779776b875b53d2ec1e6fe23d378d8",
                "sha256": "fc81e519f331409ab27eccf009b1d4f0797cb8064c368e2eb298ff67d4afa4c2"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "0d779776b875b53d2ec1e6fe23d378d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1555611,
            "upload_time": "2023-04-17T22:49:51",
            "upload_time_iso_8601": "2023-04-17T22:49:51.045738Z",
            "url": "https://files.pythonhosted.org/packages/90/e9/6549f5347c57fb629b01baa50e2abbea6c31bf41b9a0d5c6a6e8f48d7d4b/aicspylibczi-3.1.2-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4da38407552dbdb2edf7abc74a86b0e36566d738a454354987eae4ab63d4a37b",
                "md5": "085d88eac1bc3225d6ce77e43412e2b1",
                "sha256": "c29f896c81df8c974107397771ab2ecd198fc6f11b942653ca3f301a08aafcb2"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "085d88eac1bc3225d6ce77e43412e2b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 837737,
            "upload_time": "2023-04-17T22:49:53",
            "upload_time_iso_8601": "2023-04-17T22:49:53.566593Z",
            "url": "https://files.pythonhosted.org/packages/4d/a3/8407552dbdb2edf7abc74a86b0e36566d738a454354987eae4ab63d4a37b/aicspylibczi-3.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ba4ec2e5dcd0fe98d6ecb71549c93545c95194b8da3f20bf0a20c05922878c2",
                "md5": "0cb84b0ddf27356e57e949d500be36e8",
                "sha256": "002313c4adb9278122c1fa6a0f285405236c69c550bcf6f655f32c5bdf523907"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0cb84b0ddf27356e57e949d500be36e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 739716,
            "upload_time": "2023-04-17T22:49:56",
            "upload_time_iso_8601": "2023-04-17T22:49:56.328280Z",
            "url": "https://files.pythonhosted.org/packages/0b/a4/ec2e5dcd0fe98d6ecb71549c93545c95194b8da3f20bf0a20c05922878c2/aicspylibczi-3.1.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75aa0f8d45705692f2bdb8055dff567b743430190958e37ff7ef0d1aa85ce567",
                "md5": "d7110a8e8d552e5e60849d4d35a08ee8",
                "sha256": "7a26f02d56f06202dfaaead70add2d960f0f77c3641acedee4bee79dfbea5dac"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7110a8e8d552e5e60849d4d35a08ee8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1002460,
            "upload_time": "2023-04-17T22:49:59",
            "upload_time_iso_8601": "2023-04-17T22:49:59.969754Z",
            "url": "https://files.pythonhosted.org/packages/75/aa/0f8d45705692f2bdb8055dff567b743430190958e37ff7ef0d1aa85ce567/aicspylibczi-3.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0931b1cf8e4de489bcb31241d8d2cf89a8fad50ae1f0a1028e3ba6b774daba7e",
                "md5": "06d75741f4e4b27967d37aa05d10bdc2",
                "sha256": "cdf57b1ab4b9219e488f44917f28d4b3ff5b974daedd4dc65c989145b1a7fe8f"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "06d75741f4e4b27967d37aa05d10bdc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 568737,
            "upload_time": "2023-04-17T22:50:02",
            "upload_time_iso_8601": "2023-04-17T22:50:02.922440Z",
            "url": "https://files.pythonhosted.org/packages/09/31/b1cf8e4de489bcb31241d8d2cf89a8fad50ae1f0a1028e3ba6b774daba7e/aicspylibczi-3.1.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b145f3aedd78add7b265898a810d774e5984aa3d80afdccf17071dc2ae229201",
                "md5": "78b19a1cd39afb692d83d8eb02ecb69e",
                "sha256": "d0488df7f14c10c5723ba54bc7eafb1537cc3b98334f915b64738d62d49d8941"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "78b19a1cd39afb692d83d8eb02ecb69e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1555861,
            "upload_time": "2023-04-17T22:50:05",
            "upload_time_iso_8601": "2023-04-17T22:50:05.660522Z",
            "url": "https://files.pythonhosted.org/packages/b1/45/f3aedd78add7b265898a810d774e5984aa3d80afdccf17071dc2ae229201/aicspylibczi-3.1.2-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c3ae5b7527ac9b4de168f1ebdabb7105a530a9f1c724637dc78439bbb837607",
                "md5": "3e713f745682069980f69f76c000b08f",
                "sha256": "8784c24389d55bb158bd953e061c2c3166edafeccca752e3974bdd49cc9ed46a"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e713f745682069980f69f76c000b08f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 837932,
            "upload_time": "2023-04-17T22:50:07",
            "upload_time_iso_8601": "2023-04-17T22:50:07.764020Z",
            "url": "https://files.pythonhosted.org/packages/0c/3a/e5b7527ac9b4de168f1ebdabb7105a530a9f1c724637dc78439bbb837607/aicspylibczi-3.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2cbc64b1714e8362a87a98314c33a47fd1354725979b46b39077ab9e7c6870f",
                "md5": "a29a70b281c726435dde4e9aa2a0cbe2",
                "sha256": "172e451a8b7fd90393bb7d1fb0a15d916696a8e1736eefdb7866dfe21ebce422"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a29a70b281c726435dde4e9aa2a0cbe2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 739847,
            "upload_time": "2023-04-17T22:50:10",
            "upload_time_iso_8601": "2023-04-17T22:50:10.556462Z",
            "url": "https://files.pythonhosted.org/packages/b2/cb/c64b1714e8362a87a98314c33a47fd1354725979b46b39077ab9e7c6870f/aicspylibczi-3.1.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d52f4658358353e2e251e72d0e569ef0a420741715064b63fa92f19ff76924f",
                "md5": "44243b10fd3c91e7ff4663c0705edf79",
                "sha256": "9e1da7a2e5947de4e56d85ff92772aac639c5a5ffdb6fb72c0bb1859665efb0a"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44243b10fd3c91e7ff4663c0705edf79",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1003007,
            "upload_time": "2023-04-17T22:50:13",
            "upload_time_iso_8601": "2023-04-17T22:50:13.016373Z",
            "url": "https://files.pythonhosted.org/packages/6d/52/f4658358353e2e251e72d0e569ef0a420741715064b63fa92f19ff76924f/aicspylibczi-3.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef9df5574e7215bc0ffaae7a6538f076e22655d4ba319a2cbfb6bd22fa1e2540",
                "md5": "b0453a559f92c1d41680eafdf9f91d13",
                "sha256": "9cc7e43a2ba79a259afa17b4cf7854063fc6b54b403f7d6e5f494889a12472f1"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b0453a559f92c1d41680eafdf9f91d13",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 568924,
            "upload_time": "2023-04-17T22:50:16",
            "upload_time_iso_8601": "2023-04-17T22:50:16.461973Z",
            "url": "https://files.pythonhosted.org/packages/ef/9d/f5574e7215bc0ffaae7a6538f076e22655d4ba319a2cbfb6bd22fa1e2540/aicspylibczi-3.1.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b19a68187675716c9b383d9bef4b3e59f50deeaf227486e467eaa2bf2d1f5e1c",
                "md5": "0700ef8691be36ab1c3b33ee28712530",
                "sha256": "d903caaac5576922f8dd4b1170fae3421fb9d203128b4d8ecb11681173e7046c"
            },
            "downloads": -1,
            "filename": "aicspylibczi-3.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "0700ef8691be36ab1c3b33ee28712530",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 7738474,
            "upload_time": "2023-04-17T22:50:20",
            "upload_time_iso_8601": "2023-04-17T22:50:20.594344Z",
            "url": "https://files.pythonhosted.org/packages/b1/9a/68187675716c9b383d9bef4b3e59f50deeaf227486e467eaa2bf2d1f5e1c/aicspylibczi-3.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-17 22:50:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "AllenCellModeling",
    "github_project": "aicspylibczi",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "aicspylibczi"
}
        
Elapsed time: 0.05556s