diplib


Namediplib JSON
Version 3.4.3 PyPI version JSON
download
home_pagehttps://github.com/DIPlib/diplib
SummaryPython bindings for DIPlib, the quantitative image analysis library
upload_time2024-03-21 15:15:19
maintainerNone
docs_urlNone
authorCris Luengo and others
requires_python>=3.8
licenseApache
keywords image-analysis image-viewer image-processing filtering
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Python bindings to DIPlib 3 (a.k.a. PyDIP)

## Introduction

The purpose of the *DIPlib* project is to provide a one-stop library and
development environment for quantitative image analysis, be it applied
to microscopy, radiology, astronomy, or anything in between.

As opposed to all other image processing/analysis libraries and packages out
there, *DIPlib* focuses on quantification. The first priority is precision,
all other principles have a lower priority. Our principles are:

1. **Precision:**

   We implement the most precise known methods, and output often defaults to
   floating-point samples. The purpose of these algorithms is quantification,
   not approximation.

2. **Ease of use**

   Although our Python bindings are not much more than a thin wrapper of the
   C++ library functionality, the image analysis functionality is always easy
   to use. For example, the user does not, in general, need to be aware of
   the data type of the image to use these algorithms effectively.

3. **Efficiency**

   We implement the most efficient known algorithms, as long as they don't
   compromise precision. Ease-of-use features might also incur a slight overhead
   in execution times. The library can be used in high-throughput quantitative analysis
   pipelines, but is not designed for real-time video processing.

Besides an extensive collection of image processing and analysis algorithms,
this package contains *DIPviewer*, an interactive multi-dimensional image viewer,
and *DIPjavaio*, an interface to the
[*OME Bio-Formats*](https://www.openmicroscopy.org/bio-formats/) library.
The package is compatible with *NumPy* and any image processing package that uses
a *NumPy*-compatible way of representing images.

See [the *DIPlib* website](https://diplib.org/) for more information.

**Note!** We consider the Python bindings (*PyDIP*) to be in development. We aim at
not making breaking changes, but will sometimes do so when we feel it significantly
improves the usability of the module. These changes will always be highlighted in
the change logs and the release notification on the *DIPlib* website.
We recommend that you pin your project to use a specific version of the package
on PyPI, and carefully read the change logs before upgrading.

## Installation

To install, simply type

    pip install diplib

Windows users might need to install the
[Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017 and 2019](https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads).

To read images through the *Bio-Formats* library, you will need to download it
separately:

    python -m diplib download_bioformats

**Note:** The `diplib` package on PyPI vendors the *OpenMP* library for some platforms
(`libomp.dylib` on macOS, `libgomp.so` on Linux). It is possible, though rare, for another package to vendor
an incompatible *OpenMP* library, and for the combined use to cause Python to crash.
See for example [this issue](https://github.com/DIPlib/diplib/issues/130). If you happen to run into this problem,
please [let us know!](https://github.com/DIPlib/diplib/issues/new/choose).
You can find more information about the simultaneous use of multiple *OpenMP* libraries
[on this page](https://github.com/joblib/threadpoolctl/blob/master/multiple_openmp.md).

## Usage

The interface only has automatically generated docstrings that show the names
of each of the parameters. Use the *DIPlib* reference to learn how to use each
function. Get started by reading [the User Manual](https://diplib.org/diplib-docs/pydip_user_manual.html).

These Jupyter notebooks give a short introduction:

- [01_pydip_basics.ipynb](https://github.com/DIPlib/diplib/blob/master/examples/python/01_pydip_basics.ipynb)
- [02_filtering.ipynb](https://github.com/DIPlib/diplib/blob/master/examples/python/02_filtering.ipynb)
- [03_numpy_interaction.ipynb](https://github.com/DIPlib/diplib/blob/master/examples/python/03_numpy_interaction.ipynb)
- [04_tensor_images.ipynb](https://github.com/DIPlib/diplib/blob/master/examples/python/04_tensor_images.ipynb)

## License

Copyright 2014-2024 Cris Luengo and contributors  
Copyright 1995-2014 Delft University of Technology

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this library except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0  
   (or see the [`LICENSE.txt`](LICENSE.txt) file in this distribution)

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/DIPlib/diplib",
    "name": "diplib",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "image-analysis image-viewer image-processing filtering",
    "author": "Cris Luengo and others",
    "author_email": "luengo@ieee.org",
    "download_url": null,
    "platform": null,
    "description": "# Python bindings to DIPlib 3 (a.k.a. PyDIP)\n\n## Introduction\n\nThe purpose of the *DIPlib* project is to provide a one-stop library and\ndevelopment environment for quantitative image analysis, be it applied\nto microscopy, radiology, astronomy, or anything in between.\n\nAs opposed to all other image processing/analysis libraries and packages out\nthere, *DIPlib* focuses on quantification. The first priority is precision,\nall other principles have a lower priority. Our principles are:\n\n1. **Precision:**\n\n   We implement the most precise known methods, and output often defaults to\n   floating-point samples. The purpose of these algorithms is quantification,\n   not approximation.\n\n2. **Ease of use**\n\n   Although our Python bindings are not much more than a thin wrapper of the\n   C++ library functionality, the image analysis functionality is always easy\n   to use. For example, the user does not, in general, need to be aware of\n   the data type of the image to use these algorithms effectively.\n\n3. **Efficiency**\n\n   We implement the most efficient known algorithms, as long as they don't\n   compromise precision. Ease-of-use features might also incur a slight overhead\n   in execution times. The library can be used in high-throughput quantitative analysis\n   pipelines, but is not designed for real-time video processing.\n\nBesides an extensive collection of image processing and analysis algorithms,\nthis package contains *DIPviewer*, an interactive multi-dimensional image viewer,\nand *DIPjavaio*, an interface to the\n[*OME Bio-Formats*](https://www.openmicroscopy.org/bio-formats/) library.\nThe package is compatible with *NumPy* and any image processing package that uses\na *NumPy*-compatible way of representing images.\n\nSee [the *DIPlib* website](https://diplib.org/) for more information.\n\n**Note!** We consider the Python bindings (*PyDIP*) to be in development. We aim at\nnot making breaking changes, but will sometimes do so when we feel it significantly\nimproves the usability of the module. These changes will always be highlighted in\nthe change logs and the release notification on the *DIPlib* website.\nWe recommend that you pin your project to use a specific version of the package\non PyPI, and carefully read the change logs before upgrading.\n\n## Installation\n\nTo install, simply type\n\n    pip install diplib\n\nWindows users might need to install the\n[Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017 and 2019](https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads).\n\nTo read images through the *Bio-Formats* library, you will need to download it\nseparately:\n\n    python -m diplib download_bioformats\n\n**Note:** The `diplib` package on PyPI vendors the *OpenMP* library for some platforms\n(`libomp.dylib` on macOS, `libgomp.so` on Linux). It is possible, though rare, for another package to vendor\nan incompatible *OpenMP* library, and for the combined use to cause Python to crash.\nSee for example [this issue](https://github.com/DIPlib/diplib/issues/130). If you happen to run into this problem,\nplease [let us know!](https://github.com/DIPlib/diplib/issues/new/choose).\nYou can find more information about the simultaneous use of multiple *OpenMP* libraries\n[on this page](https://github.com/joblib/threadpoolctl/blob/master/multiple_openmp.md).\n\n## Usage\n\nThe interface only has automatically generated docstrings that show the names\nof each of the parameters. Use the *DIPlib* reference to learn how to use each\nfunction. Get started by reading [the User Manual](https://diplib.org/diplib-docs/pydip_user_manual.html).\n\nThese Jupyter notebooks give a short introduction:\n\n- [01_pydip_basics.ipynb](https://github.com/DIPlib/diplib/blob/master/examples/python/01_pydip_basics.ipynb)\n- [02_filtering.ipynb](https://github.com/DIPlib/diplib/blob/master/examples/python/02_filtering.ipynb)\n- [03_numpy_interaction.ipynb](https://github.com/DIPlib/diplib/blob/master/examples/python/03_numpy_interaction.ipynb)\n- [04_tensor_images.ipynb](https://github.com/DIPlib/diplib/blob/master/examples/python/04_tensor_images.ipynb)\n\n## License\n\nCopyright 2014-2024 Cris Luengo and contributors  \nCopyright 1995-2014 Delft University of Technology\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this library except in compliance with the License.\nYou may obtain a copy of the License at\n\n   http://www.apache.org/licenses/LICENSE-2.0  \n   (or see the [`LICENSE.txt`](LICENSE.txt) file in this distribution)\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n",
    "bugtrack_url": null,
    "license": "Apache",
    "summary": "Python bindings for DIPlib, the quantitative image analysis library",
    "version": "3.4.3",
    "project_urls": {
        "Homepage": "https://github.com/DIPlib/diplib"
    },
    "split_keywords": [
        "image-analysis",
        "image-viewer",
        "image-processing",
        "filtering"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1004385f2ffc7bf77a89fe47f66fba9cda6fe09626e375c3b31a9555b04e8e6",
                "md5": "9bb83468113c0018cc64e5c076b1b346",
                "sha256": "283c330ab5a2a8b720455711e3dd2679aad865bb22137ea77bd2435a3a2d3fbf"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9bb83468113c0018cc64e5c076b1b346",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 7552150,
            "upload_time": "2024-03-21T15:15:19",
            "upload_time_iso_8601": "2024-03-21T15:15:19.735918Z",
            "url": "https://files.pythonhosted.org/packages/c1/00/4385f2ffc7bf77a89fe47f66fba9cda6fe09626e375c3b31a9555b04e8e6/diplib-3.4.3-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c87794e870df0a0005511f2b6ac360747321dc9e12cc6da0a5f05e255107ca6",
                "md5": "a8ab6c341727b9722c1e42e5d4bebf52",
                "sha256": "02a004ee07f654b68a25a382d89569bd46fbebbef40684d6ec780a9a7219d090"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a8ab6c341727b9722c1e42e5d4bebf52",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5754405,
            "upload_time": "2024-03-21T15:28:37",
            "upload_time_iso_8601": "2024-03-21T15:28:37.839616Z",
            "url": "https://files.pythonhosted.org/packages/0c/87/794e870df0a0005511f2b6ac360747321dc9e12cc6da0a5f05e255107ca6/diplib-3.4.3-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4edcf79ca0476e38b76d54b8ceb9312b90a811f788431af06096aa3b79d663b4",
                "md5": "a77359197e0e861faec4f26d38e1ea34",
                "sha256": "3ef483ed7365a09ba347577c1068a2b7defd00988814b38181fd056ba71dcc57"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a77359197e0e861faec4f26d38e1ea34",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 7999922,
            "upload_time": "2024-03-21T15:14:54",
            "upload_time_iso_8601": "2024-03-21T15:14:54.023513Z",
            "url": "https://files.pythonhosted.org/packages/4e/dc/f79ca0476e38b76d54b8ceb9312b90a811f788431af06096aa3b79d663b4/diplib-3.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "330f5c7594bb59d8b4a25ca5d5be96df101a892322ee7ff96825ca477f6d3a55",
                "md5": "0a61890091119234db546c403ed7e7ea",
                "sha256": "3f6d162a30e14d92a3b86ec25728926e996520171d3c69395362ec30fe0bfbbc"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0a61890091119234db546c403ed7e7ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5113627,
            "upload_time": "2024-03-21T15:17:21",
            "upload_time_iso_8601": "2024-03-21T15:17:21.362778Z",
            "url": "https://files.pythonhosted.org/packages/33/0f/5c7594bb59d8b4a25ca5d5be96df101a892322ee7ff96825ca477f6d3a55/diplib-3.4.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a23e976eb1a994db07c8e39389f50d20dab0038c5dddab29b4bc8b79bea37ce",
                "md5": "6649312ceccabc32117cdba16a39506e",
                "sha256": "9718e1770eda3a94d6d95090a8aebb41922925cbf67feb35c4a37146ef088d0b"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp311-cp311-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6649312ceccabc32117cdba16a39506e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 7552116,
            "upload_time": "2024-03-21T15:15:21",
            "upload_time_iso_8601": "2024-03-21T15:15:21.465745Z",
            "url": "https://files.pythonhosted.org/packages/4a/23/e976eb1a994db07c8e39389f50d20dab0038c5dddab29b4bc8b79bea37ce/diplib-3.4.3-cp311-cp311-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3860a67c3261fd8e950d2614a4f8875ca826bfed3c41f2685c9bc943dc0ec1e5",
                "md5": "b6d014c39267f68c084f2f743922b62d",
                "sha256": "73d48b27e931c92d61678fd49e3ad69f4ce9daa9abb98e3f468e76a7944042de"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b6d014c39267f68c084f2f743922b62d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5754340,
            "upload_time": "2024-03-21T15:28:43",
            "upload_time_iso_8601": "2024-03-21T15:28:43.338603Z",
            "url": "https://files.pythonhosted.org/packages/38/60/a67c3261fd8e950d2614a4f8875ca826bfed3c41f2685c9bc943dc0ec1e5/diplib-3.4.3-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2dab1123c15f48082089e4b1e552d8774c0f3819483eca869399d73e6dd9bbb",
                "md5": "8f08688a6dbb08e6667cc7a51d109188",
                "sha256": "1eaee0afe56793407d749515c23a7d6608add230db1c08f8dbc385c27a356852"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f08688a6dbb08e6667cc7a51d109188",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 7999023,
            "upload_time": "2024-03-21T15:14:56",
            "upload_time_iso_8601": "2024-03-21T15:14:56.932350Z",
            "url": "https://files.pythonhosted.org/packages/c2/da/b1123c15f48082089e4b1e552d8774c0f3819483eca869399d73e6dd9bbb/diplib-3.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e66ce0591b55e9972ce3ac04a0883127ebb5b99b35c05a9759b4333b03cd58e7",
                "md5": "96c14d04be7ef469177ec50fc8a3166d",
                "sha256": "f1cf628ffb3a24a56bc4b61b194ec2a0a02e5eb7df49810f1a363e3f50f303a8"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "96c14d04be7ef469177ec50fc8a3166d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5113026,
            "upload_time": "2024-03-21T15:17:23",
            "upload_time_iso_8601": "2024-03-21T15:17:23.316509Z",
            "url": "https://files.pythonhosted.org/packages/e6/6c/e0591b55e9972ce3ac04a0883127ebb5b99b35c05a9759b4333b03cd58e7/diplib-3.4.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcb7fa99bc13633cef9ca3d9006d7a5c4a63a382446f4d0698e9a0fed7669c4c",
                "md5": "92e76fc7ab1b70c40382fa5d296e793b",
                "sha256": "a0a2d57470a355cb9bd58abef9ccaabdcfbcb9da6663c2be994d933814cc4d94"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp312-cp312-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "92e76fc7ab1b70c40382fa5d296e793b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 7588323,
            "upload_time": "2024-03-21T15:15:23",
            "upload_time_iso_8601": "2024-03-21T15:15:23.178996Z",
            "url": "https://files.pythonhosted.org/packages/bc/b7/fa99bc13633cef9ca3d9006d7a5c4a63a382446f4d0698e9a0fed7669c4c/diplib-3.4.3-cp312-cp312-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ad146f1cbaede9d8ca403966ad0bb8a09e5d1241cf51cf389e88e41ce15cd08",
                "md5": "3759a017ff30f56d5a254258882a4fd1",
                "sha256": "64ef07d86f5d0771af1bd81b2ab1cd321baf16acc725f72a9eb62bd94ac65b05"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3759a017ff30f56d5a254258882a4fd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5773649,
            "upload_time": "2024-03-21T15:28:47",
            "upload_time_iso_8601": "2024-03-21T15:28:47.518771Z",
            "url": "https://files.pythonhosted.org/packages/3a/d1/46f1cbaede9d8ca403966ad0bb8a09e5d1241cf51cf389e88e41ce15cd08/diplib-3.4.3-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0cc571e75ce96b83236f6e63ab21f10ef5f10ae6a51e6ce4348c0eeb96d2bad4",
                "md5": "7d91e3d37033661b2b56ca3c311182e0",
                "sha256": "8dcfcef92d03705dd50ec927fd03dcbda4875e1e385f07fa300fe76ff3eb285d"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d91e3d37033661b2b56ca3c311182e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 8004932,
            "upload_time": "2024-03-21T15:14:58",
            "upload_time_iso_8601": "2024-03-21T15:14:58.726875Z",
            "url": "https://files.pythonhosted.org/packages/0c/c5/71e75ce96b83236f6e63ab21f10ef5f10ae6a51e6ce4348c0eeb96d2bad4/diplib-3.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "065aaac1baba48bb4e9f8eaadccdff1a466bf70a82f1965b7351c80f04d57f92",
                "md5": "7bbd107a20d0069fe4a4d1b316ef7d20",
                "sha256": "1027af746a9707752005dc766c6ed64d3dd1bc9c49b3c26af6383b67cc2f156c"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7bbd107a20d0069fe4a4d1b316ef7d20",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5118270,
            "upload_time": "2024-03-21T15:17:24",
            "upload_time_iso_8601": "2024-03-21T15:17:24.746219Z",
            "url": "https://files.pythonhosted.org/packages/06/5a/aac1baba48bb4e9f8eaadccdff1a466bf70a82f1965b7351c80f04d57f92/diplib-3.4.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b646520f8c8045f2aef084e34a2a5d08dae47702f29c00bb45c11ef2ace126f",
                "md5": "990ebd56ce2de518e83c3f754bae5240",
                "sha256": "82b701a1d9a948a0d8cccfbd80405322e02e0b5e1c21062b51a4bd675206287c"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp38-cp38-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "990ebd56ce2de518e83c3f754bae5240",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 7552341,
            "upload_time": "2024-03-21T15:15:24",
            "upload_time_iso_8601": "2024-03-21T15:15:24.876290Z",
            "url": "https://files.pythonhosted.org/packages/3b/64/6520f8c8045f2aef084e34a2a5d08dae47702f29c00bb45c11ef2ace126f/diplib-3.4.3-cp38-cp38-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "408c5137a00f5614c211539d8df3f2333a7c41795a3d182014206145a12d1502",
                "md5": "d4281514ae63f346564f83a41480e42b",
                "sha256": "38510de597f06132e53ec567a918c8f2fd7207bee7d63bbdb0300a09afe9d394"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp38-cp38-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d4281514ae63f346564f83a41480e42b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5754292,
            "upload_time": "2024-03-21T15:28:51",
            "upload_time_iso_8601": "2024-03-21T15:28:51.779691Z",
            "url": "https://files.pythonhosted.org/packages/40/8c/5137a00f5614c211539d8df3f2333a7c41795a3d182014206145a12d1502/diplib-3.4.3-cp38-cp38-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdeca62606fef299f4578df968332124e33f0a1c2954629e1542ea773632fbea",
                "md5": "f763adf4715c71855e4209acdb47b16b",
                "sha256": "5698a5a008e2189c273a4414d255394177c7180a0c3bf26e10f8bd6504b2218a"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f763adf4715c71855e4209acdb47b16b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 7998770,
            "upload_time": "2024-03-21T15:15:02",
            "upload_time_iso_8601": "2024-03-21T15:15:02.016145Z",
            "url": "https://files.pythonhosted.org/packages/fd/ec/a62606fef299f4578df968332124e33f0a1c2954629e1542ea773632fbea/diplib-3.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f155cfe13fbad3289e69310c92e053049e9891486fcce01c8480a77d43f17f9f",
                "md5": "2ceb5efdc2ac333f0f41d56154b0959d",
                "sha256": "3dbef073066c2d3571573222aab8082f8825612afbf6b1e6c94f893e05052e56"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2ceb5efdc2ac333f0f41d56154b0959d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5113346,
            "upload_time": "2024-03-21T15:17:26",
            "upload_time_iso_8601": "2024-03-21T15:17:26.260282Z",
            "url": "https://files.pythonhosted.org/packages/f1/55/cfe13fbad3289e69310c92e053049e9891486fcce01c8480a77d43f17f9f/diplib-3.4.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c891f0da78d301b6a0a7eaa561522bfd7dd63b7a40457d17ff593a52d4105d4c",
                "md5": "509b99510abf04979a5c63c6b179d73c",
                "sha256": "4bfc708d5e45e7613f4ce63febdd75c917e525814d7460925f01cdbfc06caf6f"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "509b99510abf04979a5c63c6b179d73c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 7552776,
            "upload_time": "2024-03-21T15:15:27",
            "upload_time_iso_8601": "2024-03-21T15:15:27.061123Z",
            "url": "https://files.pythonhosted.org/packages/c8/91/f0da78d301b6a0a7eaa561522bfd7dd63b7a40457d17ff593a52d4105d4c/diplib-3.4.3-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f4ae0db4ad69c19dd62c3b42f14a95e9508c86c03015d3145b19ac0d28b3a7f",
                "md5": "ec2a61b611d4941f6eedd5356a3bbb31",
                "sha256": "44a22c5ecd6c9ed280ccd9b7d9f2c049c30807664a3d2286e2e3ae74d18381ec"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec2a61b611d4941f6eedd5356a3bbb31",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 8000433,
            "upload_time": "2024-03-21T15:15:04",
            "upload_time_iso_8601": "2024-03-21T15:15:04.585700Z",
            "url": "https://files.pythonhosted.org/packages/0f/4a/e0db4ad69c19dd62c3b42f14a95e9508c86c03015d3145b19ac0d28b3a7f/diplib-3.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5448fdc15f678fcac264ff012dbdc966d9c6e4c78983f100df640f3fb150cc30",
                "md5": "9fc38e3098faa32a722030362cf8ed01",
                "sha256": "05cf1a0b36f5949e89c7309c9a2418494035afcbcca3e5d29880309d464122ce"
            },
            "downloads": -1,
            "filename": "diplib-3.4.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9fc38e3098faa32a722030362cf8ed01",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5116318,
            "upload_time": "2024-03-21T15:17:27",
            "upload_time_iso_8601": "2024-03-21T15:17:27.737933Z",
            "url": "https://files.pythonhosted.org/packages/54/48/fdc15f678fcac264ff012dbdc966d9c6e4c78983f100df640f3fb150cc30/diplib-3.4.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-21 15:15:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "DIPlib",
    "github_project": "diplib",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "diplib"
}
        
Elapsed time: 0.21229s