ImageD11


NameImageD11 JSON
Version 2.0.4 PyPI version JSON
download
home_pagehttp://github.com/jonwright/ImageD11
SummaryImageD11
upload_time2024-03-13 17:32:16
maintainer
docs_urlhttps://pythonhosted.org/ImageD11/
authorJon Wright
requires_python
licenseGPL
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            

ImageD11 is a python code for identifying individual grains in spotty area detector X-ray diffraction images.

Version 2.0.2, Jon Wright, wright@esrf.fr

This is the source code for ImageD11. Probably you wanted a compiled version.

If your pip is up-to-date, you can try to install it like this:
```
 python -m pip install --upgrade pip setuptools
 python -m pip install ImageD11
```
If you want to use an existing numpy installation add a `--no-build-isolation` flag.

To get all the possible dependencies too, you can try:
 `python -m pip install ImageD11[full]`

Some (dated) documentation is here: https://imaged11.readthedocs.io/

If you are at ESRF on an old linux computer you can try "module load fable". 

To use from git, try this:

 - Download and install python 3.8+, perhaps from www.python.org but probably from conda.
 - Preload binary packages from conda (or your system package manager): 
    numpy, scipy, matplotlib, h5py, pillow, pycifrw, xfab, pyqt, pillow, silx[full] etc
 - `pip install git+https://github.com/FABLE-3DXRD/ImageD11.git`
 
If you want to work with the sources then you can try like this:
 ```
 $ python -m pip install --upgrade pip
 $ git clone https://github.com/FABLE-3DXRD/ImageD11.git && cd ImageD11
 $ python -m pip install --editable .
 ```

If you want multiple binaries in your home (on recent pythons) you can do and get the compiled code
for each platform in .so files that are labelled by platform. This is potentially useful for a
heterogenous cluster (like at ESRF): 
```
  # on ppc64le:
  python3 -m pip install dist/ImageD11-1.9.8-cp38-cp38-linux_ppc64le.whl --user --ignore-installed
  # on x86_64:
  python3 -m pip install dist/ImageD11-1.9.8-cp38-cp38-linux_x86_64.whl --user --ignore-installed
  # etc
  # ~/.local/lib/python3.8/site-packages/ImageD11 % ls *.so
  _cImageD11.cpython-38-powerpc64le-linux-gnu.so  _cImageD11.cpython-38-x86_64-linux-gnu.so
```

After it is installed, you should find a script ImageD11_gui.py, somewhere in your path.

Until 2017 this code was mostly developed on sourceforge at http://sourceforge.net/projects/fable/ 

It is now developed at http://github.com/FABLE-3DXRD/ImageD11 

Bug reports are always welcome!

Good luck!

## CI Status

[![Flake, Build and PyTest](https://github.com/FABLE-3DXRD/ImageD11/actions/workflows/build_flake_pytest_ubuntu2004.yml/badge.svg)](https://github.com/FABLE-3DXRD/ImageD11/actions/workflows/build_flake_pytest_ubuntu2004.yml)

<!--

Windows: [![Build status](https://ci.appveyor.com/api/projects/status/4pdlvsj2grtk0hel?svg=true)](https://ci.appveyor.com/project/jonwright/imaged11)

Linux: [![CircleCI](https://circleci.com/gh/jonwright/ImageD11.svg?style=svg)](https://circleci.com/gh/jonwright/ImageD11)

Macos + Linux [![Build Status](https://travis-ci.com/jonwright/ImageD11.svg?branch=master)](https://travis-ci.com/jonwright/ImageD11)

-->

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/jonwright/ImageD11",
    "name": "ImageD11",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/ImageD11/",
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Jon Wright",
    "author_email": "wright@esrf.fr",
    "download_url": "https://files.pythonhosted.org/packages/a6/51/741febd938b75f8f802df2e5c4c2a497a9ae939b57cd222ec43bc7594a92/ImageD11-2.0.4.tar.gz",
    "platform": null,
    "description": "\n\nImageD11 is a python code for identifying individual grains in spotty area detector X-ray diffraction images.\n\nVersion 2.0.2, Jon Wright, wright@esrf.fr\n\nThis is the source code for ImageD11. Probably you wanted a compiled version.\n\nIf your pip is up-to-date, you can try to install it like this:\n```\n python -m pip install --upgrade pip setuptools\n python -m pip install ImageD11\n```\nIf you want to use an existing numpy installation add a `--no-build-isolation` flag.\n\nTo get all the possible dependencies too, you can try:\n `python -m pip install ImageD11[full]`\n\nSome (dated) documentation is here: https://imaged11.readthedocs.io/\n\nIf you are at ESRF on an old linux computer you can try \"module load fable\". \n\nTo use from git, try this:\n\n - Download and install python 3.8+, perhaps from www.python.org but probably from conda.\n - Preload binary packages from conda (or your system package manager): \n    numpy, scipy, matplotlib, h5py, pillow, pycifrw, xfab, pyqt, pillow, silx[full] etc\n - `pip install git+https://github.com/FABLE-3DXRD/ImageD11.git`\n \nIf you want to work with the sources then you can try like this:\n ```\n $ python -m pip install --upgrade pip\n $ git clone https://github.com/FABLE-3DXRD/ImageD11.git && cd ImageD11\n $ python -m pip install --editable .\n ```\n\nIf you want multiple binaries in your home (on recent pythons) you can do and get the compiled code\nfor each platform in .so files that are labelled by platform. This is potentially useful for a\nheterogenous cluster (like at ESRF): \n```\n  # on ppc64le:\n  python3 -m pip install dist/ImageD11-1.9.8-cp38-cp38-linux_ppc64le.whl --user --ignore-installed\n  # on x86_64:\n  python3 -m pip install dist/ImageD11-1.9.8-cp38-cp38-linux_x86_64.whl --user --ignore-installed\n  # etc\n  # ~/.local/lib/python3.8/site-packages/ImageD11 % ls *.so\n  _cImageD11.cpython-38-powerpc64le-linux-gnu.so  _cImageD11.cpython-38-x86_64-linux-gnu.so\n```\n\nAfter it is installed, you should find a script ImageD11_gui.py, somewhere in your path.\n\nUntil 2017 this code was mostly developed on sourceforge at http://sourceforge.net/projects/fable/ \n\nIt is now developed at http://github.com/FABLE-3DXRD/ImageD11 \n\nBug reports are always welcome!\n\nGood luck!\n\n## CI Status\n\n[![Flake, Build and PyTest](https://github.com/FABLE-3DXRD/ImageD11/actions/workflows/build_flake_pytest_ubuntu2004.yml/badge.svg)](https://github.com/FABLE-3DXRD/ImageD11/actions/workflows/build_flake_pytest_ubuntu2004.yml)\n\n<!--\n\nWindows: [![Build status](https://ci.appveyor.com/api/projects/status/4pdlvsj2grtk0hel?svg=true)](https://ci.appveyor.com/project/jonwright/imaged11)\n\nLinux: [![CircleCI](https://circleci.com/gh/jonwright/ImageD11.svg?style=svg)](https://circleci.com/gh/jonwright/ImageD11)\n\nMacos + Linux [![Build Status](https://travis-ci.com/jonwright/ImageD11.svg?branch=master)](https://travis-ci.com/jonwright/ImageD11)\n\n-->\n",
    "bugtrack_url": null,
    "license": "GPL",
    "summary": "ImageD11",
    "version": "2.0.4",
    "project_urls": {
        "Homepage": "http://github.com/jonwright/ImageD11"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb341e124171ca80f47996a1f104660cc8047b8ef73dcf702f5bb1a73b9594b6",
                "md5": "ca821a2964c22447192d36f7a55d4552",
                "sha256": "6fde06c20669d81da0fe34d89ff7c40f9079cf15df7152b55060bb11e59987f1"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ca821a2964c22447192d36f7a55d4552",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 425542,
            "upload_time": "2024-03-13T17:31:15",
            "upload_time_iso_8601": "2024-03-13T17:31:15.472307Z",
            "url": "https://files.pythonhosted.org/packages/cb/34/1e124171ca80f47996a1f104660cc8047b8ef73dcf702f5bb1a73b9594b6/ImageD11-2.0.4-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b6728d2190cbd190c82bb643425690a2e21a48f3f1272a378692ca4be6e69bb",
                "md5": "b6e67a3a325c25de4cba77eeb790613e",
                "sha256": "2be7f1499cfe167661db811941d3e37b536438a7ab2d5ab78174f264280a9937"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b6e67a3a325c25de4cba77eeb790613e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 627353,
            "upload_time": "2024-03-13T17:31:16",
            "upload_time_iso_8601": "2024-03-13T17:31:16.995995Z",
            "url": "https://files.pythonhosted.org/packages/2b/67/28d2190cbd190c82bb643425690a2e21a48f3f1272a378692ca4be6e69bb/ImageD11-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7060700dd36084004797529b980781341eff24b88a81a773b7f645a028e54d15",
                "md5": "4bccb52ec588448dbca8357f74303bd5",
                "sha256": "18ada09a3c4526ffa58a011b588320699d7a584f1e6c40aba8e83f5ccb3b226d"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4bccb52ec588448dbca8357f74303bd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 662884,
            "upload_time": "2024-03-13T17:31:18",
            "upload_time_iso_8601": "2024-03-13T17:31:18.839470Z",
            "url": "https://files.pythonhosted.org/packages/70/60/700dd36084004797529b980781341eff24b88a81a773b7f645a028e54d15/ImageD11-2.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f23982a062bfd39ad9c63bdaf4064d2d04510954cef2f8ce42262f9a0dfc639",
                "md5": "59515f907b5326a6d38c01ccff029904",
                "sha256": "fe811a9c01bfc1c5ebe5f2ed165658f51e3e19dc9fca4118a936cd421ce8ba48"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59515f907b5326a6d38c01ccff029904",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 624146,
            "upload_time": "2024-03-13T17:31:20",
            "upload_time_iso_8601": "2024-03-13T17:31:20.157161Z",
            "url": "https://files.pythonhosted.org/packages/4f/23/982a062bfd39ad9c63bdaf4064d2d04510954cef2f8ce42262f9a0dfc639/ImageD11-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdad75b8a18efbc6b86bc380142f14fdd9c7eefb3652b7878de92dcd5f2376ce",
                "md5": "a2584a0e9d6ab60a06dd22a4b590768c",
                "sha256": "41c983dd182d9d399a47a3d56bf45774e9ac69a0bfa68cc5ce1deae8001a0d9f"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a2584a0e9d6ab60a06dd22a4b590768c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 367277,
            "upload_time": "2024-03-13T17:31:21",
            "upload_time_iso_8601": "2024-03-13T17:31:21.494425Z",
            "url": "https://files.pythonhosted.org/packages/cd/ad/75b8a18efbc6b86bc380142f14fdd9c7eefb3652b7878de92dcd5f2376ce/ImageD11-2.0.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a4a39fb2102c9765685675b29006ddbf59b0eac1a3861b4ce9952e4d8526df8",
                "md5": "4a4ebd03e6eca30a00a1c0f5dc82dc0c",
                "sha256": "a31ddd36070c681ebd3860c5113f03ebce489c97e9302d2de957dd1f429dc9a0"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4a4ebd03e6eca30a00a1c0f5dc82dc0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 425083,
            "upload_time": "2024-03-13T17:31:22",
            "upload_time_iso_8601": "2024-03-13T17:31:22.727363Z",
            "url": "https://files.pythonhosted.org/packages/2a/4a/39fb2102c9765685675b29006ddbf59b0eac1a3861b4ce9952e4d8526df8/ImageD11-2.0.4-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "542568882e34474b503b4d6070379b77f0949d77a31785a0ed249de0b540b952",
                "md5": "79604559be2b786ef3435d0ed69773be",
                "sha256": "5fdd2f78d74367791c03d8e0f29d0d6c74c916aa75316137f35a91fd244508d4"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "79604559be2b786ef3435d0ed69773be",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 627805,
            "upload_time": "2024-03-13T17:31:24",
            "upload_time_iso_8601": "2024-03-13T17:31:24.539733Z",
            "url": "https://files.pythonhosted.org/packages/54/25/68882e34474b503b4d6070379b77f0949d77a31785a0ed249de0b540b952/ImageD11-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "365142f54990184f98e923a35b0d78ccaa19135378716362bcdad22fa8b1b63f",
                "md5": "579230cea70c585b28d2508acfbafced",
                "sha256": "f86d009d5d91dd03d760a47e856600d185f1f6ce64808f9fddeb7397d765161a"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "579230cea70c585b28d2508acfbafced",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 663523,
            "upload_time": "2024-03-13T17:31:26",
            "upload_time_iso_8601": "2024-03-13T17:31:26.539608Z",
            "url": "https://files.pythonhosted.org/packages/36/51/42f54990184f98e923a35b0d78ccaa19135378716362bcdad22fa8b1b63f/ImageD11-2.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bd7061ebce1672c11f9e61d8fc4e3adb88889df6a919d6944f0b900484f3e7f",
                "md5": "2d632618bf9696fc43bbb001cef5dd6d",
                "sha256": "5321fddc47d0ca3d11dafa11c314c7a83f813046054bff3df3b81b44cce7a4fe"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d632618bf9696fc43bbb001cef5dd6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 624963,
            "upload_time": "2024-03-13T17:31:28",
            "upload_time_iso_8601": "2024-03-13T17:31:28.170435Z",
            "url": "https://files.pythonhosted.org/packages/1b/d7/061ebce1672c11f9e61d8fc4e3adb88889df6a919d6944f0b900484f3e7f/ImageD11-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1f8a23f5756ec86ffb3270ff84796deaa9be24116e792f1bee3f1c1d90edd85",
                "md5": "62bd9c179866884fba91a9ff4148ac52",
                "sha256": "e3c7877b5cf14e6dd5785de9165b48ba10037c48f02073ee4629a45ad711e5e2"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "62bd9c179866884fba91a9ff4148ac52",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 367278,
            "upload_time": "2024-03-13T17:31:29",
            "upload_time_iso_8601": "2024-03-13T17:31:29.879356Z",
            "url": "https://files.pythonhosted.org/packages/f1/f8/a23f5756ec86ffb3270ff84796deaa9be24116e792f1bee3f1c1d90edd85/ImageD11-2.0.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a672d429f41b46e35626f51033a5e05fc1b4e9c49bdf39233dc4232a5d49b3a",
                "md5": "f4b21caa7328a6eaaaa9fe27d46faa49",
                "sha256": "f763f00622c5fd35d1b4f93fd5988bc4b851285b287d8d3c3de84a6dd3edbf87"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f4b21caa7328a6eaaaa9fe27d46faa49",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 427922,
            "upload_time": "2024-03-13T17:31:31",
            "upload_time_iso_8601": "2024-03-13T17:31:31.720513Z",
            "url": "https://files.pythonhosted.org/packages/9a/67/2d429f41b46e35626f51033a5e05fc1b4e9c49bdf39233dc4232a5d49b3a/ImageD11-2.0.4-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "662f6d895410f5667d0b35ebb3c5097a62d255e82d33acc67e601d139338e7cc",
                "md5": "e2a31eb7817adceaaa62b756d99cef4a",
                "sha256": "19166a1f8dd79b3894850975aaaa0e27f1f4efc6e70411c9e0cec5c5d9860d80"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e2a31eb7817adceaaa62b756d99cef4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 626663,
            "upload_time": "2024-03-13T17:31:33",
            "upload_time_iso_8601": "2024-03-13T17:31:33.100010Z",
            "url": "https://files.pythonhosted.org/packages/66/2f/6d895410f5667d0b35ebb3c5097a62d255e82d33acc67e601d139338e7cc/ImageD11-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1af35ef8182ada443d40e328ab46821f0698fa81a31a3d0fb0f1adf64a4f6b74",
                "md5": "84f7c4da03c55b130a5c1ca0bdc846c1",
                "sha256": "b71863c881caa1c3943dd7603d6a4c5b2389a5502f9a2b7d6a250a04d21a0dcd"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84f7c4da03c55b130a5c1ca0bdc846c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 629127,
            "upload_time": "2024-03-13T17:31:34",
            "upload_time_iso_8601": "2024-03-13T17:31:34.608105Z",
            "url": "https://files.pythonhosted.org/packages/1a/f3/5ef8182ada443d40e328ab46821f0698fa81a31a3d0fb0f1adf64a4f6b74/ImageD11-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f639ea8f26bc64a625c60337d4d0bb993c105789172f171103642ab736e368f",
                "md5": "58526daf581abb4a78b9bd1e23be06de",
                "sha256": "a05e5a8dd1b4825d8dba2d694e23e389e7c1be7793fafc3ca23a3f30e56dfb07"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "58526daf581abb4a78b9bd1e23be06de",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 367070,
            "upload_time": "2024-03-13T17:31:35",
            "upload_time_iso_8601": "2024-03-13T17:31:35.959270Z",
            "url": "https://files.pythonhosted.org/packages/3f/63/9ea8f26bc64a625c60337d4d0bb993c105789172f171103642ab736e368f/ImageD11-2.0.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffe2f1407b0c78ec8aef4d883266cb5e0e144cde822270ffffe0d3eea69a21ce",
                "md5": "1305b1a358b071c07b9fa1344189fffa",
                "sha256": "6d53dd2807820cff4ff7b7fd31b32d0d5e86b7f7a444e4f6aa47cb6737879196"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1305b1a358b071c07b9fa1344189fffa",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 624446,
            "upload_time": "2024-03-13T17:31:37",
            "upload_time_iso_8601": "2024-03-13T17:31:37.171632Z",
            "url": "https://files.pythonhosted.org/packages/ff/e2/f1407b0c78ec8aef4d883266cb5e0e144cde822270ffffe0d3eea69a21ce/ImageD11-2.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caf25a921f28fe7047cd672065c3f395a5dc55cfda26365055bfaf2a45d24d9c",
                "md5": "acee38a293e126c61520110e6ffc5c3a",
                "sha256": "3f8bebc0c5d8cda96902139085dffe8e31970afb0fc74fcd4a9ebdd48ccba373"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "acee38a293e126c61520110e6ffc5c3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 624535,
            "upload_time": "2024-03-13T17:31:39",
            "upload_time_iso_8601": "2024-03-13T17:31:39.041918Z",
            "url": "https://files.pythonhosted.org/packages/ca/f2/5a921f28fe7047cd672065c3f395a5dc55cfda26365055bfaf2a45d24d9c/ImageD11-2.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a85a6d1b5a9213db9bfc21acea7e3dc72099c6b3efc27df4c0df5b5853820de1",
                "md5": "1331024140d0c2876b55aa63714a5643",
                "sha256": "908feddd0e01d08b9eeb0b8cb50429d4887a08467abf137a0cb656fad42f0431"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1331024140d0c2876b55aa63714a5643",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 589031,
            "upload_time": "2024-03-13T17:31:48",
            "upload_time_iso_8601": "2024-03-13T17:31:48.653995Z",
            "url": "https://files.pythonhosted.org/packages/a8/5a/6d1b5a9213db9bfc21acea7e3dc72099c6b3efc27df4c0df5b5853820de1/ImageD11-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d45b1c802f3484e38161c46b39077784eb56d69cd06091d3cdfe45f7943bff0f",
                "md5": "28c0b1d8b93599bc12948371bc721d6c",
                "sha256": "83383bb89be344e302ba0dacb8756978795452a666e8bf7fabd786633f0e442f"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "28c0b1d8b93599bc12948371bc721d6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 364631,
            "upload_time": "2024-03-13T17:31:50",
            "upload_time_iso_8601": "2024-03-13T17:31:50.028339Z",
            "url": "https://files.pythonhosted.org/packages/d4/5b/1c802f3484e38161c46b39077784eb56d69cd06091d3cdfe45f7943bff0f/ImageD11-2.0.4-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14281a023bbf5371d2326d2f098ba488fb1423e467924d8c9dc7ca7e67f7950a",
                "md5": "e6902008fbb792473c830fb75ff037fe",
                "sha256": "cdf1875617d3d0a13de187c38d8ed76709cd55c42d9f28703d056bdd27c55cbb"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e6902008fbb792473c830fb75ff037fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 420915,
            "upload_time": "2024-03-13T17:31:51",
            "upload_time_iso_8601": "2024-03-13T17:31:51.270549Z",
            "url": "https://files.pythonhosted.org/packages/14/28/1a023bbf5371d2326d2f098ba488fb1423e467924d8c9dc7ca7e67f7950a/ImageD11-2.0.4-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0440c9c434dfbacd105b7542ab3b50e1fcb764a45ea38ee006358625d8a11c77",
                "md5": "8d53dbc2fcdf819db0f112dc29333b69",
                "sha256": "2fad38367dc9ff0de5985456e33a2ce123e78cec5f8f2fea10cff590932d4794"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8d53dbc2fcdf819db0f112dc29333b69",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 632576,
            "upload_time": "2024-03-13T17:31:53",
            "upload_time_iso_8601": "2024-03-13T17:31:53.141751Z",
            "url": "https://files.pythonhosted.org/packages/04/40/c9c434dfbacd105b7542ab3b50e1fcb764a45ea38ee006358625d8a11c77/ImageD11-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe2758994a664d163ca489b008e08f1584f6b8581c65a32381d5a3eeb47cfd21",
                "md5": "6f10a17d4f249b05ce2dbd17e6421608",
                "sha256": "7c15458b3f2d139874cb0020d3b3fe1ff27b3c7bbc9ff7aa4ba3d6e14b9e32aa"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6f10a17d4f249b05ce2dbd17e6421608",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 632338,
            "upload_time": "2024-03-13T17:31:54",
            "upload_time_iso_8601": "2024-03-13T17:31:54.620130Z",
            "url": "https://files.pythonhosted.org/packages/fe/27/58994a664d163ca489b008e08f1584f6b8581c65a32381d5a3eeb47cfd21/ImageD11-2.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1733d2da91cca834909418d084df4cf2c4f5ead6b21e4833ebc9939ff12ee509",
                "md5": "6d7d3778ad73ec19fc8239e8630df134",
                "sha256": "6d0b2a0e079fdea1b27015366afe2b2abc496193387fd9987c6cc087d3fa37f8"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d7d3778ad73ec19fc8239e8630df134",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 599716,
            "upload_time": "2024-03-13T17:31:56",
            "upload_time_iso_8601": "2024-03-13T17:31:56.755845Z",
            "url": "https://files.pythonhosted.org/packages/17/33/d2da91cca834909418d084df4cf2c4f5ead6b21e4833ebc9939ff12ee509/ImageD11-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0af9310fa845eb3c95e3ac80b30b09b829f7e1eec6f7df5c1b1371cca98b925",
                "md5": "4420f5a90e1f9ef722308e20e77b1de0",
                "sha256": "6f6079258761ae929c6a3ec115c069237a139a4bfc09a95a76d9c1e297802f71"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4420f5a90e1f9ef722308e20e77b1de0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 365413,
            "upload_time": "2024-03-13T17:32:06",
            "upload_time_iso_8601": "2024-03-13T17:32:06.039443Z",
            "url": "https://files.pythonhosted.org/packages/f0/af/9310fa845eb3c95e3ac80b30b09b829f7e1eec6f7df5c1b1371cca98b925/ImageD11-2.0.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c953bb75cdb2ecdd9cf485baa271a6680d6fbf419685e334af389a65e3ba8ce",
                "md5": "d767f51e5ca5fb7760750a89fceba152",
                "sha256": "a8f085e02002bb5e0453b67ceccf05b42d50293c7e5f0319ff7cf15ee8a36395"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d767f51e5ca5fb7760750a89fceba152",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 424506,
            "upload_time": "2024-03-13T17:32:07",
            "upload_time_iso_8601": "2024-03-13T17:32:07.865257Z",
            "url": "https://files.pythonhosted.org/packages/2c/95/3bb75cdb2ecdd9cf485baa271a6680d6fbf419685e334af389a65e3ba8ce/ImageD11-2.0.4-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f25fbfb0718f92ffeb65353b9fdc50b0feb8117b65c8900f16461ca9d49efac",
                "md5": "c7081d6f25c9534c215cf20a8d48228a",
                "sha256": "9aaef5a36abc5ab96f6979f9d2bdb8efdcb0aa9390851cced910c8b172181ca2"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c7081d6f25c9534c215cf20a8d48228a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 628901,
            "upload_time": "2024-03-13T17:32:09",
            "upload_time_iso_8601": "2024-03-13T17:32:09.750020Z",
            "url": "https://files.pythonhosted.org/packages/3f/25/fbfb0718f92ffeb65353b9fdc50b0feb8117b65c8900f16461ca9d49efac/ImageD11-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e586f06a676d89d482767b1aed7d3b20509c578de82bc4ebb98a6c9d4338c20b",
                "md5": "5c43b1c3e23dcfa86c70901cdb0ad1fa",
                "sha256": "2f3e9fd2b7da4e5dcf1e6461166592ef5768da120f1dfa477be1e8cce269bf58"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5c43b1c3e23dcfa86c70901cdb0ad1fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 663780,
            "upload_time": "2024-03-13T17:32:11",
            "upload_time_iso_8601": "2024-03-13T17:32:11.156106Z",
            "url": "https://files.pythonhosted.org/packages/e5/86/f06a676d89d482767b1aed7d3b20509c578de82bc4ebb98a6c9d4338c20b/ImageD11-2.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66f0ce091e7f25265cf0f262f5ef4af571330e2514817b8930e36151cfd2506d",
                "md5": "8c1b90a448f16fdddd1a76a47e1d78a0",
                "sha256": "689b688548397e3373595c7cd348c81efcb7cc449438ce8be1006a0af9b947c5"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c1b90a448f16fdddd1a76a47e1d78a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 624115,
            "upload_time": "2024-03-13T17:32:13",
            "upload_time_iso_8601": "2024-03-13T17:32:13.570061Z",
            "url": "https://files.pythonhosted.org/packages/66/f0/ce091e7f25265cf0f262f5ef4af571330e2514817b8930e36151cfd2506d/ImageD11-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3931184f3e199f11a53c8a4bd35b3a40131fd8c11707c26b9dfc87ba330dbe83",
                "md5": "cfcfb4a5c36115b259bded9882d06555",
                "sha256": "7b3087d87e8bd3d9dfe018aac09b72ba6679bd728b072596b35aa07fb147054d"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cfcfb4a5c36115b259bded9882d06555",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 367103,
            "upload_time": "2024-03-13T17:32:15",
            "upload_time_iso_8601": "2024-03-13T17:32:15.220169Z",
            "url": "https://files.pythonhosted.org/packages/39/31/184f3e199f11a53c8a4bd35b3a40131fd8c11707c26b9dfc87ba330dbe83/ImageD11-2.0.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a651741febd938b75f8f802df2e5c4c2a497a9ae939b57cd222ec43bc7594a92",
                "md5": "74a00d9eb936065c3e72c98e6f8c3721",
                "sha256": "52ee2d04d549088047788846ae01ebde5e6759613bf05b5284436a4c5b333f76"
            },
            "downloads": -1,
            "filename": "ImageD11-2.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "74a00d9eb936065c3e72c98e6f8c3721",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6840074,
            "upload_time": "2024-03-13T17:32:16",
            "upload_time_iso_8601": "2024-03-13T17:32:16.807554Z",
            "url": "https://files.pythonhosted.org/packages/a6/51/741febd938b75f8f802df2e5c4c2a497a9ae939b57cd222ec43bc7594a92/ImageD11-2.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-13 17:32:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jonwright",
    "github_project": "ImageD11",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "appveyor": true,
    "lcname": "imaged11"
}
        
Elapsed time: 0.38438s