gtdb-tree


Namegtdb-tree JSON
Version 0.1.9 PyPI version JSON
download
home_pagehttps://github.com/eric9n/gtdb_tree
SummaryA Python package for parsing GTDB trees using Rust
upload_time2024-09-07 11:48:15
maintainerNone
docs_urlNone
authordagou <eric9n@gmail.com>
requires_python>=3.8
licenseMIT
keywords gtdb tree parser rust
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # gtdb_tree

A library for parsing Newick format files, especially GTDB tree files.

## Features

- Parse Newick formatted strings into a structured representation of trees.
- Handle various formats of Newick strings, including those with bootstrap values and distances.

## Installation

Add this crate to your `Cargo.toml`:

```toml
[dependencies]
gtdb_tree = "0.1.9"
```

## Usage

Here's a simple example of how to use the library:

```rust
use gtdb_tree::tree::parse_tree;

fn main() {
    let newick_str = "((A:0.1,B:0.2):0.3,C:0.4);";
    match parse_tree(newick_str) {
        Ok(nodes) => println!("Parsed nodes: {:?}", nodes),
        Err(e) => println!("Error parsing: {:?}", e),
    }
}
```

## Python Usage
A Python package for parsing GTDB trees using Rust.

## Installation

```
pip install gtdb_tree
```

```python
import gtdb_tree

result = gtdb_tree.parse_tree("((A:0.1,B:0.2):0.3,C:0.4);")
print(result)
```

## Advanced Usage
### Custom Node Parser
You can provide a custom parser function to handle special node formats:

```python
import gtdb_tree

def custom_parser(node_str):
    # Custom parsing logic
    name, length = node_str.split(':')
    return name, 100.0, float(length)  # name, bootstrap, length

result = gtdb_tree.parse_tree("((A:0.1,B:0.2):0.3,C:0.4);", custom_parser=custom_parser)
print(result)
```

## Working with Node Objects
## Each Node object in the result has the following attributes:

* id: Unique identifier for the node
* name: Name of the node
* bootstrap: Bootstrap value (if available)
* length: Branch length
* parent: ID of the parent node


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/eric9n/gtdb_tree",
    "name": "gtdb-tree",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "gtdb, tree, parser, rust",
    "author": "dagou <eric9n@gmail.com>",
    "author_email": "dagou <eric9n@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/ea/62/5eacfb795d712f0fdf47d2a423dab2cf577b7eacf0c21feccbbf45cca55f/gtdb_tree-0.1.9.tar.gz",
    "platform": null,
    "description": "# gtdb_tree\n\nA library for parsing Newick format files, especially GTDB tree files.\n\n## Features\n\n- Parse Newick formatted strings into a structured representation of trees.\n- Handle various formats of Newick strings, including those with bootstrap values and distances.\n\n## Installation\n\nAdd this crate to your `Cargo.toml`:\n\n```toml\n[dependencies]\ngtdb_tree = \"0.1.9\"\n```\n\n## Usage\n\nHere's a simple example of how to use the library:\n\n```rust\nuse gtdb_tree::tree::parse_tree;\n\nfn main() {\n    let newick_str = \"((A:0.1,B:0.2):0.3,C:0.4);\";\n    match parse_tree(newick_str) {\n        Ok(nodes) => println!(\"Parsed nodes: {:?}\", nodes),\n        Err(e) => println!(\"Error parsing: {:?}\", e),\n    }\n}\n```\n\n## Python Usage\nA Python package for parsing GTDB trees using Rust.\n\n## Installation\n\n```\npip install gtdb_tree\n```\n\n```python\nimport gtdb_tree\n\nresult = gtdb_tree.parse_tree(\"((A:0.1,B:0.2):0.3,C:0.4);\")\nprint(result)\n```\n\n## Advanced Usage\n### Custom Node Parser\nYou can provide a custom parser function to handle special node formats:\n\n```python\nimport gtdb_tree\n\ndef custom_parser(node_str):\n    # Custom parsing logic\n    name, length = node_str.split(':')\n    return name, 100.0, float(length)  # name, bootstrap, length\n\nresult = gtdb_tree.parse_tree(\"((A:0.1,B:0.2):0.3,C:0.4);\", custom_parser=custom_parser)\nprint(result)\n```\n\n## Working with Node Objects\n## Each Node object in the result has the following attributes:\n\n* id: Unique identifier for the node\n* name: Name of the node\n* bootstrap: Bootstrap value (if available)\n* length: Branch length\n* parent: ID of the parent node\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Python package for parsing GTDB trees using Rust",
    "version": "0.1.9",
    "project_urls": {
        "Homepage": "https://github.com/eric9n/gtdb_tree"
    },
    "split_keywords": [
        "gtdb",
        " tree",
        " parser",
        " rust"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30a013fb75334e94a49b67c35b4c39a9a35c4e86778b74d10d43cdd0e2ba44bc",
                "md5": "0e3e5fe875a2711b976980aff98f63d2",
                "sha256": "0547f2004afbd3406456e51f4e447102e8ab6d0aac95fe4e69c833368739c520"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0e3e5fe875a2711b976980aff98f63d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 237473,
            "upload_time": "2024-09-07T11:46:01",
            "upload_time_iso_8601": "2024-09-07T11:46:01.340303Z",
            "url": "https://files.pythonhosted.org/packages/30/a0/13fb75334e94a49b67c35b4c39a9a35c4e86778b74d10d43cdd0e2ba44bc/gtdb_tree-0.1.9-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4adf5165f2acb13a3ef39d8778e8db294b057d027571272eed029ef5718d9dbf",
                "md5": "2443ee47e0fd33289fb19361ddd54f00",
                "sha256": "a2f9ad55e51abf4cfb279465108b28e1356bda04d9e0ce5b8005a9067217c300"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2443ee47e0fd33289fb19361ddd54f00",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 282276,
            "upload_time": "2024-09-07T11:46:02",
            "upload_time_iso_8601": "2024-09-07T11:46:02.978359Z",
            "url": "https://files.pythonhosted.org/packages/4a/df/5165f2acb13a3ef39d8778e8db294b057d027571272eed029ef5718d9dbf/gtdb_tree-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d1825c40ee64cbad38f26f87c29ae31bd048bdb76c01fbb9cd3bf4620ce018b",
                "md5": "11ced28b8e764d8c88da4d859721a8d6",
                "sha256": "be194249685d335518c5a42c2184a86614c0ef47724f255bca85931ea9887bcb"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "11ced28b8e764d8c88da4d859721a8d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 287350,
            "upload_time": "2024-09-07T11:46:04",
            "upload_time_iso_8601": "2024-09-07T11:46:04.530201Z",
            "url": "https://files.pythonhosted.org/packages/7d/18/25c40ee64cbad38f26f87c29ae31bd048bdb76c01fbb9cd3bf4620ce018b/gtdb_tree-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a856de242ffb28463dee11c0f3f125796a73630318ae1f7541e9ab8e3eb734b",
                "md5": "70e48175d34227c93a1b078bf5e28275",
                "sha256": "d0a08b6d827e0d0ffc4f9015c80a33245b386942eab92d5b7e9a53bd00965310"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "70e48175d34227c93a1b078bf5e28275",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 313160,
            "upload_time": "2024-09-07T11:46:06",
            "upload_time_iso_8601": "2024-09-07T11:46:06.110810Z",
            "url": "https://files.pythonhosted.org/packages/3a/85/6de242ffb28463dee11c0f3f125796a73630318ae1f7541e9ab8e3eb734b/gtdb_tree-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f3702457865476f89b532c8df59729975a046b5d575bd21c18e1ae1d07d97f5",
                "md5": "41dc37330fdebda4d0747e77b174f5cc",
                "sha256": "869862854f087bdb4f74d5866817e1466e9f0f78ac6cb8f4555e6506dcd81966"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "41dc37330fdebda4d0747e77b174f5cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 322466,
            "upload_time": "2024-09-07T11:46:07",
            "upload_time_iso_8601": "2024-09-07T11:46:07.901143Z",
            "url": "https://files.pythonhosted.org/packages/0f/37/02457865476f89b532c8df59729975a046b5d575bd21c18e1ae1d07d97f5/gtdb_tree-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6829ed9055b9fe79cb1352a084213e447df424697149a7a964397c92955a2af",
                "md5": "363505f1398037737ab9e96628b62965",
                "sha256": "3826f3f17ca33ee9bb073946b2bdcdd7597c713abf38826441ca6fe31ed89ea5"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "363505f1398037737ab9e96628b62965",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 276549,
            "upload_time": "2024-09-07T11:46:09",
            "upload_time_iso_8601": "2024-09-07T11:46:09.925250Z",
            "url": "https://files.pythonhosted.org/packages/e6/82/9ed9055b9fe79cb1352a084213e447df424697149a7a964397c92955a2af/gtdb_tree-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c61593a54d592044308c50be9dea6fc54252bcfa8e9422817049b075ea7e994",
                "md5": "09139481de686595685ab328e9f6342d",
                "sha256": "98ef5d4c5428d7fbe8851a8bed158c8849f74012f070801b86083afe0aa752e9"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "09139481de686595685ab328e9f6342d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 289218,
            "upload_time": "2024-09-07T11:46:11",
            "upload_time_iso_8601": "2024-09-07T11:46:11.428669Z",
            "url": "https://files.pythonhosted.org/packages/1c/61/593a54d592044308c50be9dea6fc54252bcfa8e9422817049b075ea7e994/gtdb_tree-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f9ba458053a55db52c80a96818949c6bdda3f28ec6abb9ce4dc883c183501b0",
                "md5": "8e3f23fd0705e73c0d4a5b7cd2913789",
                "sha256": "52fc9df52704cafa189491cbdab2c46f1697e59fd8088410e5a805768963a126"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8e3f23fd0705e73c0d4a5b7cd2913789",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 459438,
            "upload_time": "2024-09-07T11:46:12",
            "upload_time_iso_8601": "2024-09-07T11:46:12.670355Z",
            "url": "https://files.pythonhosted.org/packages/2f/9b/a458053a55db52c80a96818949c6bdda3f28ec6abb9ce4dc883c183501b0/gtdb_tree-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4b8c61aaf2d9d2ee67f6324013b0c3935de2227c57097622b9648cf7183971f",
                "md5": "a57c0a5348e82c2e94d15ecdc634f212",
                "sha256": "5b4a8fbb6a9c91fe655473ba8a6d43f22fe53f01241e2e149d80faa5e442c6e7"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a57c0a5348e82c2e94d15ecdc634f212",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 542637,
            "upload_time": "2024-09-07T11:46:14",
            "upload_time_iso_8601": "2024-09-07T11:46:14.712932Z",
            "url": "https://files.pythonhosted.org/packages/d4/b8/c61aaf2d9d2ee67f6324013b0c3935de2227c57097622b9648cf7183971f/gtdb_tree-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2580b1651c9c09b059b29e710413d6f48efc03ae9e5c3d819d70e80c24f62571",
                "md5": "1ac60d858481ff6fc80ce361367e82ee",
                "sha256": "f49cb8acdd658e2a32a3a0ecafaee6c32acf5ec4cfa7c82a2fe2c3fe0792b311"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1ac60d858481ff6fc80ce361367e82ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 463855,
            "upload_time": "2024-09-07T11:46:16",
            "upload_time_iso_8601": "2024-09-07T11:46:16.380155Z",
            "url": "https://files.pythonhosted.org/packages/25/80/b1651c9c09b059b29e710413d6f48efc03ae9e5c3d819d70e80c24f62571/gtdb_tree-0.1.9-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb74a79814daec6d5d4e8cac224ee78a28250a6c25f294389a35efe52c3d8aa4",
                "md5": "054ece65296fe324e4ea6205a3d299d2",
                "sha256": "9fcb068ae404d68d73c8d7d9fae8ff455e089e9b43a7c2a48512655a6c087c35"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "054ece65296fe324e4ea6205a3d299d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 444784,
            "upload_time": "2024-09-07T11:46:17",
            "upload_time_iso_8601": "2024-09-07T11:46:17.479705Z",
            "url": "https://files.pythonhosted.org/packages/eb/74/a79814daec6d5d4e8cac224ee78a28250a6c25f294389a35efe52c3d8aa4/gtdb_tree-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9c150a55127ac7c6fc63931855c0dd359a1cbe400d52de6b48ea09a1b6b1465",
                "md5": "a40800384f6beb13063b10680757f862",
                "sha256": "390f615dbbbcc262844f4d938160fdacd90539a6cd4aeb26855f682097cabeed"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a40800384f6beb13063b10680757f862",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 137927,
            "upload_time": "2024-09-07T11:46:18",
            "upload_time_iso_8601": "2024-09-07T11:46:18.591953Z",
            "url": "https://files.pythonhosted.org/packages/b9/c1/50a55127ac7c6fc63931855c0dd359a1cbe400d52de6b48ea09a1b6b1465/gtdb_tree-0.1.9-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "821c20b085583b533e94ea559e122a8884252d88840e7c3a62ffb130463b1d8a",
                "md5": "16aa116a407ff7906fe8a2796e7b7664",
                "sha256": "a9fdc5663e1b5af1baa68cd07ebbbafef6c8bb8f0a99c602da891ffafe456bed"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "16aa116a407ff7906fe8a2796e7b7664",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 144862,
            "upload_time": "2024-09-07T11:46:20",
            "upload_time_iso_8601": "2024-09-07T11:46:20.236107Z",
            "url": "https://files.pythonhosted.org/packages/82/1c/20b085583b533e94ea559e122a8884252d88840e7c3a62ffb130463b1d8a/gtdb_tree-0.1.9-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29bb9dc7719e532d79698eaa981c47e30ae1fe5660986a5f398204cf8faf68c5",
                "md5": "c42322bb222cef4c62d8b97e6b607b4d",
                "sha256": "d08b7e6a044ee134bc3df4b7b631ab177082f8ae9a83431d523f5f9b0304c1d3"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c42322bb222cef4c62d8b97e6b607b4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 242538,
            "upload_time": "2024-09-07T11:46:21",
            "upload_time_iso_8601": "2024-09-07T11:46:21.180038Z",
            "url": "https://files.pythonhosted.org/packages/29/bb/9dc7719e532d79698eaa981c47e30ae1fe5660986a5f398204cf8faf68c5/gtdb_tree-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5494b63f64bf8276090fa51eb6249ad2ef81683b1f7b97f68c943bae5a868380",
                "md5": "a52f11a75c4e9f671ffbee59f8f19a0c",
                "sha256": "c6812fce3d452c0cd5bf70eff7b82c3d80e758bf7b0cf928246554a445285ea3"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a52f11a75c4e9f671ffbee59f8f19a0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 237441,
            "upload_time": "2024-09-07T11:46:22",
            "upload_time_iso_8601": "2024-09-07T11:46:22.410364Z",
            "url": "https://files.pythonhosted.org/packages/54/94/b63f64bf8276090fa51eb6249ad2ef81683b1f7b97f68c943bae5a868380/gtdb_tree-0.1.9-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c382299580f70efb8f930ee5a350c4fb0d2d54fc019985cfe7e52a6c02b6c05",
                "md5": "87cbc3bb0501be2924d2837425b644eb",
                "sha256": "f4d31a960db33ed7d33354f7cfbdede409335703aa3eb5fe3fdd9346e4456d66"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "87cbc3bb0501be2924d2837425b644eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 282114,
            "upload_time": "2024-09-07T11:46:23",
            "upload_time_iso_8601": "2024-09-07T11:46:23.595241Z",
            "url": "https://files.pythonhosted.org/packages/4c/38/2299580f70efb8f930ee5a350c4fb0d2d54fc019985cfe7e52a6c02b6c05/gtdb_tree-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95e50c8e1721c64444cabee754e7a8e8e73d85977698948c857f66c51bac8f9f",
                "md5": "2a70346ad0ecb513f5ce83dc48f63850",
                "sha256": "22174e50c09433101b2bd86f0e58d35ed9d680950a9560e38281e23aa14092b7"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2a70346ad0ecb513f5ce83dc48f63850",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 287153,
            "upload_time": "2024-09-07T11:46:25",
            "upload_time_iso_8601": "2024-09-07T11:46:25.186954Z",
            "url": "https://files.pythonhosted.org/packages/95/e5/0c8e1721c64444cabee754e7a8e8e73d85977698948c857f66c51bac8f9f/gtdb_tree-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c71193ba8623a501d386e5c90d462ff622f95a64f00a0cbf6a79199aed63d21",
                "md5": "bc39fcbddcfce39e4e252fd1cc9df682",
                "sha256": "f9e79c740d463385c81eb8e97bc96abf2c599eeba947a036f2364baa6098de80"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bc39fcbddcfce39e4e252fd1cc9df682",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 312974,
            "upload_time": "2024-09-07T11:46:28",
            "upload_time_iso_8601": "2024-09-07T11:46:28.586057Z",
            "url": "https://files.pythonhosted.org/packages/5c/71/193ba8623a501d386e5c90d462ff622f95a64f00a0cbf6a79199aed63d21/gtdb_tree-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4fb1a07ff95c7404f7ca76a86b8535fc81bd419490459714c1173a5c3787eab",
                "md5": "965832c7658d4cc8accd27889727d220",
                "sha256": "0d824a7e5c7e8ae8dde201792e113af92de1cfd6492fc24968b4a0ecc8fb78b9"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "965832c7658d4cc8accd27889727d220",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 322304,
            "upload_time": "2024-09-07T11:46:30",
            "upload_time_iso_8601": "2024-09-07T11:46:30.261276Z",
            "url": "https://files.pythonhosted.org/packages/e4/fb/1a07ff95c7404f7ca76a86b8535fc81bd419490459714c1173a5c3787eab/gtdb_tree-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44494b6155729fcdb3c64460046b210545297831d3419376044d5b8ebea538ce",
                "md5": "15dc1ac356adc89d1def7c4a47a84076",
                "sha256": "95c1e4b52513bffcc00885213d3dd67792d8d3f160ef772f5c228809ec565b10"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15dc1ac356adc89d1def7c4a47a84076",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 276468,
            "upload_time": "2024-09-07T11:46:32",
            "upload_time_iso_8601": "2024-09-07T11:46:32.362339Z",
            "url": "https://files.pythonhosted.org/packages/44/49/4b6155729fcdb3c64460046b210545297831d3419376044d5b8ebea538ce/gtdb_tree-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e22795adc64afd97bc57dfd1fda287dc9200701f7535ca4f625cdb662e3aafd",
                "md5": "ffa9f92d29b02489724b9039e3ccfeea",
                "sha256": "3c4350096ce7a9261f44b132f15ad51155375a5d1d2b87b530a669c9ed20a1a1"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ffa9f92d29b02489724b9039e3ccfeea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 289145,
            "upload_time": "2024-09-07T11:46:33",
            "upload_time_iso_8601": "2024-09-07T11:46:33.439269Z",
            "url": "https://files.pythonhosted.org/packages/4e/22/795adc64afd97bc57dfd1fda287dc9200701f7535ca4f625cdb662e3aafd/gtdb_tree-0.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c1e7befc00ddb7db7928c6efc70f411f3118bdc4d14d50ad45b96cf1f55e0b3",
                "md5": "2aab5a14258e2da2606077c0dd4168ce",
                "sha256": "13f24748276ea95f7c6cc2303ff5dcd099d32f32d5fc336f1e1476227324bc7e"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2aab5a14258e2da2606077c0dd4168ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 459303,
            "upload_time": "2024-09-07T11:46:34",
            "upload_time_iso_8601": "2024-09-07T11:46:34.990567Z",
            "url": "https://files.pythonhosted.org/packages/6c/1e/7befc00ddb7db7928c6efc70f411f3118bdc4d14d50ad45b96cf1f55e0b3/gtdb_tree-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec780119118e8ecfa9e23d78c92c540ec9a83e46e5a2e607af6781578857e917",
                "md5": "864c45f1e7c74d69c87236232f0471bc",
                "sha256": "844b0e2568d7c3cd8cc6194b5ea76cac736f1044a0b86d702ab3a7ffa317a9ff"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "864c45f1e7c74d69c87236232f0471bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 542372,
            "upload_time": "2024-09-07T11:46:36",
            "upload_time_iso_8601": "2024-09-07T11:46:36.742336Z",
            "url": "https://files.pythonhosted.org/packages/ec/78/0119118e8ecfa9e23d78c92c540ec9a83e46e5a2e607af6781578857e917/gtdb_tree-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e4bbfba42dfae23518ccb0c4c8992a07c4e390496b4e5dd60f88aeb46755d89",
                "md5": "6dc5ecf8bf919a03d479b3fb1ef2f51e",
                "sha256": "7fe2db13f3db4eb63fa74d9a9b0bfb4494b10e05d304bf605911434e307038f6"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6dc5ecf8bf919a03d479b3fb1ef2f51e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 463816,
            "upload_time": "2024-09-07T11:46:37",
            "upload_time_iso_8601": "2024-09-07T11:46:37.942515Z",
            "url": "https://files.pythonhosted.org/packages/1e/4b/bfba42dfae23518ccb0c4c8992a07c4e390496b4e5dd60f88aeb46755d89/gtdb_tree-0.1.9-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cddf767c89f4e64a27117d86a323afdad9ddac0b719f9d1f4fd10a6e69270f38",
                "md5": "dc21713d9ffa48eb78ac9bbbdaef8f33",
                "sha256": "148632c1bdca6d0d9a36ee38d01af8502167b27d6410f1ab48978f6899a09542"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc21713d9ffa48eb78ac9bbbdaef8f33",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 444686,
            "upload_time": "2024-09-07T11:46:39",
            "upload_time_iso_8601": "2024-09-07T11:46:39.151830Z",
            "url": "https://files.pythonhosted.org/packages/cd/df/767c89f4e64a27117d86a323afdad9ddac0b719f9d1f4fd10a6e69270f38/gtdb_tree-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cf9cdba6b3f837b8b7c69c745dd7d34703d648f702310bbf9ed7d31dc508431",
                "md5": "d16c0dfb5a41690aba63df8df583124b",
                "sha256": "90a1aa9195b4b8ebfdb891f93ac8d00733e6939bae41a15db74a83198f715a7d"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d16c0dfb5a41690aba63df8df583124b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 137887,
            "upload_time": "2024-09-07T11:46:40",
            "upload_time_iso_8601": "2024-09-07T11:46:40.665647Z",
            "url": "https://files.pythonhosted.org/packages/4c/f9/cdba6b3f837b8b7c69c745dd7d34703d648f702310bbf9ed7d31dc508431/gtdb_tree-0.1.9-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b52064095efd1e2fe8e6d98fc780802ebe7ce8386f3b89ce88dc9ad633d1b4db",
                "md5": "b5eff25affc4ffc5de2d79f4ecf9e2c2",
                "sha256": "cb613dad0c2abebbd8d49ef9cc83800325d5ffedf0d7bcddfa1275616744675d"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b5eff25affc4ffc5de2d79f4ecf9e2c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 144879,
            "upload_time": "2024-09-07T11:46:42",
            "upload_time_iso_8601": "2024-09-07T11:46:42.074151Z",
            "url": "https://files.pythonhosted.org/packages/b5/20/64095efd1e2fe8e6d98fc780802ebe7ce8386f3b89ce88dc9ad633d1b4db/gtdb_tree-0.1.9-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a94549b33becaca722aca66db7601ec0ef044f76e0c4d4f29e381e46c259ae35",
                "md5": "17704fb03323a67b4d3da91a85e47331",
                "sha256": "9f88808b6ad994ebe36c82532551dadb0563e3d8c0f198fce9101f821dbf5f35"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17704fb03323a67b4d3da91a85e47331",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 240944,
            "upload_time": "2024-09-07T11:46:43",
            "upload_time_iso_8601": "2024-09-07T11:46:43.539970Z",
            "url": "https://files.pythonhosted.org/packages/a9/45/49b33becaca722aca66db7601ec0ef044f76e0c4d4f29e381e46c259ae35/gtdb_tree-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a264174acfc92663cd3e401c2fab7561574ee3f3210a19faec5f241e88fd22a",
                "md5": "63b3a99d35b205c269afb16a9736fef3",
                "sha256": "a69a7533e80800c0293971b8c106e17731726dfd86da91f4989589b062c38b5a"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "63b3a99d35b205c269afb16a9736fef3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 236359,
            "upload_time": "2024-09-07T11:46:44",
            "upload_time_iso_8601": "2024-09-07T11:46:44.838832Z",
            "url": "https://files.pythonhosted.org/packages/3a/26/4174acfc92663cd3e401c2fab7561574ee3f3210a19faec5f241e88fd22a/gtdb_tree-0.1.9-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe98312bf3ed13d0d9fe7b759ec34c044c224d2f8457b19b7c6259d9bc3209ef",
                "md5": "7550772cac854317e7c9499176d86deb",
                "sha256": "c0e6be915a91fc071204bf0d36aa18bb7cd133868bb1ffe8b499d477f3a22788"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7550772cac854317e7c9499176d86deb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 281498,
            "upload_time": "2024-09-07T11:46:45",
            "upload_time_iso_8601": "2024-09-07T11:46:45.927062Z",
            "url": "https://files.pythonhosted.org/packages/fe/98/312bf3ed13d0d9fe7b759ec34c044c224d2f8457b19b7c6259d9bc3209ef/gtdb_tree-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "baabae9484c14ebdd3aec51f337d06f462321edb97e076b87150be524c33fed6",
                "md5": "f4a9c5f18bcc61eb650fb28529e10ddd",
                "sha256": "3804308f52dae519418f2f6c6d3230379e7bf7cb539262092595405f87d519d1"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f4a9c5f18bcc61eb650fb28529e10ddd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 286546,
            "upload_time": "2024-09-07T11:46:47",
            "upload_time_iso_8601": "2024-09-07T11:46:47.062644Z",
            "url": "https://files.pythonhosted.org/packages/ba/ab/ae9484c14ebdd3aec51f337d06f462321edb97e076b87150be524c33fed6/gtdb_tree-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef8239ebe9b064673073f7aaff7d007442e8872b5bf3b167a99b19586d827253",
                "md5": "25e5d1d26d6f1c6a2d136275c91fb079",
                "sha256": "152692608e0bb6faf3e872373d9757361f255ea92da5c46a546f7a27543f74c2"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "25e5d1d26d6f1c6a2d136275c91fb079",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 312327,
            "upload_time": "2024-09-07T11:46:48",
            "upload_time_iso_8601": "2024-09-07T11:46:48.186420Z",
            "url": "https://files.pythonhosted.org/packages/ef/82/39ebe9b064673073f7aaff7d007442e8872b5bf3b167a99b19586d827253/gtdb_tree-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be52af8de40343e9f0a949529a1becf12392d8dc2d2a4f414cd084c60cfaa6bd",
                "md5": "b780c8120ee4fe5e9775fd2ac246d901",
                "sha256": "bb0fbbcfab4d039a532fe92472b410b654191a51a0912a4c5e7dcb054c914772"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b780c8120ee4fe5e9775fd2ac246d901",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 320803,
            "upload_time": "2024-09-07T11:46:49",
            "upload_time_iso_8601": "2024-09-07T11:46:49.856671Z",
            "url": "https://files.pythonhosted.org/packages/be/52/af8de40343e9f0a949529a1becf12392d8dc2d2a4f414cd084c60cfaa6bd/gtdb_tree-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80e9f2ba7b90da28e50c6e66db49f6f089dce56bbb95659a8b2fbc6cee2880f0",
                "md5": "5565fcf3c72afd89518ca665e2ace375",
                "sha256": "6c5e9792c1e05fd356970ae9ea4a7175f7c4f6e5566aa77c5dc74296166dea0a"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5565fcf3c72afd89518ca665e2ace375",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 275841,
            "upload_time": "2024-09-07T11:46:51",
            "upload_time_iso_8601": "2024-09-07T11:46:51.158374Z",
            "url": "https://files.pythonhosted.org/packages/80/e9/f2ba7b90da28e50c6e66db49f6f089dce56bbb95659a8b2fbc6cee2880f0/gtdb_tree-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae0a4da78f2dbe8cfb3cf22217a2b57fafd3495b0d10b0a30bbffa41d1ef5196",
                "md5": "1be04bc418cff1ff5081d7ab8f24b7a7",
                "sha256": "b3bfbe1dad62d2f75f862d7ec448afb6862f981dd98bc3f4b96b0845b2266d85"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "1be04bc418cff1ff5081d7ab8f24b7a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 288309,
            "upload_time": "2024-09-07T11:46:52",
            "upload_time_iso_8601": "2024-09-07T11:46:52.329280Z",
            "url": "https://files.pythonhosted.org/packages/ae/0a/4da78f2dbe8cfb3cf22217a2b57fafd3495b0d10b0a30bbffa41d1ef5196/gtdb_tree-0.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2375663e1740855a83d9e7ffa5e3ad826a3d06376e822927d61819fa6410104a",
                "md5": "23f48d4569fc3ba531de1386a97ca6dc",
                "sha256": "0cf7b58a06ebf32c79f0e936b9919155e4497bba2df70ba3eb89d2b5e071120c"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "23f48d4569fc3ba531de1386a97ca6dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 457999,
            "upload_time": "2024-09-07T11:46:53",
            "upload_time_iso_8601": "2024-09-07T11:46:53.659124Z",
            "url": "https://files.pythonhosted.org/packages/23/75/663e1740855a83d9e7ffa5e3ad826a3d06376e822927d61819fa6410104a/gtdb_tree-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "762d7ae015540340360e53bb1b3ce14e068ca15d37e1c6013b4cb4c937d869df",
                "md5": "c72559ea49b6bd0411528972b6d32839",
                "sha256": "4b76446eb8494fa9bd382c4209bbb3fd34370221b77ba73d3ce02244b47058a8"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c72559ea49b6bd0411528972b6d32839",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 541576,
            "upload_time": "2024-09-07T11:46:54",
            "upload_time_iso_8601": "2024-09-07T11:46:54.803514Z",
            "url": "https://files.pythonhosted.org/packages/76/2d/7ae015540340360e53bb1b3ce14e068ca15d37e1c6013b4cb4c937d869df/gtdb_tree-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "903e6cbe98b1f0ebdde16862d767389970772fc21d923f615018ec064cd2c7b3",
                "md5": "66ba5bedc0df5e53ff728ebd6dc103cd",
                "sha256": "ead7ed3a3625f398b5d11206ed9b7ad83450f62bb9853738a70dba791c9ddd9a"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "66ba5bedc0df5e53ff728ebd6dc103cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 463368,
            "upload_time": "2024-09-07T11:46:56",
            "upload_time_iso_8601": "2024-09-07T11:46:56.239830Z",
            "url": "https://files.pythonhosted.org/packages/90/3e/6cbe98b1f0ebdde16862d767389970772fc21d923f615018ec064cd2c7b3/gtdb_tree-0.1.9-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d49b809dd700573637d9d678fcc4bf4093caacb6fbe75e5dd91b2cb28d0a54a3",
                "md5": "c5edfd48f5868504c8de243868fb5e76",
                "sha256": "bafd8430651fa188bb2bd44eeb5aa626c868637fcf69a6a618ac1295042575f4"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5edfd48f5868504c8de243868fb5e76",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 443324,
            "upload_time": "2024-09-07T11:46:57",
            "upload_time_iso_8601": "2024-09-07T11:46:57.686079Z",
            "url": "https://files.pythonhosted.org/packages/d4/9b/809dd700573637d9d678fcc4bf4093caacb6fbe75e5dd91b2cb28d0a54a3/gtdb_tree-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22b0d9ca578a8101320fee86491c25d6de702968985b94f693131358cfee0e58",
                "md5": "745742d4c010ae961e562155fc16459a",
                "sha256": "77c8bb2088a3db9f3f150486d5379cf3a587c7277d8f1a1b89507eb608294bec"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "745742d4c010ae961e562155fc16459a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 137467,
            "upload_time": "2024-09-07T11:46:59",
            "upload_time_iso_8601": "2024-09-07T11:46:59.263455Z",
            "url": "https://files.pythonhosted.org/packages/22/b0/d9ca578a8101320fee86491c25d6de702968985b94f693131358cfee0e58/gtdb_tree-0.1.9-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "368fe43d776f19303d33be08c10c79c887521338471b9784b4a73c53a7db294a",
                "md5": "e020ff2b5c4faf9d3ee702d2155f1b80",
                "sha256": "e43511498354a4cda062c76964aecb91e128e8de5ed086bc6987793f168081d4"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e020ff2b5c4faf9d3ee702d2155f1b80",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 144401,
            "upload_time": "2024-09-07T11:47:00",
            "upload_time_iso_8601": "2024-09-07T11:47:00.488093Z",
            "url": "https://files.pythonhosted.org/packages/36/8f/e43d776f19303d33be08c10c79c887521338471b9784b4a73c53a7db294a/gtdb_tree-0.1.9-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a246b6134172bd7db428f52f7c245cfaf45958d71ef1e2a07806787c89a14c8",
                "md5": "72c2c0778c6ac532e873fa490c4257af",
                "sha256": "0fd779d67de7a0276f158dad6e4cf42e814c433c4117574a1bf7ddce573c06a0"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "72c2c0778c6ac532e873fa490c4257af",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 282358,
            "upload_time": "2024-09-07T11:47:01",
            "upload_time_iso_8601": "2024-09-07T11:47:01.625923Z",
            "url": "https://files.pythonhosted.org/packages/4a/24/6b6134172bd7db428f52f7c245cfaf45958d71ef1e2a07806787c89a14c8/gtdb_tree-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52a500e10ac4bcdd88b9993b6ea756099408fc35a1e3ab35b0196eec68729360",
                "md5": "9cfda7db0448024e3ff27facad992a33",
                "sha256": "413202b9d801f3e1e95457dfbb040fbbcab0dd9feb741d15bd5be17fe8eecb52"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9cfda7db0448024e3ff27facad992a33",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 287463,
            "upload_time": "2024-09-07T11:47:03",
            "upload_time_iso_8601": "2024-09-07T11:47:03.057096Z",
            "url": "https://files.pythonhosted.org/packages/52/a5/00e10ac4bcdd88b9993b6ea756099408fc35a1e3ab35b0196eec68729360/gtdb_tree-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97b398ad1160564b4b0c9ca6376f19f1359ff36a085ef3fec42275a094f0e314",
                "md5": "e6dc73d976f2df71f72288bc09d0a252",
                "sha256": "f2047888bd6d3c4d913897c14229b585aa47d59990f405f2c463d6878672f592"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e6dc73d976f2df71f72288bc09d0a252",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 314137,
            "upload_time": "2024-09-07T11:47:04",
            "upload_time_iso_8601": "2024-09-07T11:47:04.815673Z",
            "url": "https://files.pythonhosted.org/packages/97/b3/98ad1160564b4b0c9ca6376f19f1359ff36a085ef3fec42275a094f0e314/gtdb_tree-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86bee58e79d24a93d054b75c054e40846e1892459130d2eb35e3cf565d4786f1",
                "md5": "3d7fadec0148833ee0966c6c45be15b7",
                "sha256": "2234897d8d50a2abfad94ef4c6ed8337f8acb4073d40df1543d43d251461421c"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3d7fadec0148833ee0966c6c45be15b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 322520,
            "upload_time": "2024-09-07T11:47:05",
            "upload_time_iso_8601": "2024-09-07T11:47:05.946639Z",
            "url": "https://files.pythonhosted.org/packages/86/be/e58e79d24a93d054b75c054e40846e1892459130d2eb35e3cf565d4786f1/gtdb_tree-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7adc15f661310f662b76be5b20a3696f34c29b378b23a8c2c78cf64ddcb48073",
                "md5": "27240f566056677f8550b6305d1d6014",
                "sha256": "40a9167ac92a21d51fb5684ef037877aaa7db53fb3fff3c490f0288e1c259c40"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27240f566056677f8550b6305d1d6014",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 276807,
            "upload_time": "2024-09-07T11:47:07",
            "upload_time_iso_8601": "2024-09-07T11:47:07.064379Z",
            "url": "https://files.pythonhosted.org/packages/7a/dc/15f661310f662b76be5b20a3696f34c29b378b23a8c2c78cf64ddcb48073/gtdb_tree-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68b03c920132d131cb35a203ce7814f082ba97da8a1e11431e53cb71e94fd494",
                "md5": "a6eb48b3450b3557efae9c77d398826c",
                "sha256": "a1befe8e278679c5660f8035d794d3620c36d1edadd534d9e971343d2e481b35"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a6eb48b3450b3557efae9c77d398826c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 289258,
            "upload_time": "2024-09-07T11:47:08",
            "upload_time_iso_8601": "2024-09-07T11:47:08.183467Z",
            "url": "https://files.pythonhosted.org/packages/68/b0/3c920132d131cb35a203ce7814f082ba97da8a1e11431e53cb71e94fd494/gtdb_tree-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "123f962824876fcaacc6800872fc9021210a3ecd7996f04954a2a692052f7df4",
                "md5": "798838bf2ac3095dc3dd8daf3a40ba4a",
                "sha256": "cf3048805d190fa4b7e057a370fe0be01c8ed8d56cb4d43edb21386faea0a38e"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "798838bf2ac3095dc3dd8daf3a40ba4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 460028,
            "upload_time": "2024-09-07T11:47:09",
            "upload_time_iso_8601": "2024-09-07T11:47:09.316735Z",
            "url": "https://files.pythonhosted.org/packages/12/3f/962824876fcaacc6800872fc9021210a3ecd7996f04954a2a692052f7df4/gtdb_tree-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dc0d2ab24d1a78387cc8fb1dd914cb921b835bd0c3806ff19549f73b5e4126c",
                "md5": "8d33b8c3dc8c12af18d333ca83a4d230",
                "sha256": "0bc9ffe7ecc54d6d6ed5a95b6aae734e762b86aa764bb2cccd038cc3597ca576"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8d33b8c3dc8c12af18d333ca83a4d230",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 542615,
            "upload_time": "2024-09-07T11:47:10",
            "upload_time_iso_8601": "2024-09-07T11:47:10.977809Z",
            "url": "https://files.pythonhosted.org/packages/7d/c0/d2ab24d1a78387cc8fb1dd914cb921b835bd0c3806ff19549f73b5e4126c/gtdb_tree-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "708f9ed978dc16e3f707c13421ad4938da06d42497bed9be2ee148fbb1dc310c",
                "md5": "cae09e0ca00aaa2090e73659c3b97841",
                "sha256": "e0ef962136003f5a3931e9c52f0132586e0d1378e8fd1f0458bc4151dafe8fef"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "cae09e0ca00aaa2090e73659c3b97841",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 464307,
            "upload_time": "2024-09-07T11:47:12",
            "upload_time_iso_8601": "2024-09-07T11:47:12.131435Z",
            "url": "https://files.pythonhosted.org/packages/70/8f/9ed978dc16e3f707c13421ad4938da06d42497bed9be2ee148fbb1dc310c/gtdb_tree-0.1.9-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d21b991eaa5ebf2248d7fe93c901207cf8c6ae84f4876cb634d4e31063ce152",
                "md5": "a803b5dea6a444960cf472453a746475",
                "sha256": "70b5a44a89b33908beb5ea93c6b5c7ddd00f370522d324db94f458175bf6659d"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a803b5dea6a444960cf472453a746475",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 445365,
            "upload_time": "2024-09-07T11:47:13",
            "upload_time_iso_8601": "2024-09-07T11:47:13.550438Z",
            "url": "https://files.pythonhosted.org/packages/5d/21/b991eaa5ebf2248d7fe93c901207cf8c6ae84f4876cb634d4e31063ce152/gtdb_tree-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f677571ccc1b136cde8ccbb9a52f71c6d06a9b792716abdcabe81a4bf523d37e",
                "md5": "e31a60a7abc68681d366dd0339a29b53",
                "sha256": "8a6062129a5e138020002e8d91ec45bb42f2cf5c1d882fa5c97ee66e49c756e1"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e31a60a7abc68681d366dd0339a29b53",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 137954,
            "upload_time": "2024-09-07T11:47:15",
            "upload_time_iso_8601": "2024-09-07T11:47:15.245404Z",
            "url": "https://files.pythonhosted.org/packages/f6/77/571ccc1b136cde8ccbb9a52f71c6d06a9b792716abdcabe81a4bf523d37e/gtdb_tree-0.1.9-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba98adf4765f345548617395060e9fd8a10d3c86e9a96a19a956418d8c1a1cb7",
                "md5": "478794d7e00e46f7cb53f8525cdac176",
                "sha256": "991548cab3795be7b84e655218cfb328efd4ee085b5286546a4da019f762b5ae"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "478794d7e00e46f7cb53f8525cdac176",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 145340,
            "upload_time": "2024-09-07T11:47:16",
            "upload_time_iso_8601": "2024-09-07T11:47:16.565185Z",
            "url": "https://files.pythonhosted.org/packages/ba/98/adf4765f345548617395060e9fd8a10d3c86e9a96a19a956418d8c1a1cb7/gtdb_tree-0.1.9-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6eeefecc42ff30039ce12a011ed2e9f8462bc9681b86fc156565a04d887b8d7",
                "md5": "88ef90a6dbe0d8078fd5b9dc67be6efe",
                "sha256": "eb8ad298899d39ea5f4616758c37ddd3939ca4990321eaa96a6ef11a5a094604"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "88ef90a6dbe0d8078fd5b9dc67be6efe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 238128,
            "upload_time": "2024-09-07T11:47:17",
            "upload_time_iso_8601": "2024-09-07T11:47:17.669349Z",
            "url": "https://files.pythonhosted.org/packages/b6/ee/efecc42ff30039ce12a011ed2e9f8462bc9681b86fc156565a04d887b8d7/gtdb_tree-0.1.9-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f0778454f45c2c1e5ac92ad5d766ec10851b743c53c068966be37c89f6b5a21",
                "md5": "e089bee23eff2ef26cf20984088419ed",
                "sha256": "2d870c6c87a3bd0a53701c14658a264454d9a1fcb4a5f2368419c954ecb0d430"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e089bee23eff2ef26cf20984088419ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 282456,
            "upload_time": "2024-09-07T11:47:18",
            "upload_time_iso_8601": "2024-09-07T11:47:18.822523Z",
            "url": "https://files.pythonhosted.org/packages/5f/07/78454f45c2c1e5ac92ad5d766ec10851b743c53c068966be37c89f6b5a21/gtdb_tree-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc98af4563f473cf49a9750b74bbb90efef1def9a1d73368138f2c74810370c5",
                "md5": "32912d2761a632273f4197389a98d278",
                "sha256": "4625692cc3d4cf5ab0ae90777cbbfa9f9f663790af2dd0869d0e63feb2704c2c"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "32912d2761a632273f4197389a98d278",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 287557,
            "upload_time": "2024-09-07T11:47:20",
            "upload_time_iso_8601": "2024-09-07T11:47:20.240806Z",
            "url": "https://files.pythonhosted.org/packages/cc/98/af4563f473cf49a9750b74bbb90efef1def9a1d73368138f2c74810370c5/gtdb_tree-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19aa8283d65133bef9a66cac841da2bfb43a95f9bb61c30a13bd9e410ae238a2",
                "md5": "345e17ab4abc8a7a3d6de5de641ebeda",
                "sha256": "92149e3892de6181bdabe0643cadb9acdba93a6b5cc0e7de934ca3646a43fdf4"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "345e17ab4abc8a7a3d6de5de641ebeda",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 313918,
            "upload_time": "2024-09-07T11:47:21",
            "upload_time_iso_8601": "2024-09-07T11:47:21.383425Z",
            "url": "https://files.pythonhosted.org/packages/19/aa/8283d65133bef9a66cac841da2bfb43a95f9bb61c30a13bd9e410ae238a2/gtdb_tree-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7089c643c4e4bbb06803723e0d8088681780b5698e58fe6d4d53529373e3dd7f",
                "md5": "75a5abc65ecf4d2d51f2eddf10224b2a",
                "sha256": "b5c04cc791802b09fb3075c57716a7cf607b8a9d14dacb506f6a36571f687f9a"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "75a5abc65ecf4d2d51f2eddf10224b2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 322563,
            "upload_time": "2024-09-07T11:47:23",
            "upload_time_iso_8601": "2024-09-07T11:47:23.052576Z",
            "url": "https://files.pythonhosted.org/packages/70/89/c643c4e4bbb06803723e0d8088681780b5698e58fe6d4d53529373e3dd7f/gtdb_tree-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68c40930e2cb4f2f7f3abe5dca08f7278924fbe2a3c6d7ca939277b9853b0fb2",
                "md5": "b4472fbb052dc057a40bdfc16209248a",
                "sha256": "c025eb238ed70ddd683742e5ed2408c5fba9e4aaece94cd102274f459356f438"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4472fbb052dc057a40bdfc16209248a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 276876,
            "upload_time": "2024-09-07T11:47:24",
            "upload_time_iso_8601": "2024-09-07T11:47:24.266587Z",
            "url": "https://files.pythonhosted.org/packages/68/c4/0930e2cb4f2f7f3abe5dca08f7278924fbe2a3c6d7ca939277b9853b0fb2/gtdb_tree-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bfd4e072dd96499b26774a793ec059d16ac40e00a23e84923d37875d3d67890",
                "md5": "a7c6670f43ecbadbd2d96af36ddda268",
                "sha256": "565e070d8e5d532bc8a222407408b1aa141f975574867ea8cacdf8ee0bd12c8f"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a7c6670f43ecbadbd2d96af36ddda268",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 289934,
            "upload_time": "2024-09-07T11:47:25",
            "upload_time_iso_8601": "2024-09-07T11:47:25.731736Z",
            "url": "https://files.pythonhosted.org/packages/1b/fd/4e072dd96499b26774a793ec059d16ac40e00a23e84923d37875d3d67890/gtdb_tree-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8bdf9224575b04991d62f33e025c476d3f8101962509efed55a5d507d74c0c5",
                "md5": "e026452ffc31b0c344c5575433aa35f2",
                "sha256": "a8266acdce949f2528db808e13af83f531938481bd431c84663deb1ec676d0fd"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e026452ffc31b0c344c5575433aa35f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 460058,
            "upload_time": "2024-09-07T11:47:26",
            "upload_time_iso_8601": "2024-09-07T11:47:26.968766Z",
            "url": "https://files.pythonhosted.org/packages/a8/bd/f9224575b04991d62f33e025c476d3f8101962509efed55a5d507d74c0c5/gtdb_tree-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e20826518e0ef2ee1ba7c1f171fce9ff64e698eeb82e77b61e85162449d715a6",
                "md5": "53c08750d5a8d1809ab0089dd1202eff",
                "sha256": "ecc6cca988371d44954930fbed37a0e4b72806de96bf815cc17898f1d3e20338"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "53c08750d5a8d1809ab0089dd1202eff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 542813,
            "upload_time": "2024-09-07T11:47:28",
            "upload_time_iso_8601": "2024-09-07T11:47:28.241391Z",
            "url": "https://files.pythonhosted.org/packages/e2/08/26518e0ef2ee1ba7c1f171fce9ff64e698eeb82e77b61e85162449d715a6/gtdb_tree-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46076d958fa8c841d6827e174dbad1164b85189a98e6f06f311100cbc4fc2276",
                "md5": "98f26d15ffbf19bdfa87a5917fc2a250",
                "sha256": "d5fd0a0efdef75e59447d66eb51861c6c78662aa4fddc294793bd4a08355d204"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "98f26d15ffbf19bdfa87a5917fc2a250",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 464157,
            "upload_time": "2024-09-07T11:47:29",
            "upload_time_iso_8601": "2024-09-07T11:47:29.499289Z",
            "url": "https://files.pythonhosted.org/packages/46/07/6d958fa8c841d6827e174dbad1164b85189a98e6f06f311100cbc4fc2276/gtdb_tree-0.1.9-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "093d9fad04646c5f4c0ed4b3c07ce0e8300d06b5a07d9c8add1724110bd267f4",
                "md5": "a9e4c454141fbb5e8048a3f83b2de633",
                "sha256": "46f10623380b6a0c5ffe40acb0f86daa8b285098232f38ff3f5cd6849e0be89e"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9e4c454141fbb5e8048a3f83b2de633",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 445468,
            "upload_time": "2024-09-07T11:47:30",
            "upload_time_iso_8601": "2024-09-07T11:47:30.802772Z",
            "url": "https://files.pythonhosted.org/packages/09/3d/9fad04646c5f4c0ed4b3c07ce0e8300d06b5a07d9c8add1724110bd267f4/gtdb_tree-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7a9ba1d9f39a76dd01041465c7e7ecb291af98089ddf1d30681191e958e1b98",
                "md5": "adc8dd7cc5d1c3b9fecd439e881214cc",
                "sha256": "84dd66140f1f920ec5f7fa1d49754a856a6c5f878bd5d3eee806d360b32c92f1"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "adc8dd7cc5d1c3b9fecd439e881214cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 138149,
            "upload_time": "2024-09-07T11:47:32",
            "upload_time_iso_8601": "2024-09-07T11:47:32.496331Z",
            "url": "https://files.pythonhosted.org/packages/f7/a9/ba1d9f39a76dd01041465c7e7ecb291af98089ddf1d30681191e958e1b98/gtdb_tree-0.1.9-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "337e5f5d6c31792d24661e5a5fb52a4dff332346758291299294e898bd8f0ec3",
                "md5": "76a4c4b02c30d4157783bd998876c97b",
                "sha256": "8c3aa09d7685cbf83a842bc8e6ffee03fd3ee66a4b9c19136a95df59ccaee345"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "76a4c4b02c30d4157783bd998876c97b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 145191,
            "upload_time": "2024-09-07T11:47:34",
            "upload_time_iso_8601": "2024-09-07T11:47:34.665558Z",
            "url": "https://files.pythonhosted.org/packages/33/7e/5f5d6c31792d24661e5a5fb52a4dff332346758291299294e898bd8f0ec3/gtdb_tree-0.1.9-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8854bd916b9b799cdbe53ed6d33b020a0900ec78e63b254adc1271308278017e",
                "md5": "92d0850b1d814413a591a9651247e355",
                "sha256": "0daa215da541dad06e005c1ff5a9d896c8d1d046d08d9804fda5ee1fbe9b5159"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92d0850b1d814413a591a9651247e355",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 282691,
            "upload_time": "2024-09-07T11:47:35",
            "upload_time_iso_8601": "2024-09-07T11:47:35.783399Z",
            "url": "https://files.pythonhosted.org/packages/88/54/bd916b9b799cdbe53ed6d33b020a0900ec78e63b254adc1271308278017e/gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a5285a02e2167df3720b65c0b8aed52df6a5a6281a849c4b8b1832281f86d46",
                "md5": "cd9b0165478fcbeb58f97437cf48fd62",
                "sha256": "28e6ac638b7f50c915e0e6a5aa0fb3ec97cc9ecdca75bb08d1b18f60b47b5b97"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cd9b0165478fcbeb58f97437cf48fd62",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 287068,
            "upload_time": "2024-09-07T11:47:36",
            "upload_time_iso_8601": "2024-09-07T11:47:36.894649Z",
            "url": "https://files.pythonhosted.org/packages/2a/52/85a02e2167df3720b65c0b8aed52df6a5a6281a849c4b8b1832281f86d46/gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33318a0950aa41ad5a73edd817f43c7f96c66435376544efdec0162c793f855c",
                "md5": "ec49252e5cc9d79a9856df20f8de2ab8",
                "sha256": "ce94ca83cba8bb0abe59c8bb2e2531f55e2a820a37e4e94b84dff45a6dde7fb9"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ec49252e5cc9d79a9856df20f8de2ab8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 313775,
            "upload_time": "2024-09-07T11:47:38",
            "upload_time_iso_8601": "2024-09-07T11:47:38.098523Z",
            "url": "https://files.pythonhosted.org/packages/33/31/8a0950aa41ad5a73edd817f43c7f96c66435376544efdec0162c793f855c/gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee587bd61ea20f7ec530bd29aecdd62db3e40a85e657fca36897cdfd52e449df",
                "md5": "80953a992b3d3cd59f3cd24c65eb8307",
                "sha256": "c1d3da6aa5754394fe29e5e530e0d097ad80a86913066bc09ac2dfe5e8e74613"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "80953a992b3d3cd59f3cd24c65eb8307",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 323125,
            "upload_time": "2024-09-07T11:47:39",
            "upload_time_iso_8601": "2024-09-07T11:47:39.247780Z",
            "url": "https://files.pythonhosted.org/packages/ee/58/7bd61ea20f7ec530bd29aecdd62db3e40a85e657fca36897cdfd52e449df/gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e151134593ece3ae4dd299df3ff4da5e8b721db20e5a9c11720c4e4a41d28f3",
                "md5": "fab3ecd2834201154e4c16d25939b3b5",
                "sha256": "c5800e19a04dfbe3e56a04604f434442f34a6d55f7143e928ee7ab192b348543"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fab3ecd2834201154e4c16d25939b3b5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 277220,
            "upload_time": "2024-09-07T11:47:40",
            "upload_time_iso_8601": "2024-09-07T11:47:40.389460Z",
            "url": "https://files.pythonhosted.org/packages/8e/15/1134593ece3ae4dd299df3ff4da5e8b721db20e5a9c11720c4e4a41d28f3/gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36625a659fd070c76b4f4ce51341ed6c3eb5d3dc73b8d473da76f16bb3da01c9",
                "md5": "02576ee3f261c250ec14bb2a43a5035a",
                "sha256": "0ae9359c3aed9b8b0accb9114eaa1f63c4a5f567cd720e21ab20e52a19abd8cc"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "02576ee3f261c250ec14bb2a43a5035a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 289252,
            "upload_time": "2024-09-07T11:47:41",
            "upload_time_iso_8601": "2024-09-07T11:47:41.644069Z",
            "url": "https://files.pythonhosted.org/packages/36/62/5a659fd070c76b4f4ce51341ed6c3eb5d3dc73b8d473da76f16bb3da01c9/gtdb_tree-0.1.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "744d8a812c881d6a5f51407acf5a8c0367ed474214751f8a2a15dbd627a0b7c5",
                "md5": "1b5cdac489678177d063f179a2408be3",
                "sha256": "a97055197eeec724f87c4dcf174819f1adeaecaf4f51e2b5d5098e3cff8618a5"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1b5cdac489678177d063f179a2408be3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 459800,
            "upload_time": "2024-09-07T11:47:42",
            "upload_time_iso_8601": "2024-09-07T11:47:42.951772Z",
            "url": "https://files.pythonhosted.org/packages/74/4d/8a812c881d6a5f51407acf5a8c0367ed474214751f8a2a15dbd627a0b7c5/gtdb_tree-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb872c910dfe229e26d84437f9a31397e6eae3bc8c51262534bee7e7668004e2",
                "md5": "c55d18a3939175a75b024d60d5982330",
                "sha256": "f2d659c7b5d56e3cc6095f5836cbd0f741279e74cc22ef87af58110aedb7902e"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c55d18a3939175a75b024d60d5982330",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 543098,
            "upload_time": "2024-09-07T11:47:44",
            "upload_time_iso_8601": "2024-09-07T11:47:44.334606Z",
            "url": "https://files.pythonhosted.org/packages/cb/87/2c910dfe229e26d84437f9a31397e6eae3bc8c51262534bee7e7668004e2/gtdb_tree-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43e73076249dba5c4a2994002cb37111aa6e84f78edec553c5be41511f0a5a2b",
                "md5": "aa8326287f7836ccfa29eb60ed6d406a",
                "sha256": "c0c1c290626ed720f765068c38ee29623506ada3e85b85537816dbb756f60e2f"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "aa8326287f7836ccfa29eb60ed6d406a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 464579,
            "upload_time": "2024-09-07T11:47:46",
            "upload_time_iso_8601": "2024-09-07T11:47:46.125825Z",
            "url": "https://files.pythonhosted.org/packages/43/e7/3076249dba5c4a2994002cb37111aa6e84f78edec553c5be41511f0a5a2b/gtdb_tree-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2a71f19e60a4e4201aa99180af631c4193363fe05645b7d2d63b8dd5996394e",
                "md5": "e23c8e5d95eb58d79af125146fc68cdd",
                "sha256": "f5935967996463896368b5c8e60fa280a4772f5676ce6cae7b811a9ecdb8e818"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e23c8e5d95eb58d79af125146fc68cdd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 445435,
            "upload_time": "2024-09-07T11:47:47",
            "upload_time_iso_8601": "2024-09-07T11:47:47.827115Z",
            "url": "https://files.pythonhosted.org/packages/e2/a7/1f19e60a4e4201aa99180af631c4193363fe05645b7d2d63b8dd5996394e/gtdb_tree-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a33316650315f6d77a0329ac689adaf581bb8433151b04a00f08192a40dcf555",
                "md5": "ef2e39274109825d7103386c733ce997",
                "sha256": "59268fce6adbc9ccdf37ce33bf0d7ee618b2e671cdb195860c2194a7ba738e36"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef2e39274109825d7103386c733ce997",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 282783,
            "upload_time": "2024-09-07T11:47:49",
            "upload_time_iso_8601": "2024-09-07T11:47:49.011811Z",
            "url": "https://files.pythonhosted.org/packages/a3/33/16650315f6d77a0329ac689adaf581bb8433151b04a00f08192a40dcf555/gtdb_tree-0.1.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcd018ea00d87018c05575abac7ee2372237c08e5c9e2edfdd594d47ba9c9c08",
                "md5": "653094bed8f38eea82b9194cc31d4499",
                "sha256": "b809a754fefe31cf1c3ac9e01c347bbaf1ca119edb70c6390783183ee921c186"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "653094bed8f38eea82b9194cc31d4499",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 287973,
            "upload_time": "2024-09-07T11:47:50",
            "upload_time_iso_8601": "2024-09-07T11:47:50.336281Z",
            "url": "https://files.pythonhosted.org/packages/bc/d0/18ea00d87018c05575abac7ee2372237c08e5c9e2edfdd594d47ba9c9c08/gtdb_tree-0.1.9-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d37f55277c3371c5e92c60e549f2de9a283f936951becaba306a415467aaeb94",
                "md5": "a324f0a807300ad603a15e1f82d1cc44",
                "sha256": "ec99a2c35216240f152b9ff751170a24b9a09d855512be761b3c0d5968e79a71"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a324f0a807300ad603a15e1f82d1cc44",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 313679,
            "upload_time": "2024-09-07T11:47:51",
            "upload_time_iso_8601": "2024-09-07T11:47:51.536962Z",
            "url": "https://files.pythonhosted.org/packages/d3/7f/55277c3371c5e92c60e549f2de9a283f936951becaba306a415467aaeb94/gtdb_tree-0.1.9-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6709ccc8c852a6dbc255cfd9a3da77172f6b1f474a503adc1deae98ac9e0ec72",
                "md5": "49585b19d84addb8aaa5eed60e252901",
                "sha256": "c076d5898c8c9e7cdcab351d882dcd89b98389e3629793bc2fa48ad314851c85"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "49585b19d84addb8aaa5eed60e252901",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 323339,
            "upload_time": "2024-09-07T11:47:52",
            "upload_time_iso_8601": "2024-09-07T11:47:52.806398Z",
            "url": "https://files.pythonhosted.org/packages/67/09/ccc8c852a6dbc255cfd9a3da77172f6b1f474a503adc1deae98ac9e0ec72/gtdb_tree-0.1.9-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63270fcc62f79e28ab9160af0df6c97f97ce603d98f48163e555dfb5ea535120",
                "md5": "84e07419b62a454dc7db7037b14a281c",
                "sha256": "d68081ce362e078690e2c0519ceef012de3861abce3320183491be4f04c29985"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "84e07419b62a454dc7db7037b14a281c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 460297,
            "upload_time": "2024-09-07T11:47:54",
            "upload_time_iso_8601": "2024-09-07T11:47:54.967053Z",
            "url": "https://files.pythonhosted.org/packages/63/27/0fcc62f79e28ab9160af0df6c97f97ce603d98f48163e555dfb5ea535120/gtdb_tree-0.1.9-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0760bbac51bbbb22307ddd5853eea0da52af2a64a36697e943b29f9a60f9ed5e",
                "md5": "4e5e9f617db55a1230f42b3c0b421102",
                "sha256": "7e1342411fb3086e7132925907e09aef90da6ab0abcced0a5b09f87e7f7ab819"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4e5e9f617db55a1230f42b3c0b421102",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 543147,
            "upload_time": "2024-09-07T11:47:56",
            "upload_time_iso_8601": "2024-09-07T11:47:56.198683Z",
            "url": "https://files.pythonhosted.org/packages/07/60/bbac51bbbb22307ddd5853eea0da52af2a64a36697e943b29f9a60f9ed5e/gtdb_tree-0.1.9-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86d288e154f764142043aa559931f56bac8560a44fa1ed95306b6ee025334200",
                "md5": "1229508da333158b284422831f3a2753",
                "sha256": "fa2a1e7db3840bfafc8cad9376bf327b55c8e2de0879c39457a727f8d931a8d4"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1229508da333158b284422831f3a2753",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 465390,
            "upload_time": "2024-09-07T11:47:57",
            "upload_time_iso_8601": "2024-09-07T11:47:57.960869Z",
            "url": "https://files.pythonhosted.org/packages/86/d2/88e154f764142043aa559931f56bac8560a44fa1ed95306b6ee025334200/gtdb_tree-0.1.9-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32c55e699644106967ee98b362762266b864f13874bcf3108fe28cf9d8f97cdc",
                "md5": "6023af1b3901d191143445d1565b3394",
                "sha256": "841bfc568450d96daf6de22544fb2e7be580b231a328bad093b2b5eac4e251a3"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6023af1b3901d191143445d1565b3394",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 445070,
            "upload_time": "2024-09-07T11:47:59",
            "upload_time_iso_8601": "2024-09-07T11:47:59.713026Z",
            "url": "https://files.pythonhosted.org/packages/32/c5/5e699644106967ee98b362762266b864f13874bcf3108fe28cf9d8f97cdc/gtdb_tree-0.1.9-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9cd0a0d0837d56d3933c184b33c5de19dca42aea21a600a89a1cb4e0fbfef3a",
                "md5": "a4b2defdc4b01a14a58d31085197821b",
                "sha256": "079df8ecfa3a35490b5533b9fcc4a87e4ddd9442e0082fb5af966a78d07de6ac"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a4b2defdc4b01a14a58d31085197821b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 282641,
            "upload_time": "2024-09-07T11:48:01",
            "upload_time_iso_8601": "2024-09-07T11:48:01.028854Z",
            "url": "https://files.pythonhosted.org/packages/b9/cd/0a0d0837d56d3933c184b33c5de19dca42aea21a600a89a1cb4e0fbfef3a/gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bb5f49e57441159e9877461cf9399320aece8f525c553045ea3a7f7756b07ea",
                "md5": "d54b7c8a0511805d33ff40dc51407795",
                "sha256": "bab2080f7f7532f5f7574a5d2a39ffd3c4c59650f7efebd28cdbec1c96b8313e"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d54b7c8a0511805d33ff40dc51407795",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 287768,
            "upload_time": "2024-09-07T11:48:02",
            "upload_time_iso_8601": "2024-09-07T11:48:02.574309Z",
            "url": "https://files.pythonhosted.org/packages/3b/b5/f49e57441159e9877461cf9399320aece8f525c553045ea3a7f7756b07ea/gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c7f0ce98f3d88e4fd39dba9a9cc7b8861ca8afb962ce762dc0d81cce20a4397",
                "md5": "20657614b9af27ca1a7d0f66c14f5861",
                "sha256": "238c2c202c6c14e64e16a7b1ecb4d33dfde015957dc6315a4b10925b0b3acef3"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "20657614b9af27ca1a7d0f66c14f5861",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 313504,
            "upload_time": "2024-09-07T11:48:03",
            "upload_time_iso_8601": "2024-09-07T11:48:03.848611Z",
            "url": "https://files.pythonhosted.org/packages/8c/7f/0ce98f3d88e4fd39dba9a9cc7b8861ca8afb962ce762dc0d81cce20a4397/gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59fb12e81a98e50cffb2dba639f34b9aa8b0d8bc22f01eb9e1173a24f88576d4",
                "md5": "00973887fe15c87340ec7fce6014edd2",
                "sha256": "b3921ef389e3bc1e0160e34d972397891b865c083caf71e3f2daab7af85a3c8b"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "00973887fe15c87340ec7fce6014edd2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 323181,
            "upload_time": "2024-09-07T11:48:05",
            "upload_time_iso_8601": "2024-09-07T11:48:05.436421Z",
            "url": "https://files.pythonhosted.org/packages/59/fb/12e81a98e50cffb2dba639f34b9aa8b0d8bc22f01eb9e1173a24f88576d4/gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72778e704691ab2d8345c8b22a8848dcbbf2ee6fbf528eb26f84a7c29e7e5ab0",
                "md5": "52ee07b974cbd75c75c63225ae74ebc8",
                "sha256": "fd1fe35d39e0751a2c939a917370f67445f7a4762ac4854602a1581ce4d9a98a"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52ee07b974cbd75c75c63225ae74ebc8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 277211,
            "upload_time": "2024-09-07T11:48:06",
            "upload_time_iso_8601": "2024-09-07T11:48:06.709130Z",
            "url": "https://files.pythonhosted.org/packages/72/77/8e704691ab2d8345c8b22a8848dcbbf2ee6fbf528eb26f84a7c29e7e5ab0/gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d8a6ecc13c2de98d8ab3bf5b749a1cd4a73f1d1db9ecc7d22156f38dab4e76f",
                "md5": "2fc06b29580fe8cbdd1458bafb1ad76c",
                "sha256": "7fbaa8398d376705f9d419a4b9538c835f22c3ca04a0e09ad8a65f15e5ecb1bd"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2fc06b29580fe8cbdd1458bafb1ad76c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 292658,
            "upload_time": "2024-09-07T11:48:08",
            "upload_time_iso_8601": "2024-09-07T11:48:08.031167Z",
            "url": "https://files.pythonhosted.org/packages/2d/8a/6ecc13c2de98d8ab3bf5b749a1cd4a73f1d1db9ecc7d22156f38dab4e76f/gtdb_tree-0.1.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3dae183be9de0a9254b814b622e259e623633f5295c721b613d60d3a3fce1f5d",
                "md5": "62737e606fcf22f3f7d46f295159cae8",
                "sha256": "93005f5f5fc91a63c4a829cc03bf779d4c024cfd3a7a84a644806c88b59730a1"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "62737e606fcf22f3f7d46f295159cae8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 459183,
            "upload_time": "2024-09-07T11:48:09",
            "upload_time_iso_8601": "2024-09-07T11:48:09.316516Z",
            "url": "https://files.pythonhosted.org/packages/3d/ae/183be9de0a9254b814b622e259e623633f5295c721b613d60d3a3fce1f5d/gtdb_tree-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a39b1849284c33836cfa3d8b7031bd337e044643c1348f1284e047a6055e10fc",
                "md5": "e6e59ea2bcaea0d5fb7f965aef149646",
                "sha256": "bc8ea006fec2058ce8e0eeb8371a2c49f80a8f81e6b75a8cb24452ca62d32f55"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e6e59ea2bcaea0d5fb7f965aef149646",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 543378,
            "upload_time": "2024-09-07T11:48:10",
            "upload_time_iso_8601": "2024-09-07T11:48:10.746932Z",
            "url": "https://files.pythonhosted.org/packages/a3/9b/1849284c33836cfa3d8b7031bd337e044643c1348f1284e047a6055e10fc/gtdb_tree-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a77df65237822d1126bd93bdc8a1312e61600c82bd3cbd1a8e9c7fb0e2ac4aa2",
                "md5": "3b098f313094c594dbdc7e36be42f7bd",
                "sha256": "c823582248ef837fe6ea44e4a8fe352e1fa02167e0f58157127fd2936dbc6512"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3b098f313094c594dbdc7e36be42f7bd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 465168,
            "upload_time": "2024-09-07T11:48:12",
            "upload_time_iso_8601": "2024-09-07T11:48:12.084269Z",
            "url": "https://files.pythonhosted.org/packages/a7/7d/f65237822d1126bd93bdc8a1312e61600c82bd3cbd1a8e9c7fb0e2ac4aa2/gtdb_tree-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7bb1ada5474edf013a513306c8d1f0101f722361e803543fbf13cdcada46c29",
                "md5": "6968c7250710389162bf53429ae11c58",
                "sha256": "4e29fe9e8053d69bf7d831c333f867ae5d61b4e95211761d077877d47a47b51e"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6968c7250710389162bf53429ae11c58",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 444817,
            "upload_time": "2024-09-07T11:48:13",
            "upload_time_iso_8601": "2024-09-07T11:48:13.450541Z",
            "url": "https://files.pythonhosted.org/packages/d7/bb/1ada5474edf013a513306c8d1f0101f722361e803543fbf13cdcada46c29/gtdb_tree-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea625eacfb795d712f0fdf47d2a423dab2cf577b7eacf0c21feccbbf45cca55f",
                "md5": "fbc0f91587c25a4b3b694520f044d627",
                "sha256": "3a56ad2015ff7bc1e3855f072d077cb05fa633598f4e29bb184042ab8a9a708a"
            },
            "downloads": -1,
            "filename": "gtdb_tree-0.1.9.tar.gz",
            "has_sig": false,
            "md5_digest": "fbc0f91587c25a4b3b694520f044d627",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 8913,
            "upload_time": "2024-09-07T11:48:15",
            "upload_time_iso_8601": "2024-09-07T11:48:15.266644Z",
            "url": "https://files.pythonhosted.org/packages/ea/62/5eacfb795d712f0fdf47d2a423dab2cf577b7eacf0c21feccbbf45cca55f/gtdb_tree-0.1.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-07 11:48:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "eric9n",
    "github_project": "gtdb_tree",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gtdb-tree"
}
        
Elapsed time: 0.80850s