edt


Nameedt JSON
Version 2.4.0 PyPI version JSON
download
home_pagehttps://github.com/seung-lab/euclidean-distance-transform-3d/
SummaryMulti-Label Anisotropic Euclidean Distance Transform 3D
upload_time2024-02-18 07:23:54
maintainer
docs_urlNone
authorWilliam Silversmith
requires_python>=3.7,<4
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            ## Python Instructions for MLAEDT-3D

Compute the Euclidean Distance Transform of a 1d, 2d, or 3d labeled image containing multiple labels in a single pass with support for anisotropic dimensions.

### Python Installation

*Requires a C++ compiler*

The installation process depends on `edt.cpp` for the Python bindings derived from `edt.pyx`. `edt.hpp` contains the algorithm implementation.  

```bash
pip install numpy
pip install edt
```

### Recompiling `edt.pyx`

*Requires Cython and a C++ compiler*

```bash
cd python
cython -3 --cplus edt.pyx # generates edt.cpp
python setup.py develop # compiles edt.cpp and edt.hpp 
                        # together into a shared binary e.g. edt.cpython-36m-x86_64-linux-gnu.so
```

### Python Usage

Consult `help(edt)` after importing. The edt module contains: `edt` and `edtsq` which compute the euclidean and squared euclidean distance respectively. Both functions select dimension based on the shape of the numpy array fed to them. 1D, 2D, and 3D volumes are supported. 1D processing is extremely fast. Numpy boolean arrays are handled specially for faster processing.  

If for some reason you'd like to use a specific 'D' function, `edt1d`, `edt1dsq`, `edt2d`, `edt2dsq`, `edt3d`, and `edt3dsq` are available.  

The three optional parameters are `anisotropy`, `black_border`, and `order`. Anisotropy is used to correct for distortions in voxel space, e.g. if X and Y were acquired with a microscope, but the Z axis was cut more corsely.  

`black_border` allows you to specify that the edges of the image should be considered in computing pixel distances (it's also slightly faster).  

`order` allows the programmer to determine how the underlying array should be interpreted. `'C'` (C-order, XYZ, row-major) and `'F'` (Fortran-order, ZYX, column major) are supported. `'C'` order is the default.

`parallel` controls the number of threads. Set it <= 0 to automatically determine your CPU count.

```python
import edt
import numpy as np

# e.g. 6nm x 6nm x 30nm for the S1 dataset by Kasthuri et al., 2014
labels = np.ones(shape=(512, 512, 512), dtype=np.uint32, order='F')
dt = edt.edt(labels, anisotropy=(6, 6, 30), black_border=True, order='F', parallel=1) 
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/seung-lab/euclidean-distance-transform-3d/",
    "name": "edt",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7,<4",
    "maintainer_email": "",
    "keywords": "",
    "author": "William Silversmith",
    "author_email": "ws9@princeton.edu",
    "download_url": "https://files.pythonhosted.org/packages/ad/a0/18c8828a16cacce0c63822f71c3fb24263b89f55b20010a616fb11867e62/edt-2.4.0.tar.gz",
    "platform": null,
    "description": "## Python Instructions for MLAEDT-3D\n\nCompute the Euclidean Distance Transform of a 1d, 2d, or 3d labeled image containing multiple labels in a single pass with support for anisotropic dimensions.\n\n### Python Installation\n\n*Requires a C++ compiler*\n\nThe installation process depends on `edt.cpp` for the Python bindings derived from `edt.pyx`. `edt.hpp` contains the algorithm implementation.  \n\n```bash\npip install numpy\npip install edt\n```\n\n### Recompiling `edt.pyx`\n\n*Requires Cython and a C++ compiler*\n\n```bash\ncd python\ncython -3 --cplus edt.pyx # generates edt.cpp\npython setup.py develop # compiles edt.cpp and edt.hpp \n                        # together into a shared binary e.g. edt.cpython-36m-x86_64-linux-gnu.so\n```\n\n### Python Usage\n\nConsult `help(edt)` after importing. The edt module contains: `edt` and `edtsq` which compute the euclidean and squared euclidean distance respectively. Both functions select dimension based on the shape of the numpy array fed to them. 1D, 2D, and 3D volumes are supported. 1D processing is extremely fast. Numpy boolean arrays are handled specially for faster processing.  \n\nIf for some reason you'd like to use a specific 'D' function, `edt1d`, `edt1dsq`, `edt2d`, `edt2dsq`, `edt3d`, and `edt3dsq` are available.  \n\nThe three optional parameters are `anisotropy`, `black_border`, and `order`. Anisotropy is used to correct for distortions in voxel space, e.g. if X and Y were acquired with a microscope, but the Z axis was cut more corsely.  \n\n`black_border` allows you to specify that the edges of the image should be considered in computing pixel distances (it's also slightly faster).  \n\n`order` allows the programmer to determine how the underlying array should be interpreted. `'C'` (C-order, XYZ, row-major) and `'F'` (Fortran-order, ZYX, column major) are supported. `'C'` order is the default.\n\n`parallel` controls the number of threads. Set it <= 0 to automatically determine your CPU count.\n\n```python\nimport edt\nimport numpy as np\n\n# e.g. 6nm x 6nm x 30nm for the S1 dataset by Kasthuri et al., 2014\nlabels = np.ones(shape=(512, 512, 512), dtype=np.uint32, order='F')\ndt = edt.edt(labels, anisotropy=(6, 6, 30), black_border=True, order='F', parallel=1) \n```\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Multi-Label Anisotropic Euclidean Distance Transform 3D",
    "version": "2.4.0",
    "project_urls": {
        "Homepage": "https://github.com/seung-lab/euclidean-distance-transform-3d/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "200b1bdf7fc79c667bc8fe96f220d7fbf11058c99de0d366a296599c69c26ea1",
                "md5": "aa2701623dc73a985002254aa70cb7a5",
                "sha256": "502d23190b52e9443318f29c9a269e3594cd990e59b260b20a5d66593bf02d97"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa2701623dc73a985002254aa70cb7a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4",
            "size": 349602,
            "upload_time": "2024-02-18T07:22:24",
            "upload_time_iso_8601": "2024-02-18T07:22:24.025505Z",
            "url": "https://files.pythonhosted.org/packages/20/0b/1bdf7fc79c667bc8fe96f220d7fbf11058c99de0d366a296599c69c26ea1/edt-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbcab1269f29e2aee77035278783e06f9937b89698e10c9b25e9ba7cfd171278",
                "md5": "b367e0bb761dce9889c2882c297bca69",
                "sha256": "8fd715dc8aa43223101d3e19486f873898d85012302e2bc6e0dc967bfbbd757e"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b367e0bb761dce9889c2882c297bca69",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4",
            "size": 308467,
            "upload_time": "2024-02-18T07:22:26",
            "upload_time_iso_8601": "2024-02-18T07:22:26.278465Z",
            "url": "https://files.pythonhosted.org/packages/cb/ca/b1269f29e2aee77035278783e06f9937b89698e10c9b25e9ba7cfd171278/edt-2.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62a9185227ff7dc34b157de5060011c170cdcb547a53d63080ecf89ec4b3f91c",
                "md5": "aa301fdc45df012173613cbb57ae4afc",
                "sha256": "c87e854f0a7e99f42a375b19a3287a8659c191858b2d919e41bbd4f1543813b9"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aa301fdc45df012173613cbb57ae4afc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4",
            "size": 2962397,
            "upload_time": "2024-02-18T07:22:29",
            "upload_time_iso_8601": "2024-02-18T07:22:29.312694Z",
            "url": "https://files.pythonhosted.org/packages/62/a9/185227ff7dc34b157de5060011c170cdcb547a53d63080ecf89ec4b3f91c/edt-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a19d4dd5c5210107881240b14be5a8b0a4ef7404b4a50a20132325cfecf70f5",
                "md5": "642c8e526e1f4d1eec2807b8d434d850",
                "sha256": "145bbbd2357b628aa78c4a33c9ee91a292d1501acda3caa35c42847511499ddc"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "642c8e526e1f4d1eec2807b8d434d850",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4",
            "size": 2898869,
            "upload_time": "2024-02-18T07:22:32",
            "upload_time_iso_8601": "2024-02-18T07:22:32.414698Z",
            "url": "https://files.pythonhosted.org/packages/3a/19/d4dd5c5210107881240b14be5a8b0a4ef7404b4a50a20132325cfecf70f5/edt-2.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "deef21d6ec6210f9d4493ba0e0162cae53fc1f15743fa3b3ada4f2eb5643c39e",
                "md5": "edaa5f20eac2fc7d467f9d16c14028c3",
                "sha256": "6520905e85e639eb7a0a37e650b9f137483fd9dae111ff2143a0fb7091365aae"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "edaa5f20eac2fc7d467f9d16c14028c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4",
            "size": 3009946,
            "upload_time": "2024-02-18T07:22:35",
            "upload_time_iso_8601": "2024-02-18T07:22:35.672760Z",
            "url": "https://files.pythonhosted.org/packages/de/ef/21d6ec6210f9d4493ba0e0162cae53fc1f15743fa3b3ada4f2eb5643c39e/edt-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56e4c4e3573d710789b5ca76645a1de779b96a33452a2975e838ce239ef48a7b",
                "md5": "4978fc3e9b6143d3d209e2f1e59b42ce",
                "sha256": "ec8efffc0aba1f78a496cae94740dc1e93b3aab6952416630f7503932731f67e"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "4978fc3e9b6143d3d209e2f1e59b42ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4",
            "size": 202956,
            "upload_time": "2024-02-18T07:22:37",
            "upload_time_iso_8601": "2024-02-18T07:22:37.473821Z",
            "url": "https://files.pythonhosted.org/packages/56/e4/c4e3573d710789b5ca76645a1de779b96a33452a2975e838ce239ef48a7b/edt-2.4.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3c4cb02d46a7e617a94bd809ba6ced56033851da5057eb6ae230841548508e6",
                "md5": "b0efbc13f402a8545316a8d293adaef5",
                "sha256": "5f2b4f629f70a589aa5366bf5da1c0ea8bcb6219d92a35a3c52e4235435739a0"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b0efbc13f402a8545316a8d293adaef5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4",
            "size": 240585,
            "upload_time": "2024-02-18T07:22:39",
            "upload_time_iso_8601": "2024-02-18T07:22:39.037902Z",
            "url": "https://files.pythonhosted.org/packages/d3/c4/cb02d46a7e617a94bd809ba6ced56033851da5057eb6ae230841548508e6/edt-2.4.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2296e820b1d146f9e0a738793b2c3c65cd19628d23ceaec320fe5dc16293553",
                "md5": "96a11e3bcaefbe7ffc0d085f6f6dd60d",
                "sha256": "738a7ea2436f01628cdc85c521a6ef600101b3469295daa1eef942d743d79389"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "96a11e3bcaefbe7ffc0d085f6f6dd60d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4",
            "size": 349658,
            "upload_time": "2024-02-18T07:22:40",
            "upload_time_iso_8601": "2024-02-18T07:22:40.396403Z",
            "url": "https://files.pythonhosted.org/packages/b2/29/6e820b1d146f9e0a738793b2c3c65cd19628d23ceaec320fe5dc16293553/edt-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2273bfb4f0ab41b6f7724ac494a0f9b0a48540d1cf7d0816648cef5a851353ec",
                "md5": "b9df7d2d345e4b69a53cc44cf59979c5",
                "sha256": "a75d0691ea2f7c92f426dcc7c6943c47d5e02bccfe7c047b18597b93e97a172c"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b9df7d2d345e4b69a53cc44cf59979c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4",
            "size": 309609,
            "upload_time": "2024-02-18T07:22:42",
            "upload_time_iso_8601": "2024-02-18T07:22:42.283461Z",
            "url": "https://files.pythonhosted.org/packages/22/73/bfb4f0ab41b6f7724ac494a0f9b0a48540d1cf7d0816648cef5a851353ec/edt-2.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b80f6a85d40c8f3f05766d5dc6e6b0ec1c77c6141c285c5c9342b43d0b156ecd",
                "md5": "594aa71dc1756bb91a83667919aa5d7b",
                "sha256": "ca89f5a52130fc26b7efbe548f1906d8a097ec30836ed2442e94058351643e56"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "594aa71dc1756bb91a83667919aa5d7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4",
            "size": 3032592,
            "upload_time": "2024-02-18T07:22:44",
            "upload_time_iso_8601": "2024-02-18T07:22:44.700377Z",
            "url": "https://files.pythonhosted.org/packages/b8/0f/6a85d40c8f3f05766d5dc6e6b0ec1c77c6141c285c5c9342b43d0b156ecd/edt-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7cc910eef0185fda66f56a04d4f7c7a88bc2040e53ae596edd45828952e03a3",
                "md5": "e5e41d61af6ef027754948852c50907f",
                "sha256": "907ebefe9570a7d365f437d4cabb5f53b3e2e6e02d1b250a7d7c1703a92e324a"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e5e41d61af6ef027754948852c50907f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4",
            "size": 2960938,
            "upload_time": "2024-02-18T07:22:48",
            "upload_time_iso_8601": "2024-02-18T07:22:48.047669Z",
            "url": "https://files.pythonhosted.org/packages/b7/cc/910eef0185fda66f56a04d4f7c7a88bc2040e53ae596edd45828952e03a3/edt-2.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a34bdc1aaeef11594a43fdadecc8098614c5e7d493e728a1449a5cbd919e0d90",
                "md5": "4145b791ff7484463285a00ea02794e4",
                "sha256": "4c7a5c218cc13a690b9d2a1605c86361d6d8db7842bed3e625eed65cf8c9799c"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4145b791ff7484463285a00ea02794e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4",
            "size": 3081855,
            "upload_time": "2024-02-18T07:22:51",
            "upload_time_iso_8601": "2024-02-18T07:22:51.124287Z",
            "url": "https://files.pythonhosted.org/packages/a3/4b/dc1aaeef11594a43fdadecc8098614c5e7d493e728a1449a5cbd919e0d90/edt-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ef479f61d7e26be52ee1bc5189b9ffba1bc2bfd14db90002e730189d21d73bc",
                "md5": "305edcce3e40cb829c6ff978b68dbc27",
                "sha256": "02c10f08ec0aa041fd650fcded82693df0b025ed3a8ad79856cb3d49872c1b9f"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "305edcce3e40cb829c6ff978b68dbc27",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4",
            "size": 202967,
            "upload_time": "2024-02-18T07:22:52",
            "upload_time_iso_8601": "2024-02-18T07:22:52.776231Z",
            "url": "https://files.pythonhosted.org/packages/5e/f4/79f61d7e26be52ee1bc5189b9ffba1bc2bfd14db90002e730189d21d73bc/edt-2.4.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f9769517d2f9151e3bae065e3b38fb5f1b3265ecd0ceb41a5b7213106258c4d",
                "md5": "5c3f0c23db2942b60acad54f91834703",
                "sha256": "7f5171d3fe9c95490e772f1c2c4de849ccb6ca551bc81d6bc65d4d1f97f14a17"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5c3f0c23db2942b60acad54f91834703",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4",
            "size": 241076,
            "upload_time": "2024-02-18T07:22:54",
            "upload_time_iso_8601": "2024-02-18T07:22:54.112882Z",
            "url": "https://files.pythonhosted.org/packages/9f/97/69517d2f9151e3bae065e3b38fb5f1b3265ecd0ceb41a5b7213106258c4d/edt-2.4.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0753914a3d640e799ff5db933a5782f0b1d8dcfeff8520a325688fcb54e4f992",
                "md5": "38ef94669286ec1804cb599ec383933c",
                "sha256": "a09e5e491c65c8f8d58e6daba5d49a3e702013c8a8386797005dba1a98cc2da4"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38ef94669286ec1804cb599ec383933c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4",
            "size": 343810,
            "upload_time": "2024-02-18T07:22:55",
            "upload_time_iso_8601": "2024-02-18T07:22:55.439452Z",
            "url": "https://files.pythonhosted.org/packages/07/53/914a3d640e799ff5db933a5782f0b1d8dcfeff8520a325688fcb54e4f992/edt-2.4.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "114de5934e6e0bdb1ae862f79f2742b06b59df215597e7e200804c59f2666058",
                "md5": "f2d0d3e03db6a561a9f100cd0e0bcb33",
                "sha256": "f6c8f79252c0c88b6391a285ef6722da6fe1f0df4af51f86145e30e214e1c557"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f2d0d3e03db6a561a9f100cd0e0bcb33",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4",
            "size": 306023,
            "upload_time": "2024-02-18T07:22:56",
            "upload_time_iso_8601": "2024-02-18T07:22:56.995465Z",
            "url": "https://files.pythonhosted.org/packages/11/4d/e5934e6e0bdb1ae862f79f2742b06b59df215597e7e200804c59f2666058/edt-2.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c23d2dba6eed9644f6973b840cca82b4fcff3a30376bdfc77ed07c3b71842c9",
                "md5": "bc68860e3264258d822bfb50577ff84f",
                "sha256": "e56bab21ed5deca164926dfbd73a5a213c2246256a43b007c27634f7b6828f3c"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bc68860e3264258d822bfb50577ff84f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4",
            "size": 3000027,
            "upload_time": "2024-02-18T07:22:59",
            "upload_time_iso_8601": "2024-02-18T07:22:59.462525Z",
            "url": "https://files.pythonhosted.org/packages/0c/23/d2dba6eed9644f6973b840cca82b4fcff3a30376bdfc77ed07c3b71842c9/edt-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0791ba4099ef286075df5568ab92591746cc12d69140e28a5a7d5ec715874371",
                "md5": "b614c51ce5cf85398e12c2d8055040ea",
                "sha256": "0be0515d42d02e66f3392bf036bb424df2c8e13abbaf87c129971b4454595549"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b614c51ce5cf85398e12c2d8055040ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4",
            "size": 2928933,
            "upload_time": "2024-02-18T07:23:02",
            "upload_time_iso_8601": "2024-02-18T07:23:02.064123Z",
            "url": "https://files.pythonhosted.org/packages/07/91/ba4099ef286075df5568ab92591746cc12d69140e28a5a7d5ec715874371/edt-2.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d87de97aa6e9af5f2b427264a3870d3fc1d4caf2d6885027d41b4440fd966c9",
                "md5": "74f6220d6052d3f8d5fe40c43a2f5597",
                "sha256": "e6b402f076af277aa51635da16a9d6fccd112518874cbbccbd3e1f0c63a973f2"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74f6220d6052d3f8d5fe40c43a2f5597",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4",
            "size": 3058405,
            "upload_time": "2024-02-18T07:23:05",
            "upload_time_iso_8601": "2024-02-18T07:23:05.092485Z",
            "url": "https://files.pythonhosted.org/packages/6d/87/de97aa6e9af5f2b427264a3870d3fc1d4caf2d6885027d41b4440fd966c9/edt-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13311e68131221ea2e0a6bc9d6f0bb0c69231f9fea0c77372d4de21b67acb0c8",
                "md5": "b9156f424c9e33f07afe85e1708eee0e",
                "sha256": "e5be9973ae7778729bc3c0429f31d46a6913d06ecad7814dc7efe099a8fab462"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "b9156f424c9e33f07afe85e1708eee0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4",
            "size": 200038,
            "upload_time": "2024-02-18T07:23:07",
            "upload_time_iso_8601": "2024-02-18T07:23:07.391136Z",
            "url": "https://files.pythonhosted.org/packages/13/31/1e68131221ea2e0a6bc9d6f0bb0c69231f9fea0c77372d4de21b67acb0c8/edt-2.4.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e56c7dc9ebb1e4a0254aa2cb5081cca58f7d2375f603e8181f0d1a6cce430fa2",
                "md5": "f50473bec36e66d5808b3dd13bd563ad",
                "sha256": "35dc246efdae4b86a462e41cc3c85bf9d7f328db1ddd7f1b116c21f966237f7a"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f50473bec36e66d5808b3dd13bd563ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4",
            "size": 235165,
            "upload_time": "2024-02-18T07:23:08",
            "upload_time_iso_8601": "2024-02-18T07:23:08.825751Z",
            "url": "https://files.pythonhosted.org/packages/e5/6c/7dc9ebb1e4a0254aa2cb5081cca58f7d2375f603e8181f0d1a6cce430fa2/edt-2.4.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e3f1c942b58113e7cd7300b6b7b3e557fdfd7920ec3080ebfb2e6ef7425e985",
                "md5": "32aa1b8431b9439c8d28db048e4c537d",
                "sha256": "ba8d4332221e183c6417a814738dff77174d0bf60c04a7c54d7f32c84b6e0d32"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32aa1b8431b9439c8d28db048e4c537d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4",
            "size": 345057,
            "upload_time": "2024-02-18T07:23:10",
            "upload_time_iso_8601": "2024-02-18T07:23:10.713486Z",
            "url": "https://files.pythonhosted.org/packages/1e/3f/1c942b58113e7cd7300b6b7b3e557fdfd7920ec3080ebfb2e6ef7425e985/edt-2.4.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "699be036744ff5d59826811d4c58e88efd17a19686b74fee786d22357a2c49a7",
                "md5": "6c2ddee07e13f8665a56b056a9f2e4b1",
                "sha256": "17568e3870fe17dfe259c3abf221c9811d97c9bc1aec6487eeca8dfa01b5b573"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6c2ddee07e13f8665a56b056a9f2e4b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4",
            "size": 2857981,
            "upload_time": "2024-02-18T07:23:13",
            "upload_time_iso_8601": "2024-02-18T07:23:13.940099Z",
            "url": "https://files.pythonhosted.org/packages/69/9b/e036744ff5d59826811d4c58e88efd17a19686b74fee786d22357a2c49a7/edt-2.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e5c1dd02ee730ac032c7e5f12b190b5759bce9bae592b62b14bbdd6dedcf31e",
                "md5": "e90ceea82981fbc0a04e1a1f563e475a",
                "sha256": "992c54a2729241959829c5990b4872f8075781bba3aaecf309f91f578462bb89"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e90ceea82981fbc0a04e1a1f563e475a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4",
            "size": 2794784,
            "upload_time": "2024-02-18T07:23:17",
            "upload_time_iso_8601": "2024-02-18T07:23:17.316476Z",
            "url": "https://files.pythonhosted.org/packages/9e/5c/1dd02ee730ac032c7e5f12b190b5759bce9bae592b62b14bbdd6dedcf31e/edt-2.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba985e9d0065800d8f8aac4ae6eaf3cc817096bc124866ad28d45072b3280627",
                "md5": "51b21a8cfb3182f43fb25b910e2c0aca",
                "sha256": "376ded44108f140733b8812ebf5185a46067e256a257e147a4a91f028300f8ab"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "51b21a8cfb3182f43fb25b910e2c0aca",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4",
            "size": 2904575,
            "upload_time": "2024-02-18T07:23:19",
            "upload_time_iso_8601": "2024-02-18T07:23:19.836650Z",
            "url": "https://files.pythonhosted.org/packages/ba/98/5e9d0065800d8f8aac4ae6eaf3cc817096bc124866ad28d45072b3280627/edt-2.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9492fd23bfa2f4e52a58e900d0f7ac5435ecd70a5e415ab5d383798610febd1f",
                "md5": "605da33d7d2b680885c51eea2d330a23",
                "sha256": "28f59c1da24e2d6bfe23afd5a9a9e8071701efa3e0ed1e6049e8120c1d03a000"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "605da33d7d2b680885c51eea2d330a23",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4",
            "size": 200799,
            "upload_time": "2024-02-18T07:23:21",
            "upload_time_iso_8601": "2024-02-18T07:23:21.897060Z",
            "url": "https://files.pythonhosted.org/packages/94/92/fd23bfa2f4e52a58e900d0f7ac5435ecd70a5e415ab5d383798610febd1f/edt-2.4.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "716aa1acc5a6c3f48ec37ec2253a27046e7762ce2964b7a2ded79fdd647de89e",
                "md5": "9ec0d778a249c3237be522196018a7e3",
                "sha256": "b44462748a6ec0552181f29c6bc5c9b04b4a6125c0efa3711fe1cd118c732bc5"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9ec0d778a249c3237be522196018a7e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4",
            "size": 235261,
            "upload_time": "2024-02-18T07:23:23",
            "upload_time_iso_8601": "2024-02-18T07:23:23.787653Z",
            "url": "https://files.pythonhosted.org/packages/71/6a/a1acc5a6c3f48ec37ec2253a27046e7762ce2964b7a2ded79fdd647de89e/edt-2.4.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2596c987a5bde0df9e692b224f4cce6bc5a93d50fcdd9678a5dab1920fbe0bf2",
                "md5": "4e26855960ce08c6e9e45d08762ac07d",
                "sha256": "bb116cf81d7e19843ed57011855d78d412b89c11b1b1ca396c48743f61a9996a"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e26855960ce08c6e9e45d08762ac07d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4",
            "size": 348223,
            "upload_time": "2024-02-18T07:23:25",
            "upload_time_iso_8601": "2024-02-18T07:23:25.560323Z",
            "url": "https://files.pythonhosted.org/packages/25/96/c987a5bde0df9e692b224f4cce6bc5a93d50fcdd9678a5dab1920fbe0bf2/edt-2.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b9b97ae214f9574646a5866d58b49f2b646ed6e7fda1c56eb41074e4e4941c1",
                "md5": "62f014bf450828553738bce7d6278644",
                "sha256": "ebda40772219f4886ca31f8a36ca61fc3ccca84590b215ce1728f611acf26de5"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "62f014bf450828553738bce7d6278644",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4",
            "size": 306795,
            "upload_time": "2024-02-18T07:23:26",
            "upload_time_iso_8601": "2024-02-18T07:23:26.983445Z",
            "url": "https://files.pythonhosted.org/packages/6b/9b/97ae214f9574646a5866d58b49f2b646ed6e7fda1c56eb41074e4e4941c1/edt-2.4.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca94e0dcad57255ffdf15951050f873abe7b1d1831b6a105393818856a4ad0de",
                "md5": "4ef06fff822722ee653892816b4873eb",
                "sha256": "65ef09a9189aca70e33304072c6497395170836fe071c2de7f5db9113067bd48"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4ef06fff822722ee653892816b4873eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4",
            "size": 3004495,
            "upload_time": "2024-02-18T07:23:29",
            "upload_time_iso_8601": "2024-02-18T07:23:29.644454Z",
            "url": "https://files.pythonhosted.org/packages/ca/94/e0dcad57255ffdf15951050f873abe7b1d1831b6a105393818856a4ad0de/edt-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cba2a44af1c3063c7ea6f9311193eb50fc447cc2f2c65b12ace1401e7a661ee5",
                "md5": "b79c0700250c45ed9a9178a1605a6ecc",
                "sha256": "ada75f9c4daa5002cb88209fc5105bcd1e382044a38fe5bbaae83502b6a7db58"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b79c0700250c45ed9a9178a1605a6ecc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4",
            "size": 2935648,
            "upload_time": "2024-02-18T07:23:32",
            "upload_time_iso_8601": "2024-02-18T07:23:32.641196Z",
            "url": "https://files.pythonhosted.org/packages/cb/a2/a44af1c3063c7ea6f9311193eb50fc447cc2f2c65b12ace1401e7a661ee5/edt-2.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a014ea52dd40da0b3392375f25e0a2f1e7fc8598ec7c022763f2eaead151ad0a",
                "md5": "e5a54b7382e1c90694acb88fd77738ed",
                "sha256": "9bc1236ae6ad26bb632afe867734ffa4f9cfc4bfa31010daf43044c4611a7fc8"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5a54b7382e1c90694acb88fd77738ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4",
            "size": 3058450,
            "upload_time": "2024-02-18T07:23:35",
            "upload_time_iso_8601": "2024-02-18T07:23:35.811454Z",
            "url": "https://files.pythonhosted.org/packages/a0/14/ea52dd40da0b3392375f25e0a2f1e7fc8598ec7c022763f2eaead151ad0a/edt-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67c83e20f882745a72c795e302570cf855b8a66e7bac694d32ec1358d1c122f1",
                "md5": "18de8f6ec67660a3eb1e86f954b02772",
                "sha256": "38c2d8532e994108037758724feb0848f37dbfdc939e5f4f39308d54db10105c"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "18de8f6ec67660a3eb1e86f954b02772",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4",
            "size": 203809,
            "upload_time": "2024-02-18T07:23:37",
            "upload_time_iso_8601": "2024-02-18T07:23:37.381790Z",
            "url": "https://files.pythonhosted.org/packages/67/c8/3e20f882745a72c795e302570cf855b8a66e7bac694d32ec1358d1c122f1/edt-2.4.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a979e4c3501cc2cccb10376eebdc5b03397097fa989fcc5e00c8c13a34c42c7",
                "md5": "874ed1dab70d4bc1d7e365245cc6a733",
                "sha256": "7ceec582e6c885ec5961d340fde84ba0665f319fdc26d4c279d7c92fbeba98fb"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "874ed1dab70d4bc1d7e365245cc6a733",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4",
            "size": 241637,
            "upload_time": "2024-02-18T07:23:38",
            "upload_time_iso_8601": "2024-02-18T07:23:38.733235Z",
            "url": "https://files.pythonhosted.org/packages/7a/97/9e4c3501cc2cccb10376eebdc5b03397097fa989fcc5e00c8c13a34c42c7/edt-2.4.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bae989967ec17a05364b304636a48247a5023d38c35bead1190acd8668d5994",
                "md5": "e68b30826a02f5b2025ca9d5ea61f5de",
                "sha256": "4b510b00997d8f016fbb7830cc4b26ca10227a599150b4d0ed345cd424c8e059"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e68b30826a02f5b2025ca9d5ea61f5de",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4",
            "size": 349864,
            "upload_time": "2024-02-18T07:23:40",
            "upload_time_iso_8601": "2024-02-18T07:23:40.105255Z",
            "url": "https://files.pythonhosted.org/packages/5b/ae/989967ec17a05364b304636a48247a5023d38c35bead1190acd8668d5994/edt-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52addc28888136d4d3bbbc84f0370bcc56e173a206ff36da83c7112b7ce7fb85",
                "md5": "d83647f5062dfcf68657eea280a7ed6e",
                "sha256": "53c7a5246a102e674053f94cf58c7dc610484e90bb9f0455a523062cfc4e42fe"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d83647f5062dfcf68657eea280a7ed6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4",
            "size": 308527,
            "upload_time": "2024-02-18T07:23:41",
            "upload_time_iso_8601": "2024-02-18T07:23:41.537514Z",
            "url": "https://files.pythonhosted.org/packages/52/ad/dc28888136d4d3bbbc84f0370bcc56e173a206ff36da83c7112b7ce7fb85/edt-2.4.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86ace28a3737d2c808c1a20c0b82e91b40148f4cb5967fa65df186b81234d5de",
                "md5": "0b5065ff70d2db28b78f166e74fcb6db",
                "sha256": "a25c48f282a979c8566ff999f35b746f3324313cdbeb695cf8c722e593ffbabe"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0b5065ff70d2db28b78f166e74fcb6db",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4",
            "size": 2962556,
            "upload_time": "2024-02-18T07:23:44",
            "upload_time_iso_8601": "2024-02-18T07:23:44.359669Z",
            "url": "https://files.pythonhosted.org/packages/86/ac/e28a3737d2c808c1a20c0b82e91b40148f4cb5967fa65df186b81234d5de/edt-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e81366c4ffba0f256c77a117f9c321fa3c74749466e4deb9624bdab11cd5d589",
                "md5": "f883d6b5bca7b6833c07f05533c3ccee",
                "sha256": "e068ad537d7597e2bd0d030f7a163ff3fc7f2a112850cd1ac8575bad62261d82"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f883d6b5bca7b6833c07f05533c3ccee",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4",
            "size": 2896493,
            "upload_time": "2024-02-18T07:23:47",
            "upload_time_iso_8601": "2024-02-18T07:23:47.619894Z",
            "url": "https://files.pythonhosted.org/packages/e8/13/66c4ffba0f256c77a117f9c321fa3c74749466e4deb9624bdab11cd5d589/edt-2.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90e897d7cd262f8086a2b53c62c7dd2aa8ef671fb148ab37befea52cff68f895",
                "md5": "a52d8605b6bb61add69809da746ccac5",
                "sha256": "3ad6478121d3583516f0f7c3e3597cd0f0545abaabb2e2d5afe53d11e8d7f77e"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a52d8605b6bb61add69809da746ccac5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4",
            "size": 3009821,
            "upload_time": "2024-02-18T07:23:50",
            "upload_time_iso_8601": "2024-02-18T07:23:50.328303Z",
            "url": "https://files.pythonhosted.org/packages/90/e8/97d7cd262f8086a2b53c62c7dd2aa8ef671fb148ab37befea52cff68f895/edt-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fd25e83cb0d30d81f3bbd87e118ce924ec3f055c30ab631ac1c845b8b30b842",
                "md5": "858d2d3e5c5d4d963106efc81267599e",
                "sha256": "d792a3b1496f901b2b01309bb67a2072cd26bfc52e529a0339674aa98dcca01a"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "858d2d3e5c5d4d963106efc81267599e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4",
            "size": 203015,
            "upload_time": "2024-02-18T07:23:51",
            "upload_time_iso_8601": "2024-02-18T07:23:51.936320Z",
            "url": "https://files.pythonhosted.org/packages/7f/d2/5e83cb0d30d81f3bbd87e118ce924ec3f055c30ab631ac1c845b8b30b842/edt-2.4.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86cedd712bb0280011f3bbd394338eebc748add8c1e7032cc2e1c29ea922f8ed",
                "md5": "c85c7e0904aea0e1f3a89bb15c022c1b",
                "sha256": "94e82f0bcf8037cebb67f79b93cf49f69a18839b102a28054995d496af4c77f1"
            },
            "downloads": -1,
            "filename": "edt-2.4.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c85c7e0904aea0e1f3a89bb15c022c1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4",
            "size": 240604,
            "upload_time": "2024-02-18T07:23:53",
            "upload_time_iso_8601": "2024-02-18T07:23:53.373609Z",
            "url": "https://files.pythonhosted.org/packages/86/ce/dd712bb0280011f3bbd394338eebc748add8c1e7032cc2e1c29ea922f8ed/edt-2.4.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ada018c8828a16cacce0c63822f71c3fb24263b89f55b20010a616fb11867e62",
                "md5": "17d3923262f88f4f5f77416c70e3c2d1",
                "sha256": "1c0bd88ab81a22cf01d0b53d6a0b584e56301a14658318a9b41bd636fc5e03cf"
            },
            "downloads": -1,
            "filename": "edt-2.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "17d3923262f88f4f5f77416c70e3c2d1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4",
            "size": 32734,
            "upload_time": "2024-02-18T07:23:54",
            "upload_time_iso_8601": "2024-02-18T07:23:54.662848Z",
            "url": "https://files.pythonhosted.org/packages/ad/a0/18c8828a16cacce0c63822f71c3fb24263b89f55b20010a616fb11867e62/edt-2.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-18 07:23:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "seung-lab",
    "github_project": "euclidean-distance-transform-3d",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "lcname": "edt"
}
        
Elapsed time: 0.30521s