networkx-algo-common-subtree


Namenetworkx-algo-common-subtree JSON
Version 0.2.1 PyPI version JSON
download
home_pagehttps://github.com/Erotemic/networkx_algo_common_subtree
SummaryA networkx implemention of algorithms to find common ordered subtree minors and isomorphisms
upload_time2024-04-28 05:10:40
maintainerNone
docs_urlNone
authorJon Crall
requires_python>=3.7
licenseApache 2
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            The networkx_algo_common_subtree Module
=======================================

|Pypi| |PypiDownloads| |GithubActions| |Codecov|

Networkx algorithms for maximum common ordered subtree minors (or embedding)
and maximum common subtree isomorphism. Contains pure python and cython
optimized versions.


At its core the ``maximum_common_ordered_subtree_embedding`` function is an implementation of:

.. code:: 

    Lozano, Antoni, and Gabriel Valiente.
        "On the maximum common embedded subtree problem for ordered trees."
        String Algorithmics (2004): 155-170.
        https://pdfs.semanticscholar.org/0b6e/061af02353f7d9b887f9a378be70be64d165.pdf


And ``maximum_common_ordered_subtree_isomorphism`` is a variant of the above
algorithm that returns common subtree ismorphism instead of subtree minors.


Standalone versions of code were originally submitted as PRs to networkx
proper:

https://github.com/networkx/networkx/pull/4350
https://github.com/networkx/networkx/pull/4327


These algorithms are components of algorithms in torch_liberator, see related
information:

+----------------------+------------------------------------------------------------+
| TorchLiberator       | https://gitlab.kitware.com/computer-vision/torch_liberator |
+----------------------+------------------------------------------------------------+
| Torch Hackathon 2021 | `Youtube Video`_ and `Google Slides`_                      |
+----------------------+------------------------------------------------------------+

.. _Youtube Video: https://www.youtube.com/watch?v=GQqtn61iNsc
.. _Google Slides: https://docs.google.com/presentation/d/1w9XHkPjtLRj29dw50WP0rSHRRlEfhksP_Sf8XldTSYE




.. |Pypi| image:: https://img.shields.io/pypi/v/networkx_algo_common_subtree.svg
    :target: https://pypi.python.org/pypi/networkx_algo_common_subtree

.. |PypiDownloads| image:: https://img.shields.io/pypi/dm/networkx_algo_common_subtree.svg
    :target: https://pypistats.org/packages/networkx_algo_common_subtree

.. |GithubActions| image:: https://github.com/Erotemic/networkx_algo_common_subtree/actions/workflows/tests.yml/badge.svg?branch=main
    :target: https://github.com/Erotemic/networkx_algo_common_subtree/actions?query=branch%3Amain

.. |Codecov| image:: https://codecov.io/github/Erotemic/networkx_algo_common_subtree/badge.svg?branch=main&service=github
    :target: https://codecov.io/github/Erotemic/networkx_algo_common_subtree?branch=main

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Erotemic/networkx_algo_common_subtree",
    "name": "networkx-algo-common-subtree",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Jon Crall",
    "author_email": "erotemic@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/12/82/c7117b7cc030b4db32c757623620325bb9c628efa4828f697da4845147f8/networkx_algo_common_subtree-0.2.1.tar.gz",
    "platform": null,
    "description": "The networkx_algo_common_subtree Module\n=======================================\n\n|Pypi| |PypiDownloads| |GithubActions| |Codecov|\n\nNetworkx algorithms for maximum common ordered subtree minors (or embedding)\nand maximum common subtree isomorphism. Contains pure python and cython\noptimized versions.\n\n\nAt its core the ``maximum_common_ordered_subtree_embedding`` function is an implementation of:\n\n.. code:: \n\n    Lozano, Antoni, and Gabriel Valiente.\n        \"On the maximum common embedded subtree problem for ordered trees.\"\n        String Algorithmics (2004): 155-170.\n        https://pdfs.semanticscholar.org/0b6e/061af02353f7d9b887f9a378be70be64d165.pdf\n\n\nAnd ``maximum_common_ordered_subtree_isomorphism`` is a variant of the above\nalgorithm that returns common subtree ismorphism instead of subtree minors.\n\n\nStandalone versions of code were originally submitted as PRs to networkx\nproper:\n\nhttps://github.com/networkx/networkx/pull/4350\nhttps://github.com/networkx/networkx/pull/4327\n\n\nThese algorithms are components of algorithms in torch_liberator, see related\ninformation:\n\n+----------------------+------------------------------------------------------------+\n| TorchLiberator       | https://gitlab.kitware.com/computer-vision/torch_liberator |\n+----------------------+------------------------------------------------------------+\n| Torch Hackathon 2021 | `Youtube Video`_ and `Google Slides`_                      |\n+----------------------+------------------------------------------------------------+\n\n.. _Youtube Video: https://www.youtube.com/watch?v=GQqtn61iNsc\n.. _Google Slides: https://docs.google.com/presentation/d/1w9XHkPjtLRj29dw50WP0rSHRRlEfhksP_Sf8XldTSYE\n\n\n\n\n.. |Pypi| image:: https://img.shields.io/pypi/v/networkx_algo_common_subtree.svg\n    :target: https://pypi.python.org/pypi/networkx_algo_common_subtree\n\n.. |PypiDownloads| image:: https://img.shields.io/pypi/dm/networkx_algo_common_subtree.svg\n    :target: https://pypistats.org/packages/networkx_algo_common_subtree\n\n.. |GithubActions| image:: https://github.com/Erotemic/networkx_algo_common_subtree/actions/workflows/tests.yml/badge.svg?branch=main\n    :target: https://github.com/Erotemic/networkx_algo_common_subtree/actions?query=branch%3Amain\n\n.. |Codecov| image:: https://codecov.io/github/Erotemic/networkx_algo_common_subtree/badge.svg?branch=main&service=github\n    :target: https://codecov.io/github/Erotemic/networkx_algo_common_subtree?branch=main\n",
    "bugtrack_url": null,
    "license": "Apache 2",
    "summary": "A networkx implemention of algorithms to find common ordered subtree minors and isomorphisms",
    "version": "0.2.1",
    "project_urls": {
        "Homepage": "https://github.com/Erotemic/networkx_algo_common_subtree"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "026006feb39c234017aba7604a640fc32ef80576a996cbc016265c5d56db2b12",
                "md5": "7d31089d63ca0518ef159f8fb017305c",
                "sha256": "09d154418a7be99262ef028d547262ea3857246eac441739874f946d8ba1857c"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d31089d63ca0518ef159f8fb017305c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 143396,
            "upload_time": "2024-04-28T05:09:41",
            "upload_time_iso_8601": "2024-04-28T05:09:41.228718Z",
            "url": "https://files.pythonhosted.org/packages/02/60/06feb39c234017aba7604a640fc32ef80576a996cbc016265c5d56db2b12/networkx_algo_common_subtree-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5d1059a4a9221fb882065aed21a97f16be73d370af51a126ae5b9d68960e6f9",
                "md5": "674017bd00e2c44392f00277dd720ef8",
                "sha256": "4aaac1dbcdc9899d2f1a66c7f8b3aba7c1b033ba65761d0ce1f4a326110ab360"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "674017bd00e2c44392f00277dd720ef8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 134947,
            "upload_time": "2024-04-28T05:09:43",
            "upload_time_iso_8601": "2024-04-28T05:09:43.325581Z",
            "url": "https://files.pythonhosted.org/packages/b5/d1/059a4a9221fb882065aed21a97f16be73d370af51a126ae5b9d68960e6f9/networkx_algo_common_subtree-0.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ad0c93fa809f58c5f5880df5342794d1318e9b1d4bc8a5d85c60a97ed977784",
                "md5": "f2fc188f516ba976f32401917547a298",
                "sha256": "a483561a2a264c92f0915f43cfa970a9fe23676ff96211ee9b99d95d0a183027"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f2fc188f516ba976f32401917547a298",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 167176,
            "upload_time": "2024-04-28T05:09:44",
            "upload_time_iso_8601": "2024-04-28T05:09:44.902249Z",
            "url": "https://files.pythonhosted.org/packages/7a/d0/c93fa809f58c5f5880df5342794d1318e9b1d4bc8a5d85c60a97ed977784/networkx_algo_common_subtree-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d408eea8e0d3b286c45de2254adbe87c2a56c69f930692c12d595dfac9fe39c9",
                "md5": "d7b63c2d0b7f4de42c652bb7ccd77693",
                "sha256": "d4ce0001277de61c503eaa8295530946959e09b9b86fd4290561b54f8c571f3c"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d7b63c2d0b7f4de42c652bb7ccd77693",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 169442,
            "upload_time": "2024-04-28T05:09:46",
            "upload_time_iso_8601": "2024-04-28T05:09:46.546347Z",
            "url": "https://files.pythonhosted.org/packages/d4/08/eea8e0d3b286c45de2254adbe87c2a56c69f930692c12d595dfac9fe39c9/networkx_algo_common_subtree-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3f7de060b12a778d00f78c876d78d4676005fdf4e04a96c5cdfefce0c1746a6",
                "md5": "578b7828da3a5d8388590c557cc752c8",
                "sha256": "4edf6dadda669875b9426b980f090dd7e12b7edcc49481bb3c8a42d6a6099329"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "578b7828da3a5d8388590c557cc752c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 174892,
            "upload_time": "2024-04-28T05:09:47",
            "upload_time_iso_8601": "2024-04-28T05:09:47.780305Z",
            "url": "https://files.pythonhosted.org/packages/e3/f7/de060b12a778d00f78c876d78d4676005fdf4e04a96c5cdfefce0c1746a6/networkx_algo_common_subtree-0.2.1-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c4eb58d87311a410b9885fee1db4c1de0b16103e873e8286bb2c915f59f3f46",
                "md5": "44a5f9165c4bcb52c05b59ecb77b7004",
                "sha256": "d37a8d525a3aa238e6050b2da67444d5f922cabb29cd71dce3ee5dc180b0afd2"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44a5f9165c4bcb52c05b59ecb77b7004",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 172218,
            "upload_time": "2024-04-28T05:09:49",
            "upload_time_iso_8601": "2024-04-28T05:09:49.213083Z",
            "url": "https://files.pythonhosted.org/packages/6c/4e/b58d87311a410b9885fee1db4c1de0b16103e873e8286bb2c915f59f3f46/networkx_algo_common_subtree-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a2a9f2f9fd2a4b86011e1f71196bd1ee5b6be198a8ec1ce93ee88b58d18be3f",
                "md5": "bc7fe2cf483ac16aa4f9d7a9ed29aaba",
                "sha256": "01f43759adbb4fb8a780ede78c0e63d81f1003ba68329e67f93bbd3ca2235f1a"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bc7fe2cf483ac16aa4f9d7a9ed29aaba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 128255,
            "upload_time": "2024-04-28T05:09:51",
            "upload_time_iso_8601": "2024-04-28T05:09:51.000564Z",
            "url": "https://files.pythonhosted.org/packages/9a/2a/9f2f9fd2a4b86011e1f71196bd1ee5b6be198a8ec1ce93ee88b58d18be3f/networkx_algo_common_subtree-0.2.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f75b2c32292c972fe05f78636452aa8060ecb967090ceac0e118317340a64d33",
                "md5": "db19a7e14b39ea0d328d611249026c4b",
                "sha256": "9384f79fc707b0af951fc579a6e4a6c8544dc4a3d8176d00b47b10a11734cc37"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db19a7e14b39ea0d328d611249026c4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 143234,
            "upload_time": "2024-04-28T05:09:52",
            "upload_time_iso_8601": "2024-04-28T05:09:52.534684Z",
            "url": "https://files.pythonhosted.org/packages/f7/5b/2c32292c972fe05f78636452aa8060ecb967090ceac0e118317340a64d33/networkx_algo_common_subtree-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e5a3ee296a8c22e07c07ff6494ae334c40f5eeaa4354fcfc4a99b342d4d0325",
                "md5": "5c7e21fa050f27dd51558e084a801591",
                "sha256": "a3be316f7201ec6f97c8e9cf42a6db38207046f658fc4c4ac51f96b2d491427e"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5c7e21fa050f27dd51558e084a801591",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 134450,
            "upload_time": "2024-04-28T05:09:54",
            "upload_time_iso_8601": "2024-04-28T05:09:54.138343Z",
            "url": "https://files.pythonhosted.org/packages/6e/5a/3ee296a8c22e07c07ff6494ae334c40f5eeaa4354fcfc4a99b342d4d0325/networkx_algo_common_subtree-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "889af77ea9de9c65a5c48b2e1381a0b390ad3f586e289bc5f63b340fe020fd13",
                "md5": "791e0196113a420bb089071429dc9ff7",
                "sha256": "2ba0871fdd84fdff261485242f522d0f70d8c4b70229700ae01759f155d22c51"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "791e0196113a420bb089071429dc9ff7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 171944,
            "upload_time": "2024-04-28T05:09:55",
            "upload_time_iso_8601": "2024-04-28T05:09:55.896900Z",
            "url": "https://files.pythonhosted.org/packages/88/9a/f77ea9de9c65a5c48b2e1381a0b390ad3f586e289bc5f63b340fe020fd13/networkx_algo_common_subtree-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58ab2a847f6c41ef6c660bf960afd4c6dd46677faaee181c6a8f34c67706c3a2",
                "md5": "9770e10510566856ef020c3814ad6ebd",
                "sha256": "d2b3d91eaa254c50c217615d6c7e43eea686d471ab5c2939920f9d53d2e49224"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9770e10510566856ef020c3814ad6ebd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 173573,
            "upload_time": "2024-04-28T05:09:57",
            "upload_time_iso_8601": "2024-04-28T05:09:57.571161Z",
            "url": "https://files.pythonhosted.org/packages/58/ab/2a847f6c41ef6c660bf960afd4c6dd46677faaee181c6a8f34c67706c3a2/networkx_algo_common_subtree-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91b94422a1ed025ed32f4c350a8224597d5943a72646cc071959e54b93604554",
                "md5": "ba22b5df2d1509262dc578ad8730a57c",
                "sha256": "ad24a37bb0fae19fd66e0109c34adf8c69ed9a1dbb08ae246eaa7faf9711e052"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ba22b5df2d1509262dc578ad8730a57c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 174312,
            "upload_time": "2024-04-28T05:09:59",
            "upload_time_iso_8601": "2024-04-28T05:09:59.149430Z",
            "url": "https://files.pythonhosted.org/packages/91/b9/4422a1ed025ed32f4c350a8224597d5943a72646cc071959e54b93604554/networkx_algo_common_subtree-0.2.1-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d3439451b3c61deafdeec48c628485006b199a0b8fe93470c69f6f99610e952",
                "md5": "aac88fc990504173cfeb8444a25110b2",
                "sha256": "704b4016224a4023cf1e5a2e0145f9c79a046d9b198e95fab7b83c047793309a"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aac88fc990504173cfeb8444a25110b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 172140,
            "upload_time": "2024-04-28T05:10:01",
            "upload_time_iso_8601": "2024-04-28T05:10:01.367782Z",
            "url": "https://files.pythonhosted.org/packages/8d/34/39451b3c61deafdeec48c628485006b199a0b8fe93470c69f6f99610e952/networkx_algo_common_subtree-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af09393b7339edced5bf4da70b4147090fe1c8de37d7dbfb695042e4eba1cb96",
                "md5": "f076c1974c67878c580aa14caf7e1f1d",
                "sha256": "294bb18122b704751942988c03c49d0b6d1b0acd5e66e9222e2de8c119537928"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f076c1974c67878c580aa14caf7e1f1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 128531,
            "upload_time": "2024-04-28T05:10:02",
            "upload_time_iso_8601": "2024-04-28T05:10:02.757643Z",
            "url": "https://files.pythonhosted.org/packages/af/09/393b7339edced5bf4da70b4147090fe1c8de37d7dbfb695042e4eba1cb96/networkx_algo_common_subtree-0.2.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec8d03c9b4238ed5d35f10fe601e9bb005be1b25d710f5bedbe60c615a311dc0",
                "md5": "4492c8cccff4edf27ab02885df689b75",
                "sha256": "577f94db733bf3303446a5b5ed53f9eb101739eb4f46f857f42ae3fd8dfc0d83"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4492c8cccff4edf27ab02885df689b75",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 145268,
            "upload_time": "2024-04-28T05:10:03",
            "upload_time_iso_8601": "2024-04-28T05:10:03.811902Z",
            "url": "https://files.pythonhosted.org/packages/ec/8d/03c9b4238ed5d35f10fe601e9bb005be1b25d710f5bedbe60c615a311dc0/networkx_algo_common_subtree-0.2.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b910657f28f61f65ee891296311073459b63d860564108410124aaf4347e834",
                "md5": "cbb79d6402a2f90aceb67b53abb0b32d",
                "sha256": "06db405ea2a09625d96c473e197ce56ae8f69b87e11a334044cdf4206ff2a5fe"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cbb79d6402a2f90aceb67b53abb0b32d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 138460,
            "upload_time": "2024-04-28T05:10:04",
            "upload_time_iso_8601": "2024-04-28T05:10:04.936940Z",
            "url": "https://files.pythonhosted.org/packages/8b/91/0657f28f61f65ee891296311073459b63d860564108410124aaf4347e834/networkx_algo_common_subtree-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea70542dcb75f00ad0cee80474f9571885a7f762e80570e3f6181ca1fbd34735",
                "md5": "b062cfac0823654d3990c0a734049c7e",
                "sha256": "d894baec9f54cf8ac71bcc621fb4d53ca4cb8da383c41af9efc780a479bdb778"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b062cfac0823654d3990c0a734049c7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 171098,
            "upload_time": "2024-04-28T05:10:06",
            "upload_time_iso_8601": "2024-04-28T05:10:06.087339Z",
            "url": "https://files.pythonhosted.org/packages/ea/70/542dcb75f00ad0cee80474f9571885a7f762e80570e3f6181ca1fbd34735/networkx_algo_common_subtree-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b74fed298729567361865921d40de0d0a36663027071f069db5d13c571aa61d0",
                "md5": "04192722b88adc8b6ff504bd1f6c3a09",
                "sha256": "defcc41d720623a79054589e9073d9703aefa3a7f86d8ad53ec9ccd531daab93"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "04192722b88adc8b6ff504bd1f6c3a09",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 172004,
            "upload_time": "2024-04-28T05:10:07",
            "upload_time_iso_8601": "2024-04-28T05:10:07.228540Z",
            "url": "https://files.pythonhosted.org/packages/b7/4f/ed298729567361865921d40de0d0a36663027071f069db5d13c571aa61d0/networkx_algo_common_subtree-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0767b0f20ddd881ec26a8cb87c27964cc4310c43ab460047b37a2821f4e932bb",
                "md5": "9b815323020d3ab03ebaa3bc6d1219b2",
                "sha256": "01b475cdc64471cba93402f300f8126541aee562a37350ab31a433968cb4ec74"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9b815323020d3ab03ebaa3bc6d1219b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 172653,
            "upload_time": "2024-04-28T05:10:08",
            "upload_time_iso_8601": "2024-04-28T05:10:08.998545Z",
            "url": "https://files.pythonhosted.org/packages/07/67/b0f20ddd881ec26a8cb87c27964cc4310c43ab460047b37a2821f4e932bb/networkx_algo_common_subtree-0.2.1-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "812344ae947ff0a5490c77913a21d7892b37b6ad6185007f945e7361f53565dd",
                "md5": "6b96fab6e3ff71d6a892d8aec6644296",
                "sha256": "a4e59660611e119f85f285bb3f8613e28f99dd8738ca87c7f91e7efee187b9a7"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b96fab6e3ff71d6a892d8aec6644296",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 173487,
            "upload_time": "2024-04-28T05:10:10",
            "upload_time_iso_8601": "2024-04-28T05:10:10.210938Z",
            "url": "https://files.pythonhosted.org/packages/81/23/44ae947ff0a5490c77913a21d7892b37b6ad6185007f945e7361f53565dd/networkx_algo_common_subtree-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e01d989aee1887ddc638446eb4320c2704167f8497874a869f1edf49b3928fd",
                "md5": "18b7ac809477d0d450e3b66ad87740db",
                "sha256": "35dbfe612b204d96cf2b000528a7bdb0c51a85047548c3180740ca62beb6460b"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "18b7ac809477d0d450e3b66ad87740db",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 129359,
            "upload_time": "2024-04-28T05:10:11",
            "upload_time_iso_8601": "2024-04-28T05:10:11.878815Z",
            "url": "https://files.pythonhosted.org/packages/3e/01/d989aee1887ddc638446eb4320c2704167f8497874a869f1edf49b3928fd/networkx_algo_common_subtree-0.2.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d3ff51b8ae1c98a574772024634f49cd0c0506215093c81a8dda149133384bf",
                "md5": "9451fa93df09097c224fd5a459d1fc0c",
                "sha256": "6bc681e5101617163d8bbaaf3f4bf1c03277db98b33a0c6b295f0435074ffab3"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9451fa93df09097c224fd5a459d1fc0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 143103,
            "upload_time": "2024-04-28T05:10:13",
            "upload_time_iso_8601": "2024-04-28T05:10:13.589143Z",
            "url": "https://files.pythonhosted.org/packages/5d/3f/f51b8ae1c98a574772024634f49cd0c0506215093c81a8dda149133384bf/networkx_algo_common_subtree-0.2.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10bbcf40f853a5a5f15027680000c408fe4a773e852ec312c4c83e33fec189be",
                "md5": "4b4bade3fcf622eb0b32f6c121c4d729",
                "sha256": "2d8170d3873e43c20b419aa959c7b34a7e3720e125b7aa2794a458f811e01c35"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b4bade3fcf622eb0b32f6c121c4d729",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 160934,
            "upload_time": "2024-04-28T05:10:14",
            "upload_time_iso_8601": "2024-04-28T05:10:14.751569Z",
            "url": "https://files.pythonhosted.org/packages/10/bb/cf40f853a5a5f15027680000c408fe4a773e852ec312c4c83e33fec189be/networkx_algo_common_subtree-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af10ac8ddf7bd0cf5037a7669ab88682d04cf29651f747ca87691180373a27fd",
                "md5": "53edee0c3d3ed673919c9c8f778c627a",
                "sha256": "758ec684d6c362a6873e9d5681e85a4effaf4d03a766eebc49a9f9d647c1263e"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "53edee0c3d3ed673919c9c8f778c627a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 162185,
            "upload_time": "2024-04-28T05:10:15",
            "upload_time_iso_8601": "2024-04-28T05:10:15.975964Z",
            "url": "https://files.pythonhosted.org/packages/af/10/ac8ddf7bd0cf5037a7669ab88682d04cf29651f747ca87691180373a27fd/networkx_algo_common_subtree-0.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3544a5fdcb8ae52c7bb2f7e439777aff1a8f3cabb131743fef6c41acdb94b3c",
                "md5": "35ec80ac7aafc6da2639a6ea5b032114",
                "sha256": "a106901df7f022a1b4494d797ab8b28aa526b1fa2fc7f971200c0ac7c7856bea"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "35ec80ac7aafc6da2639a6ea5b032114",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 162094,
            "upload_time": "2024-04-28T05:10:17",
            "upload_time_iso_8601": "2024-04-28T05:10:17.783132Z",
            "url": "https://files.pythonhosted.org/packages/e3/54/4a5fdcb8ae52c7bb2f7e439777aff1a8f3cabb131743fef6c41acdb94b3c/networkx_algo_common_subtree-0.2.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e345c2b08f008af28b48bd0acb4533e2fe4370900fc57b1d7b4dac263e45d542",
                "md5": "2390c7a6480226d3935d955e0587cc77",
                "sha256": "59543d09a87a75b7d8b4466c7b67a53f4c4b6c10befa605f88d68b2fc8403666"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2390c7a6480226d3935d955e0587cc77",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 161185,
            "upload_time": "2024-04-28T05:10:19",
            "upload_time_iso_8601": "2024-04-28T05:10:19.440545Z",
            "url": "https://files.pythonhosted.org/packages/e3/45/c2b08f008af28b48bd0acb4533e2fe4370900fc57b1d7b4dac263e45d542/networkx_algo_common_subtree-0.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1fae72548b76883123b174712ecf90ccd5abbcfa881bc214f7894a2993aed00",
                "md5": "56637d3727a5a29c2b1db7f823a82be6",
                "sha256": "ceefaf2f1912ac826673dabe3e399f9e569fe3501c16c818afa823d40d5a67cf"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "56637d3727a5a29c2b1db7f823a82be6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 130190,
            "upload_time": "2024-04-28T05:10:20",
            "upload_time_iso_8601": "2024-04-28T05:10:20.529448Z",
            "url": "https://files.pythonhosted.org/packages/f1/fa/e72548b76883123b174712ecf90ccd5abbcfa881bc214f7894a2993aed00/networkx_algo_common_subtree-0.2.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a0013420844f1b721fdc40488f5235aaf0fa3101f7ef6d1beffa3146c49af0d",
                "md5": "116084d49b701e1206102c1861e1c676",
                "sha256": "f11704ad20b935a87e3fc8b1500952f7f0e18a0fb0e76f1b0ed0866e91722e41"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "116084d49b701e1206102c1861e1c676",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 143675,
            "upload_time": "2024-04-28T05:10:21",
            "upload_time_iso_8601": "2024-04-28T05:10:21.519568Z",
            "url": "https://files.pythonhosted.org/packages/4a/00/13420844f1b721fdc40488f5235aaf0fa3101f7ef6d1beffa3146c49af0d/networkx_algo_common_subtree-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a963591b42890871b2482ecbf2e73e4358158aeb993b37e51899f21958a8a7ff",
                "md5": "d76225090abe755130e35add6a6c9b24",
                "sha256": "9c6a5d5a9d64e1382da176bb4d00ec25063d5cded777e91b699ea39aa9596331"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d76225090abe755130e35add6a6c9b24",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 135297,
            "upload_time": "2024-04-28T05:10:22",
            "upload_time_iso_8601": "2024-04-28T05:10:22.689466Z",
            "url": "https://files.pythonhosted.org/packages/a9/63/591b42890871b2482ecbf2e73e4358158aeb993b37e51899f21958a8a7ff/networkx_algo_common_subtree-0.2.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb1dc584f5de29a57a8558835c6422e85d9c6d0678362b55867f30189e966ac7",
                "md5": "e5fa5c383687c739bbb99713fd202f67",
                "sha256": "be2c0e3da4a55c4c68761574a96fcdedf217a8b7543f61416fba4011239349e9"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5fa5c383687c739bbb99713fd202f67",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 166382,
            "upload_time": "2024-04-28T05:10:23",
            "upload_time_iso_8601": "2024-04-28T05:10:23.733569Z",
            "url": "https://files.pythonhosted.org/packages/cb/1d/c584f5de29a57a8558835c6422e85d9c6d0678362b55867f30189e966ac7/networkx_algo_common_subtree-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34e6d5fab579103e386a8c43012628cb8941cac319680b800af9549eeeffb2dc",
                "md5": "b86a1269068527d0d5db6e24e25bf517",
                "sha256": "a3c9cd1fb8dd4906b79f248aae66c1efc2b69183c61b10402aa328350e343474"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b86a1269068527d0d5db6e24e25bf517",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 168570,
            "upload_time": "2024-04-28T05:10:25",
            "upload_time_iso_8601": "2024-04-28T05:10:25.515197Z",
            "url": "https://files.pythonhosted.org/packages/34/e6/d5fab579103e386a8c43012628cb8941cac319680b800af9549eeeffb2dc/networkx_algo_common_subtree-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15b7982f58020288eae418bda9ce2305f24236edfeec15c22822aaa7141bf0e2",
                "md5": "f082e61e1337e04a29bf62e6bc23ac42",
                "sha256": "efa4c284f81ad39af16a21804d50b2761a5c52ba7ce8005e64eec906223ce4dd"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f082e61e1337e04a29bf62e6bc23ac42",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 167751,
            "upload_time": "2024-04-28T05:10:26",
            "upload_time_iso_8601": "2024-04-28T05:10:26.540317Z",
            "url": "https://files.pythonhosted.org/packages/15/b7/982f58020288eae418bda9ce2305f24236edfeec15c22822aaa7141bf0e2/networkx_algo_common_subtree-0.2.1-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7d5645ac521268b0fa698b42356e0a5899e8548de28df2b98fa5c104b77db41",
                "md5": "e91544762779b0967c35506ee7ca41c0",
                "sha256": "6ba9f5bbaec163c740bc4fdf3bbed0d3f864e163eda207cd076cffad91abd3a3"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e91544762779b0967c35506ee7ca41c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 166681,
            "upload_time": "2024-04-28T05:10:28",
            "upload_time_iso_8601": "2024-04-28T05:10:28.126790Z",
            "url": "https://files.pythonhosted.org/packages/b7/d5/645ac521268b0fa698b42356e0a5899e8548de28df2b98fa5c104b77db41/networkx_algo_common_subtree-0.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b481adb8fcebefd0ab9e110c66e8d514251bdc8132ac3b569c611da1bc36f33b",
                "md5": "d1a76c43a6b63d1b5357faaa650e6a03",
                "sha256": "98e0214a97ed3baa31aa1ad3da56f06d87a13a234b18af7c2b634765c630ebd9"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d1a76c43a6b63d1b5357faaa650e6a03",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 128661,
            "upload_time": "2024-04-28T05:10:29",
            "upload_time_iso_8601": "2024-04-28T05:10:29.130714Z",
            "url": "https://files.pythonhosted.org/packages/b4/81/adb8fcebefd0ab9e110c66e8d514251bdc8132ac3b569c611da1bc36f33b/networkx_algo_common_subtree-0.2.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce09498dc800e6072174da529ee8944534218013dfd4397c4a07d54e2cf1afb9",
                "md5": "b21f789cf0f22c0fd33755b0c05f6c08",
                "sha256": "1a72c86d13a57d3cd3035420a43e58773fc8cc2fa21e7d94cb215f07f43882a3"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b21f789cf0f22c0fd33755b0c05f6c08",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 143390,
            "upload_time": "2024-04-28T05:10:30",
            "upload_time_iso_8601": "2024-04-28T05:10:30.794328Z",
            "url": "https://files.pythonhosted.org/packages/ce/09/498dc800e6072174da529ee8944534218013dfd4397c4a07d54e2cf1afb9/networkx_algo_common_subtree-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0175f0795607cb188ab9622de5d717b7fe2e00697d6cc6f1c55a078aa535a40",
                "md5": "073caf3753bda2e30ba9b98b9b58e298",
                "sha256": "b77fc7e95b76a072288591cb49de2230b0e8253c4e106189fa91a2e2f47e65a8"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "073caf3753bda2e30ba9b98b9b58e298",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 134948,
            "upload_time": "2024-04-28T05:10:32",
            "upload_time_iso_8601": "2024-04-28T05:10:32.537214Z",
            "url": "https://files.pythonhosted.org/packages/d0/17/5f0795607cb188ab9622de5d717b7fe2e00697d6cc6f1c55a078aa535a40/networkx_algo_common_subtree-0.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5fa68f60ffc303eacf9d08c9c41b4adbd63e1df1a1efe141655ea1657a71e14",
                "md5": "74b6f31a55255f5d3773f39418b66ead",
                "sha256": "c519219fcee465dad38389bf3b2e1e2997d2d431eeee80249af48cda81d54161"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74b6f31a55255f5d3773f39418b66ead",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 167145,
            "upload_time": "2024-04-28T05:10:33",
            "upload_time_iso_8601": "2024-04-28T05:10:33.559803Z",
            "url": "https://files.pythonhosted.org/packages/f5/fa/68f60ffc303eacf9d08c9c41b4adbd63e1df1a1efe141655ea1657a71e14/networkx_algo_common_subtree-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "143eff89d298fb381a07b4cb4c314f7acd7812deaa18eb2c963a087f80b95c7c",
                "md5": "4a89522581106a0b31ca98a4f8ee6192",
                "sha256": "163a37892f6eac848509af3266a6906264cd47ae4e7d3def1a44ea9f1f40b743"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4a89522581106a0b31ca98a4f8ee6192",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 169279,
            "upload_time": "2024-04-28T05:10:34",
            "upload_time_iso_8601": "2024-04-28T05:10:34.620355Z",
            "url": "https://files.pythonhosted.org/packages/14/3e/ff89d298fb381a07b4cb4c314f7acd7812deaa18eb2c963a087f80b95c7c/networkx_algo_common_subtree-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c64d590bfd6684af6a146fdb745b3fb69685d14e63a0013edc107bac54cbd03",
                "md5": "75457ba4e4277aa39b4ccc6870d0a800",
                "sha256": "13a6a2f26a85d5fc38acf5ecc171ffbef952b1c37bbd68b9498978aeed78577c"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "75457ba4e4277aa39b4ccc6870d0a800",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 174880,
            "upload_time": "2024-04-28T05:10:36",
            "upload_time_iso_8601": "2024-04-28T05:10:36.442945Z",
            "url": "https://files.pythonhosted.org/packages/2c/64/d590bfd6684af6a146fdb745b3fb69685d14e63a0013edc107bac54cbd03/networkx_algo_common_subtree-0.2.1-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "725d40e0e8360f14ef7ebdd9c8ad7db0dee95e1c05f326e23dae9c8b76c70112",
                "md5": "6db558f6a7d3912a479b1d23e9f213aa",
                "sha256": "0a9f0df38fb16e9596156f3c8224fdac200fafafc6fc36ea45e054da67f5af9d"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6db558f6a7d3912a479b1d23e9f213aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 172195,
            "upload_time": "2024-04-28T05:10:38",
            "upload_time_iso_8601": "2024-04-28T05:10:38.796349Z",
            "url": "https://files.pythonhosted.org/packages/72/5d/40e0e8360f14ef7ebdd9c8ad7db0dee95e1c05f326e23dae9c8b76c70112/networkx_algo_common_subtree-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "766afa7b9a01f7be4506ded2c728f9322e4c4482ff3014dcebc32e72652cbe03",
                "md5": "fdb0aa2464a19033e8fb3b3fae94ec2a",
                "sha256": "75a2305f71a052fc5847daceb91fa762ae8ecb6b9383848143d639d6849c5e54"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fdb0aa2464a19033e8fb3b3fae94ec2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 128252,
            "upload_time": "2024-04-28T05:10:39",
            "upload_time_iso_8601": "2024-04-28T05:10:39.889649Z",
            "url": "https://files.pythonhosted.org/packages/76/6a/fa7b9a01f7be4506ded2c728f9322e4c4482ff3014dcebc32e72652cbe03/networkx_algo_common_subtree-0.2.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1282c7117b7cc030b4db32c757623620325bb9c628efa4828f697da4845147f8",
                "md5": "d5a8ca50948ad88158e25b59f745a79e",
                "sha256": "120254f2dadf0021a7ff08f287a4570f660f5e5a683343f678852bc3afc780c6"
            },
            "downloads": -1,
            "filename": "networkx_algo_common_subtree-0.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d5a8ca50948ad88158e25b59f745a79e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 85119,
            "upload_time": "2024-04-28T05:10:40",
            "upload_time_iso_8601": "2024-04-28T05:10:40.895832Z",
            "url": "https://files.pythonhosted.org/packages/12/82/c7117b7cc030b4db32c757623620325bb9c628efa4828f697da4845147f8/networkx_algo_common_subtree-0.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-28 05:10:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Erotemic",
    "github_project": "networkx_algo_common_subtree",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "networkx-algo-common-subtree"
}
        
Elapsed time: 0.23523s