itk-tubetk


Nameitk-tubetk JSON
Version 1.3.6 PyPI version JSON
download
home_pagehttps://github.com/InsightSoftwareConsortium/ITKTubeTK/
SummaryAn open-source toolkit, led by Kitware, Inc., for the segmentation, registration, and analysis of tubes (e.g., blood vessels) in images.
upload_time2024-01-13 09:34:25
maintainer
docs_urlNone
authorStephen R. Aylward
requires_python
licenseApache
keywords itk insighttoolkit tubes vessels nerves ultrasound mri ct medical
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ITKTubeTK: Tubular Object Extraction, Registration, and Analysis
================================================================

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/InsightSoftwareConsortium/ITKTubeTK/blob/master/LICENSE)

[![Build, test, package](https://github.com/InsightSoftwareConsortium/ITKTubeTK/actions/workflows/build-test-package.yml/badge.svg)](https://github.com/InsightSoftwareConsortium/ITKTubeTK/actions/workflows/build-test-package.yml)

[![Documentation Status](https://readthedocs.org/projects/tubetk/badge/?version=latest)](https://tubetk.readthedocs.io/en/latest/?badge=latest)

Available in C++ and Python for Linux, Windows, and MacOS.

Overview
--------

TubeTK is an open-source toolkit for the segmentation, registration, and analysis of tubes and surfaces in images, developed by [Kitware, Inc.](https://www.kitware.com)

Tubes and surfaces, as generalized 1D and 2D manifolds in N-dimensional images, are essential components in a variety of image analysis tasks. Instances of tubular structures in images include blood vessels in magnetic resonance angiograms and b-mode ultrasound images, wires in microscopy images of integrated circuits, roads in aerial photographs, and nerves in confocal microscopy.

A guiding premise of TubeTK is that by focusing on 1D and 2D manifolds we can devise methods that are insensitive to the modality, noise, contrast, and scale of the images being analyzed and to the arrangement and deformations of the objects in them. In particular, we propose that TubeTK's manifold methods offer improved performance for many applications, compared to methods involving the analysis of independent geometric measures (e.g., edges and corners) or requiring complete shape models.

TubeTK offers various interface layers:

* [TubeTK/src](src): This is the algorithms library.   It is the lowest level of access to the methods of TubeTK.  It is only available via C++, and it requires considerable expertise to effectively combine and call its methods to do anything useful.   Interfacing directly with these algorithms is not recommended and is not well supported. Unit-level testing is performed continuously on these methods.

* [TubeTK/include](include): This is the ITK interface to select methods in `TubeTK/src`.  This level of interface is intended for ITK users and Python scripts writers.  The methods exposed represent a level of modularization that invites experimentation, integration with other toolkits (e.g., Scikit-Learn), and development of processing pipelines that accomplish significant image analysis goals.  The interface is available as an ITK Extension and thereby available via Python using Wrapped ITK.

* [TubeTK/examples/Applications](examples/Applications): These are optional command-line interface applications.  These applications are mostly also available via the TubeTK/include interface, and thereby are available via python.  Expansion of ITK will focus on the TubeTK/include directory, and new applications will only rarely be added.  These applications are built when the cmake options BUILD_EXAMPLES is enabled.  These applications also require SlicerExecutionModel, see https://github.com/Slicer/SlicerExecutionModel.   

Using TubeTK
------------

Minimal
    $ python -c "from itk import TubeTK"

Recommended
    $ python -c "from itk import TubeTK as ttk"


Acknowledgements
----------------

If you find TubeTK to be useful for your work, please cite the following publication when publishing your work:
* S. R. Aylward and E. Bullitt, "Initialization, noise, singularities, and scale in height ridge traversal for tubular object centerline extraction," Medical Imaging, IEEE Transactions on, vol. 21, no. 2, pp. 61-75, 2002.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/InsightSoftwareConsortium/ITKTubeTK/",
    "name": "itk-tubetk",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "ITK InsightToolkit Tubes Vessels Nerves Ultrasound MRI CT Medical",
    "author": "Stephen R. Aylward",
    "author_email": "stephen.aylward@kitware.com",
    "download_url": "https://github.com/InsightSoftwareConsortium/ITKTubeTK",
    "platform": null,
    "description": "ITKTubeTK: Tubular Object Extraction, Registration, and Analysis\n================================================================\n\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/InsightSoftwareConsortium/ITKTubeTK/blob/master/LICENSE)\n\n[![Build, test, package](https://github.com/InsightSoftwareConsortium/ITKTubeTK/actions/workflows/build-test-package.yml/badge.svg)](https://github.com/InsightSoftwareConsortium/ITKTubeTK/actions/workflows/build-test-package.yml)\n\n[![Documentation Status](https://readthedocs.org/projects/tubetk/badge/?version=latest)](https://tubetk.readthedocs.io/en/latest/?badge=latest)\n\nAvailable in C++ and Python for Linux, Windows, and MacOS.\n\nOverview\n--------\n\nTubeTK is an open-source toolkit for the segmentation, registration, and analysis of tubes and surfaces in images, developed by [Kitware, Inc.](https://www.kitware.com)\n\nTubes and surfaces, as generalized 1D and 2D manifolds in N-dimensional images, are essential components in a variety of image analysis tasks. Instances of tubular structures in images include blood vessels in magnetic resonance angiograms and b-mode ultrasound images, wires in microscopy images of integrated circuits, roads in aerial photographs, and nerves in confocal microscopy.\n\nA guiding premise of TubeTK is that by focusing on 1D and 2D manifolds we can devise methods that are insensitive to the modality, noise, contrast, and scale of the images being analyzed and to the arrangement and deformations of the objects in them. In particular, we propose that TubeTK's manifold methods offer improved performance for many applications, compared to methods involving the analysis of independent geometric measures (e.g., edges and corners) or requiring complete shape models.\n\nTubeTK offers various interface layers:\n\n* [TubeTK/src](src): This is the algorithms library.   It is the lowest level of access to the methods of TubeTK.  It is only available via C++, and it requires considerable expertise to effectively combine and call its methods to do anything useful.   Interfacing directly with these algorithms is not recommended and is not well supported. Unit-level testing is performed continuously on these methods.\n\n* [TubeTK/include](include): This is the ITK interface to select methods in `TubeTK/src`.  This level of interface is intended for ITK users and Python scripts writers.  The methods exposed represent a level of modularization that invites experimentation, integration with other toolkits (e.g., Scikit-Learn), and development of processing pipelines that accomplish significant image analysis goals.  The interface is available as an ITK Extension and thereby available via Python using Wrapped ITK.\n\n* [TubeTK/examples/Applications](examples/Applications): These are optional command-line interface applications.  These applications are mostly also available via the TubeTK/include interface, and thereby are available via python.  Expansion of ITK will focus on the TubeTK/include directory, and new applications will only rarely be added.  These applications are built when the cmake options BUILD_EXAMPLES is enabled.  These applications also require SlicerExecutionModel, see https://github.com/Slicer/SlicerExecutionModel.   \n\nUsing TubeTK\n------------\n\nMinimal\n    $ python -c \"from itk import TubeTK\"\n\nRecommended\n    $ python -c \"from itk import TubeTK as ttk\"\n\n\nAcknowledgements\n----------------\n\nIf you find TubeTK to be useful for your work, please cite the following publication when publishing your work:\n* S. R. Aylward and E. Bullitt, \"Initialization, noise, singularities, and scale in height ridge traversal for tubular object centerline extraction,\" Medical Imaging, IEEE Transactions on, vol. 21, no. 2, pp. 61-75, 2002.\n",
    "bugtrack_url": null,
    "license": "Apache",
    "summary": "An open-source toolkit, led by Kitware, Inc., for the segmentation, registration, and analysis of tubes (e.g., blood vessels) in images.",
    "version": "1.3.6",
    "project_urls": {
        "Download": "https://github.com/InsightSoftwareConsortium/ITKTubeTK",
        "Github": "https://github.com/InsightSoftwareConsortium/ITKTubeTK/",
        "Homepage": "https://github.com/InsightSoftwareConsortium/ITKTubeTK/",
        "ITK": "https://itk.org",
        "Issue Tracker": "https://github.com/InsightSoftwareConsortium/ITKTubeTK/issues",
        "Testing Data": "https://data.kitware.com/#collection/5888b7d38d777f4f3f3085a8/folder/58a3abf08d777f0721a65b16"
    },
    "split_keywords": [
        "itk",
        "insighttoolkit",
        "tubes",
        "vessels",
        "nerves",
        "ultrasound",
        "mri",
        "ct",
        "medical"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "079724838952481f98315ddbeeb74a9843f4c654009f1273ead5b43f0d2beb7f",
                "md5": "d3e6af3b8f84137178fadd6e21e6de58",
                "sha256": "1970aaddf3685edf718e87bea6dab44c2b7c71cec5a8acfb1de2bdbb029e4adc"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3e6af3b8f84137178fadd6e21e6de58",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 18797765,
            "upload_time": "2024-01-13T09:34:25",
            "upload_time_iso_8601": "2024-01-13T09:34:25.344091Z",
            "url": "https://files.pythonhosted.org/packages/07/97/24838952481f98315ddbeeb74a9843f4c654009f1273ead5b43f0d2beb7f/itk_tubetk-1.3.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29f420f5b9a5efe80687d169373671447b5af026bb285ab0d8f36e4aed9cdec2",
                "md5": "295b657f96d5bb83d8aa370123c63e06",
                "sha256": "88f8635a61e1ee304de26ae4b51c725462ce6a673ed8105a6d2dc9c1b9cfee21"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "295b657f96d5bb83d8aa370123c63e06",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 19418594,
            "upload_time": "2024-01-13T09:34:28",
            "upload_time_iso_8601": "2024-01-13T09:34:28.303475Z",
            "url": "https://files.pythonhosted.org/packages/29/f4/20f5b9a5efe80687d169373671447b5af026bb285ab0d8f36e4aed9cdec2/itk_tubetk-1.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e1b43f364a0ec2ec7bbd5227ffa282600c5db830a8d8c2568c8112cb9220ab7",
                "md5": "2f5d046f36d93131bf7febb2d0497773",
                "sha256": "dcd3767739eca27548e7a16cff46fbd64f31e9f323505a91bdf79b63ecbf2d8c"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2f5d046f36d93131bf7febb2d0497773",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 17330469,
            "upload_time": "2024-01-13T09:34:31",
            "upload_time_iso_8601": "2024-01-13T09:34:31.167462Z",
            "url": "https://files.pythonhosted.org/packages/4e/1b/43f364a0ec2ec7bbd5227ffa282600c5db830a8d8c2568c8112cb9220ab7/itk_tubetk-1.3.6-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "809a03dad6a37324020a96e02e8afb74e7d0b54467f0f2540e0a8c134a4e9e62",
                "md5": "8cc8698048e8bc796f9ffe12230759e7",
                "sha256": "f13e0ab63604eb1edf409b93eb30c5c27e74d78c5c3ea4a189960baf8eaeefe2"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8cc8698048e8bc796f9ffe12230759e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 19175447,
            "upload_time": "2024-01-13T09:34:34",
            "upload_time_iso_8601": "2024-01-13T09:34:34.209306Z",
            "url": "https://files.pythonhosted.org/packages/80/9a/03dad6a37324020a96e02e8afb74e7d0b54467f0f2540e0a8c134a4e9e62/itk_tubetk-1.3.6-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77188847517c57a15f54ccb9692f3ac78179f22405a5d397f7ccb1d7b100216d",
                "md5": "4ac868f9fdc8a244ef66a8fe99629ca0",
                "sha256": "70f8a925c369cdff299f9e7117588ff9c567f098198f9f8234fc31a31de8fd63"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ac868f9fdc8a244ef66a8fe99629ca0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 8044205,
            "upload_time": "2024-01-13T09:34:36",
            "upload_time_iso_8601": "2024-01-13T09:34:36.888687Z",
            "url": "https://files.pythonhosted.org/packages/77/18/8847517c57a15f54ccb9692f3ac78179f22405a5d397f7ccb1d7b100216d/itk_tubetk-1.3.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "329bdcaf03fe90c92c47a25864b257b9111e6f9df8c23ee6a3d550362ff2802c",
                "md5": "30a485471f3da53d2a6f952cc9a159a6",
                "sha256": "a9fa28d1734d6bc4819f3c78223d6361e29337cd6ad1242519bee76c67b18784"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30a485471f3da53d2a6f952cc9a159a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 18797794,
            "upload_time": "2024-01-13T09:34:38",
            "upload_time_iso_8601": "2024-01-13T09:34:38.674895Z",
            "url": "https://files.pythonhosted.org/packages/32/9b/dcaf03fe90c92c47a25864b257b9111e6f9df8c23ee6a3d550362ff2802c/itk_tubetk-1.3.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9b71945aa5d308305e8f19bf5b75a069c29e2ddb14d1abed0a9e1e987e65858",
                "md5": "f869ee98c10f531b6f01ac5eac6ae18f",
                "sha256": "4c6217d1400f6462075279498ec44f4070931bd9f15e6af269a454ec7c62622c"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f869ee98c10f531b6f01ac5eac6ae18f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 19417340,
            "upload_time": "2024-01-13T09:34:41",
            "upload_time_iso_8601": "2024-01-13T09:34:41.785571Z",
            "url": "https://files.pythonhosted.org/packages/f9/b7/1945aa5d308305e8f19bf5b75a069c29e2ddb14d1abed0a9e1e987e65858/itk_tubetk-1.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9270f42cb9734d1b752065c095b74c21494e7a5ced5ec238a0c96562297acb9",
                "md5": "918a6dd2a78dddbffaebc339b8601a0a",
                "sha256": "caf4f30f1c383b1d56f972c3840e58cc9809dfb34d3fe1f0371c7bb87269f0ce"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "918a6dd2a78dddbffaebc339b8601a0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 17349562,
            "upload_time": "2024-01-13T09:34:44",
            "upload_time_iso_8601": "2024-01-13T09:34:44.675298Z",
            "url": "https://files.pythonhosted.org/packages/c9/27/0f42cb9734d1b752065c095b74c21494e7a5ced5ec238a0c96562297acb9/itk_tubetk-1.3.6-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "711ad203f2a64104d401be6d54312dd2e7f5e6de3f0759097385a006bb0d16b5",
                "md5": "2445fa5dc354a7d2f6c82d34809123a0",
                "sha256": "8b18300eb64bf529ae619e490b4206c2aa536db1f3e7bc82e2db332cbb92b423"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2445fa5dc354a7d2f6c82d34809123a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 19163265,
            "upload_time": "2024-01-13T09:34:47",
            "upload_time_iso_8601": "2024-01-13T09:34:47.540911Z",
            "url": "https://files.pythonhosted.org/packages/71/1a/d203f2a64104d401be6d54312dd2e7f5e6de3f0759097385a006bb0d16b5/itk_tubetk-1.3.6-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98bcbad1d857a6d6d79e165d15e11c44c4fbf271ce8b283fff78efa35b356226",
                "md5": "d6c41efdebdc48d28bf231fa1d046e25",
                "sha256": "2b91b5fb1da994b5a29c422398fcb4d4188387a4c89f4d1e8b09e3142579605f"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d6c41efdebdc48d28bf231fa1d046e25",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 8043054,
            "upload_time": "2024-01-13T09:34:50",
            "upload_time_iso_8601": "2024-01-13T09:34:50.127750Z",
            "url": "https://files.pythonhosted.org/packages/98/bc/bad1d857a6d6d79e165d15e11c44c4fbf271ce8b283fff78efa35b356226/itk_tubetk-1.3.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24f072e1a286f780706e86509c495639b14af86a1d0478f536e1f33e072ec422",
                "md5": "c20a012f3844448b38e6f12c8163e76f",
                "sha256": "0825b1ebcb0beed5564748d7b16314d4e3265c61808602139d6e179c48423ca9"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c20a012f3844448b38e6f12c8163e76f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 18805371,
            "upload_time": "2024-01-13T09:34:51",
            "upload_time_iso_8601": "2024-01-13T09:34:51.796446Z",
            "url": "https://files.pythonhosted.org/packages/24/f0/72e1a286f780706e86509c495639b14af86a1d0478f536e1f33e072ec422/itk_tubetk-1.3.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f36dded632c5fecdf2ca6b831488dabcc5164ad3b9738a50c698466f2a9ea8f2",
                "md5": "4e8125acaf0e6b4fa4c8c799c4c4b701",
                "sha256": "3900c7d3181860fe11be0b38355032955af9ed31466531a09bafff9b0cd012ce"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e8125acaf0e6b4fa4c8c799c4c4b701",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 19460300,
            "upload_time": "2024-01-13T09:34:54",
            "upload_time_iso_8601": "2024-01-13T09:34:54.613576Z",
            "url": "https://files.pythonhosted.org/packages/f3/6d/ded632c5fecdf2ca6b831488dabcc5164ad3b9738a50c698466f2a9ea8f2/itk_tubetk-1.3.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f401b54a259b593338a46713e0f4168167e2c987b2e9670061fa59860c7c2bc",
                "md5": "ae02c8533ac0f7c9503582e4813c7c16",
                "sha256": "a1ff1e09d5b4b706ba2e18a354c8f6bdc6ad5b78678c1e53ff7af9949a129ec1"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp38-cp38-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ae02c8533ac0f7c9503582e4813c7c16",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 17305210,
            "upload_time": "2024-01-13T09:34:57",
            "upload_time_iso_8601": "2024-01-13T09:34:57.775538Z",
            "url": "https://files.pythonhosted.org/packages/2f/40/1b54a259b593338a46713e0f4168167e2c987b2e9670061fa59860c7c2bc/itk_tubetk-1.3.6-cp38-cp38-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aaa0d375791cf453ecc517d6f5a7627f30b75a57d35a53b072763608938080d7",
                "md5": "bf9abc88d4a3021c3096e954f240606a",
                "sha256": "d9e21576b8324210adb28b859275b3bed2ffb0dc3ea8cafff164a7bbdb19bfbd"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf9abc88d4a3021c3096e954f240606a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 19170130,
            "upload_time": "2024-01-13T09:35:00",
            "upload_time_iso_8601": "2024-01-13T09:35:00.431346Z",
            "url": "https://files.pythonhosted.org/packages/aa/a0/d375791cf453ecc517d6f5a7627f30b75a57d35a53b072763608938080d7/itk_tubetk-1.3.6-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2709bb916039469679bae73a7c83f511988cb5400194d395c2c5577532145070",
                "md5": "35a04341895f09998ff49c12189cc1f8",
                "sha256": "5d98e63cdfadee8159d88f09327aa3c9139c3b5e4cf24144b5038916aa1e4a8a"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "35a04341895f09998ff49c12189cc1f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 8062768,
            "upload_time": "2024-01-13T09:35:02",
            "upload_time_iso_8601": "2024-01-13T09:35:02.904829Z",
            "url": "https://files.pythonhosted.org/packages/27/09/bb916039469679bae73a7c83f511988cb5400194d395c2c5577532145070/itk_tubetk-1.3.6-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca927ee1b4cd8c164008c32b6f710c37725dfd0d2a16f9966b3b32b8eb6496a4",
                "md5": "b82e7c4ae9dc61a944bfa7ea75cb6fac",
                "sha256": "1f14c75d7a2ebf7438cb9c0dd78520d07527d8a80a7876e9d9a3258d070bd904"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b82e7c4ae9dc61a944bfa7ea75cb6fac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 18797973,
            "upload_time": "2024-01-13T09:35:05",
            "upload_time_iso_8601": "2024-01-13T09:35:05.476448Z",
            "url": "https://files.pythonhosted.org/packages/ca/92/7ee1b4cd8c164008c32b6f710c37725dfd0d2a16f9966b3b32b8eb6496a4/itk_tubetk-1.3.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f87d9ea13d463852fbd168dff35e146be12c60980202455518ad6819e90a4f9",
                "md5": "8851f8dcf5f74606e93cad74f3c6ad1c",
                "sha256": "65cee88840b8c4528c8555e13581fd8d34fd3c023706a230398838a22bdbeb9b"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8851f8dcf5f74606e93cad74f3c6ad1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 19418620,
            "upload_time": "2024-01-13T09:35:08",
            "upload_time_iso_8601": "2024-01-13T09:35:08.203590Z",
            "url": "https://files.pythonhosted.org/packages/6f/87/d9ea13d463852fbd168dff35e146be12c60980202455518ad6819e90a4f9/itk_tubetk-1.3.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf57b52cb05746d22175404051cc46befa5bac4f243d1a98436ef1d1578a6049",
                "md5": "4a3c85f80709ff7dd34e66ac2932d0f2",
                "sha256": "43b08b0aa85950a95f1b7265ce064545e2b968e34cb957e312dad479076c4d45"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4a3c85f80709ff7dd34e66ac2932d0f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 17341118,
            "upload_time": "2024-01-13T09:35:10",
            "upload_time_iso_8601": "2024-01-13T09:35:10.967111Z",
            "url": "https://files.pythonhosted.org/packages/bf/57/b52cb05746d22175404051cc46befa5bac4f243d1a98436ef1d1578a6049/itk_tubetk-1.3.6-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4421a1f45bd73637199a5b2e5100b868c80660409bfec6421fc86057acfd9f6a",
                "md5": "8b6503b94b73a63f78fc8277190add68",
                "sha256": "4ae3a2475ed50fb127083550ac02936947a9a6dc39a073cb0ad72d7aa2f09ca4"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b6503b94b73a63f78fc8277190add68",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 19167487,
            "upload_time": "2024-01-13T09:35:13",
            "upload_time_iso_8601": "2024-01-13T09:35:13.709976Z",
            "url": "https://files.pythonhosted.org/packages/44/21/a1f45bd73637199a5b2e5100b868c80660409bfec6421fc86057acfd9f6a/itk_tubetk-1.3.6-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2debd48639ffcb377c2bd584eab7baa2fb4753d18d3382557c2f59871120758b",
                "md5": "c63db7227f101ecb451beecc0826b7dc",
                "sha256": "a92655026337aa2bd4b2dab3bcdd4751e92c8eac573a41e35c86117f1210d75d"
            },
            "downloads": -1,
            "filename": "itk_tubetk-1.3.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c63db7227f101ecb451beecc0826b7dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 8046763,
            "upload_time": "2024-01-13T09:35:15",
            "upload_time_iso_8601": "2024-01-13T09:35:15.904913Z",
            "url": "https://files.pythonhosted.org/packages/2d/eb/d48639ffcb377c2bd584eab7baa2fb4753d18d3382557c2f59871120758b/itk_tubetk-1.3.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-13 09:34:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "InsightSoftwareConsortium",
    "github_project": "ITKTubeTK",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "itk-tubetk"
}
        
Elapsed time: 0.16248s