treevalue


Nametreevalue JSON
Version 1.4.12 PyPI version JSON
download
home_pagehttps://github.com/HansBug/treevalue
SummaryA flexible, generalized tree-based data structure.
upload_time2023-08-14 05:41:02
maintainer
docs_urlNone
authorHansBug, DI-engine's Contributors
requires_python>=3.7
licenseApache License, Version 2.0
keywords tree-structured value management
VCS
bugtrack_url
requirements enum_tools graphviz dill click hbutils
Travis-CI No Travis.
coveralls test coverage
            <div align="center">
    <a href="https://opendilab.github.io/treevalue/"><img width="1000px" height="auto" src="https://github.com/opendilab/treevalue/blob/main/docs/source/_static/title-banner.png"></a>
</div>

---

[![Twitter](https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Ftwitter.com%2Fopendilab)](https://twitter.com/opendilab)
[![PyPI](https://img.shields.io/pypi/v/treevalue)](https://pypi.org/project/treevalue/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/treevalue)
![Loc](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/HansBug/ff0bc026423888cd7c4f287eaed4b3f5/raw/loc.json)
![Comments](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/HansBug/ff0bc026423888cd7c4f287eaed4b3f5/raw/comments.json)

[![Docs Deploy](https://github.com/opendilab/treevalue/workflows/Docs%20Deploy/badge.svg)](https://github.com/opendilab/treevalue/actions?query=workflow%3A%22Docs+Deploy%22)
[![Code Test](https://github.com/opendilab/treevalue/workflows/Code%20Test/badge.svg)](https://github.com/opendilab/treevalue/actions?query=workflow%3A%22Code+Test%22)
[![Badge Creation](https://github.com/opendilab/treevalue/workflows/Badge%20Creation/badge.svg)](https://github.com/opendilab/treevalue/actions?query=workflow%3A%22Badge+Creation%22)
[![Package Release](https://github.com/opendilab/treevalue/workflows/Package%20Release/badge.svg)](https://github.com/opendilab/treevalue/actions?query=workflow%3A%22Package+Release%22)
[![codecov](https://codecov.io/gh/opendilab/treevalue/branch/main/graph/badge.svg?token=XJVDP4EFAT)](https://codecov.io/gh/opendilab/treevalue)

![GitHub Org's stars](https://img.shields.io/github/stars/opendilab)
[![GitHub stars](https://img.shields.io/github/stars/opendilab/treevalue)](https://github.com/opendilab/treevalue/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/opendilab/treevalue)](https://github.com/opendilab/treevalue/network)
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/opendilab/treevalue)
[![GitHub issues](https://img.shields.io/github/issues/opendilab/treevalue)](https://github.com/opendilab/treevalue/issues)
[![GitHub pulls](https://img.shields.io/github/issues-pr/opendilab/treevalue)](https://github.com/opendilab/treevalue/pulls)
[![Contributors](https://img.shields.io/github/contributors/opendilab/treevalue)](https://github.com/opendilab/treevalue/graphs/contributors)
[![GitHub license](https://img.shields.io/github/license/opendilab/treevalue)](https://github.com/opendilab/treevalue/blob/master/LICENSE)

`TreeValue` is a generalized tree-based data structure mainly developed by [OpenDILab Contributors](https://github.com/opendilab).

Almost all the operations can be supported in the form of trees in a convenient way to simplify the structure processing when the calculation is tree-based.

## Outline

* [Overview](#overview)
* [Getting Started](#getting-started)
    * [Prerequisite](#prerequisite)
    * [Installation](#installation)
    * [Quick Usage](#quick-usage)
    * [Tutorials](#tutorials)
    * [External](#external)
* [Speed Performance](#speed-performance)
* [Change Log](#change-log)
* [Feedback and Contribute](#feedback-and-contribute)
* [Citation](#citation)
* [License](#license)

## Overview

When we build a complex nested structure, we need to model it as a tree structure, and the native list and dict in Python are often used to solve this problem. However, it takes a lot of codes and some complex and non-intuitive calculation logic, which is not easy to modify and extend related code and data, and parallelization is impossible.

Therefore, we need a kind of more proper data container, named `TreeValue`. It is designed for solving the following problems:

- **Ease of Use**: When the existing operations are applied to tree structures such as dict, they will become completely unrecognizable, with really low readability and maintainability.
- **Diversity of Data**: In the tree structure operation, various abnormal conditions (structure mismatch, missing key-value, type mismatch, etc.) occur from time to time, and the code will be more complicated if it needs to be handled properly.
- **Scalability and Parallelization**: When any multivariate operation is performed, the calculation logic needs to be redesigned under the native Python code implementation, and the processing will be more complicated and confusing, and the code quality is difficult to control.

## Getting Started

### Prerequisite

`treevalue` has been fully tested in the Linux, macOS and Windows environments and with multiple Python versions, and it works properly on all these platforms.

However, **`treevalue` currently does not support PyPy**, so just pay attention to this when using it.

### Installation

You can simply install it with `pip` command line from the official PyPI site.

```shell
pip install treevalue
```

Or just from the source code on github

```shell
pip install git+https://github.com/opendilab/treevalue.git@main
```

For more information about installation, you can refer to the [installation guide](https://opendilab.github.io/treevalue/main/tutorials/installation/index.html).

After this, you can check if the installation is processed properly with the following code

```python
from treevalue import __version__
print('TreeValue version is', __version__)
```

### Quick Usage

You can easily create a tree value object based on `FastTreeValue`.

```python
from treevalue import FastTreeValue

if __name__ == '__main__':
    t = FastTreeValue({
        'a': 1,
        'b': 2.3,
        'x': {
            'c': 'str',
            'd': [1, 2, None],
            'e': b'bytes',
        }
    })
    print(t)

```

The result should be

```text
<FastTreeValue 0x7f6c7df00160 keys: ['a', 'b', 'x']>
├── 'a' --> 1
├── 'b' --> 2.3
└── 'x' --> <FastTreeValue 0x7f6c81150860 keys: ['c', 'd', 'e']>
    ├── 'c' --> 'str'
    ├── 'd' --> [1, 2, None]
    └── 'e' --> b'bytes'
```

And `t` is structure should be like this

![](https://opendilab.github.io/treevalue/main/_images/simple_demo.dat.svg)

Not only a visible tree structure, but abundant operation supports is provided. 
You can just put objects (such as `torch.Tensor`, or any other types) here and just 
call their methods, like this

```python
import torch

from treevalue import FastTreeValue

t = FastTreeValue({
    'a': torch.rand(2, 5),
    'x': {
        'c': torch.rand(3, 4),
    }
})

print(t)
# <FastTreeValue 0x7f8c069346a0>
# ├── a --> tensor([[0.3606, 0.2583, 0.3843, 0.8611, 0.5130],
# │                 [0.0717, 0.1370, 0.1724, 0.7627, 0.7871]])
# └── x --> <FastTreeValue 0x7f8ba6130f40>
#     └── c --> tensor([[0.2320, 0.6050, 0.6844, 0.3609],
#                       [0.0084, 0.0816, 0.8740, 0.3773],
#                       [0.6523, 0.4417, 0.6413, 0.8965]])

print(t.shape)  # property access
# <FastTreeValue 0x7f8c06934ac0>
# ├── a --> torch.Size([2, 5])
# └── x --> <FastTreeValue 0x7f8c069346d0>
#     └── c --> torch.Size([3, 4])
print(t.sin())  # method call
# <FastTreeValue 0x7f8c06934b80>
# ├── a --> tensor([[0.3528, 0.2555, 0.3749, 0.7586, 0.4908],
# │                 [0.0716, 0.1365, 0.1715, 0.6909, 0.7083]])
# └── x --> <FastTreeValue 0x7f8c06934b20>
#     └── c --> tensor([[0.2300, 0.5688, 0.6322, 0.3531],
#                       [0.0084, 0.0816, 0.7669, 0.3684],
#                       [0.6070, 0.4275, 0.5982, 0.7812]])
print(t.reshape((2, -1)))  # method with arguments
# <FastTreeValue 0x7f8c06934b80>
# ├── a --> tensor([[0.3606, 0.2583, 0.3843, 0.8611, 0.5130],
# │                 [0.0717, 0.1370, 0.1724, 0.7627, 0.7871]])
# └── x --> <FastTreeValue 0x7f8c06934b20>
#     └── c --> tensor([[0.2320, 0.6050, 0.6844, 0.3609, 0.0084, 0.0816],
#                       [0.8740, 0.3773, 0.6523, 0.4417, 0.6413, 0.8965]])
print(t[:, 1:-1])  # index operator
# <FastTreeValue 0x7f8ba5c8eca0>
# ├── a --> tensor([[0.2583, 0.3843, 0.8611],
# │                 [0.1370, 0.1724, 0.7627]])
# └── x --> <FastTreeValue 0x7f8ba5c8ebe0>
#     └── c --> tensor([[0.6050, 0.6844],
#                       [0.0816, 0.8740],
#                       [0.4417, 0.6413]])
print(1 + (t - 0.8) ** 2 * 1.5)  # math operators
# <FastTreeValue 0x7fdfa5836b80>
# ├── a --> tensor([[1.6076, 1.0048, 1.0541, 1.3524, 1.0015],
# │                 [1.0413, 1.8352, 1.2328, 1.7904, 1.0088]])
# └── x --> <FastTreeValue 0x7fdfa5836880>
#     └── c --> tensor([[1.1550, 1.0963, 1.3555, 1.2030],
#                       [1.0575, 1.4045, 1.0041, 1.0638],
#                       [1.0782, 1.0037, 1.5075, 1.0658]])
```



### Tutorials

For more examples, explanations and further usages, take a look at:

* [Quick Start](https://opendilab.github.io/treevalue/main/tutorials/quick_start/index.html)
    * [Create a Simplest Tree](https://opendilab.github.io/treevalue/main/tutorials/quick_start/index.html#create-a-simplest-tree)
    * [Create a Slightly Complex Tree](https://opendilab.github.io/treevalue/main/tutorials/quick_start/index.html#create-a-slightly-complex-tree)
* [Basic Usage](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html)
    * [Create a Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#create-a-tree)
    * [Edit a Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#edit-the-tree)
    * [Do Index or Slice Calculation on The Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#do-index-or-slice-calculation-on-the-tree)
    * [Do Math Calculation on The Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#do-calculation-on-the-tree)
    * [Make Function Tree-Supported](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#make-function-tree-supported)
* [Advanced Usage](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html)
    * [Function Modes](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#function-modes)
    * [Inheriting on Trees](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#inheriting-on-trees)
    * [Process Missing Values](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#process-missing-values)
    * [Functional Utilities](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#functional-utilities)
    * [Structural Utilities](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#structural-utilities)
    * [Tree Utilities](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#tree-utilities)
    * [Flatten Utilities](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#flatten-utilities)
    * [IO Utilities](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#io-utilities)
    * [Object Oriented Usage](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#object-oriented-usage)
    * [Costumize My TreeValue Class](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#diy-treevalue-class)
    * [Visualization of TreeValue](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#draw-graph-for-treevalue)

### External

We provide an official treevalue-based-wrapper for numpy and torch called [DI-treetensor](https://github.com/opendilab/DI-treetensor) since the `treevalue` is often used with libraries like `numpy` and `torch`. It will actually be helpful while working with AI fields.



## Speed Performance

Here is the speed performance of all the operations in `FastTreeValue`; the following table is the performance comparison result with [dm-tree](https://github.com/deepmind/tree).
(In DM-Tree, the `unflatten` operation is different from that in TreeValue, see: [Comparison Between TreeValue and DM-Tree](https://opendilab.github.io/treevalue/main/comparison/dmtree.result.html) for more details.)

|                                                     |     flatten      |  flatten(with path)   |        mapping        |     mapping(with path)      |
| --------------------------------------------------- | :--------------: | :-------------------: | :-------------------: | :-------------------------: |
| [treevalue](https://github.com/opendilab/treevalue) |       ---        | **511 ns ± 6.92 ns**  | **3.16 µs ± 42.8 ns** |     **1.58 µs ± 30 ns**     |
|                                                     |   **flatten**    | **flatten_with_path** |   **map_structure**   | **map_structure_with_path** |
| [dm-tree](https://github.com/deepmind/tree)         | 830 ns ± 8.53 ns |   11.9 µs ± 358 ns    |   13.3 µs ± 87.2 ns   |      62.9 µs ± 2.26 µs      |

The following 2 tables are the performance comparison result with [jax pytree](https://github.com/google/jax).

|                                                     |        mapping        |  mapping(with path)   |       flatten        |      unflatten       |    flatten_values    |     flatten_keys     |
| --------------------------------------------------- | :-------------------: | :-------------------: | :------------------: | :------------------: | :------------------: | :------------------: |
| [treevalue](https://github.com/opendilab/treevalue) | **2.21 µs ± 32.2 ns** | **2.16 µs ± 123 ns**  | **515 ns ± 7.53 ns** | **601 ns ± 5.99 ns** | **301 ns ± 12.9 ns** | **451 ns ± 17.3 ns** |
|                                                     |     **tree_map**      | **(Not Implemented)** |   **tree_flatten**   |  **tree_unflatten**  |   **tree_leaves**    |  **tree_structure**  |
| [jax pytree](https://github.com/google/jax)         |   4.67 µs ± 184 ns    |          ---          |  1.29 µs ± 27.2 ns   |   742 ns ± 5.82 ns   |   1.29 µs ± 22 ns    |  1.27 µs ± 16.5 ns   |

|                                                     |    flatten + all     |   flatten + reduce   | flatten + reduce(with init) | rise(given structure) | rise(automatic structure) |
| --------------------------------------------------- | :------------------: | :------------------: | :-------------------------: | :-------------------: | :-----------------------: |
| [treevalue](https://github.com/opendilab/treevalue) | **425 ns ± 9.33 ns** | **702 ns ± 5.93 ns** |    **793 ns ± 13.4 ns**     | **9.14 µs ± 129 ns**  |   **11.5 µs ± 182 ns**    |
|                                                     |     **tree_all**     |   **tree_reduce**    | **tree_reduce(with init)**  |  **tree_transpose**   |   **(Not Implemented)**   |
| [jax pytree](https://github.com/google/jax)         |   1.47 µs ± 37 ns    |  1.88 µs ± 27.2 ns   |      1.91 µs ± 47.4 ns      |    10 µs ± 117 ns     |            ---            |

This is the comparison between dm-tree, jax-libtree and us, with `flatten` and `mapping` operations (**lower value means less time cost and runs faster**)

![Time cost of flatten operation](docs/source/_static/Time%20cost%20of%20flatten%20operation.svg)

![Time cost of mapping operation](docs/source/_static/Time%20cost%20of%20mapping%20operation.svg)

The following table is the performance comparison result with [tianshou Batch](https://github.com/thu-ml/tianshou).

|                                                      |          get           |          set           |         init         |       deepcopy       |        stack         |          cat          |       split        |
| ---------------------------------------------------- | :--------------------: | :--------------------: | :------------------: | :------------------: | :------------------: | :-------------------: | :----------------: |
| [treevalue](https://github.com/opendilab/treevalue)  |   51.6 ns ± 0.609 ns   | **64.4 ns ± 0.564 ns** | **750 ns ± 14.2 ns** | **88.9 µs ± 887 ns** | **50.2 µs ± 771 ns** | **40.3 µs ± 1.08 µs** | **62 µs ± 1.2 µs** |
| [tianshou Batch](https://github.com/thu-ml/tianshou) | **43.2 ns ± 0.698 ns** |    396 ns ± 8.99 ns    |   11.1 µs ± 277 ns   |   89 µs ± 1.42 µs    |   119 µs ± 1.1 µs    |   194 µs ± 1.81 µs    |  653 µs ± 17.8 µs  |

And this is the comparison between Tianshou Batch and us, with `cat` , `stack` and `split` operations (**lower value means less time cost and runs faster**)

![Time cost of cat operation](docs/source/_static/Time%20cost%20of%20cat%20operation.svg)

![Time cost of stack operation](docs/source/_static/Time%20cost%20of%20stack%20operation.svg)

![Time cost of split operation](docs/source/_static/Time%20cost%20of%20split%20operation.svg)

Test benchmark code can be found here:

* [Comparison with dm-tree](https://github.com/opendilab/treevalue/blob/main/test/compare/deepmind/test_dm_tree.py)
* [Comparison with jax-libtree](https://github.com/opendilab/treevalue/blob/main/test/compare/jax/test_jax.py)
* [Comparison with tianshou Batch](https://github.com/opendilab/treevalue/blob/main/test/compare/tianshou/test_tianshou_batch.py)

## Change Log

<details><summary><b>Version History</b> <i>[click to expand]</i></summary>
<div>

* 2022-05-03
        1.3.1: Change definition of getitem, setitem and delitem; add pop method for TreeValue class.
* 2022-03-15
        1.3.0: Add getitem, setitem and delitem for adding, editing and removing items in TreeValue class.
* 2022-02-22
  	1.2.2: Optimize union function; add walk utility method.
* 2022-01-26
        1.2.1: Update tree printing; add keys, values, items on TreeValue; add comparision to facebook nest library.
* 2022-01-04
        1.2.0: Add flatten_values and flatten_keys; fix problem in mapping function; add support for potc.
* 2021-12-03
        1.1.0: Add version information; fix bug of default value; add flatten and unflatten; optimization speed performance.
* 2021-10-24
        1.0.0: Greatly optimize the speed performance using cython, overhead has been reduced to a negligible level.
    </div>
    </details>

## Feedback and Contribute

Welcome to **OpenDILab** community - treevalue!

If you meet some problem or have some brilliant ideas, you can [file an issue](https://github.com/opendilab/treevalue/issues/new/choose).

<b>Scan the QR code and add us on Wechat:</b>

<div align="center">
<img src='https://github.com/opendilab/DI-engine/raw/main/assets/wechat.png' width="25%" />
</div>

Or just contact us with [slack](https://opendilab.slack.com/join/shared_invite/zt-v9tmv4fp-nUBAQEH1_Kuyu_q4plBssQ#/shared-invite/email) or email (opendilab.contact@gmail.com).

Please check [Contributing Guidances](https://github.com/opendilab/treevalue/blob/main/CONTRIBUTING.md).

Thanks to the following contributors! 

<a href="https://github.com/opendilab/treevalue/graphs/contributors">
  <img src="https://contrib.rocks/image?repo=opendilab/treevalue" />
</a>

## Citation

```
@misc{treevalue,
    title={{TreeValue} - Tree-Structure Computing Solution},
    author={TreeValue Contributors},
    publisher = {GitHub},
    howpublished = {\url{https://github.com/opendilab/treevalue}},
    year={2021},
}
```

## License

`treevalue` released under the Apache 2.0 license. See the [LICENSE](./LICENSE) file for details.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/HansBug/treevalue",
    "name": "treevalue",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Tree-structured Value Management",
    "author": "HansBug, DI-engine's Contributors",
    "author_email": "hansbug@buaa.edu.cn",
    "download_url": "https://files.pythonhosted.org/packages/1a/7a/63248426a995c988d6dfb580ee41af1c78ad7495d60838aae5037a27c6b7/treevalue-1.4.12.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n    <a href=\"https://opendilab.github.io/treevalue/\"><img width=\"1000px\" height=\"auto\" src=\"https://github.com/opendilab/treevalue/blob/main/docs/source/_static/title-banner.png\"></a>\n</div>\n\n---\n\n[![Twitter](https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Ftwitter.com%2Fopendilab)](https://twitter.com/opendilab)\n[![PyPI](https://img.shields.io/pypi/v/treevalue)](https://pypi.org/project/treevalue/)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/treevalue)\n![Loc](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/HansBug/ff0bc026423888cd7c4f287eaed4b3f5/raw/loc.json)\n![Comments](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/HansBug/ff0bc026423888cd7c4f287eaed4b3f5/raw/comments.json)\n\n[![Docs Deploy](https://github.com/opendilab/treevalue/workflows/Docs%20Deploy/badge.svg)](https://github.com/opendilab/treevalue/actions?query=workflow%3A%22Docs+Deploy%22)\n[![Code Test](https://github.com/opendilab/treevalue/workflows/Code%20Test/badge.svg)](https://github.com/opendilab/treevalue/actions?query=workflow%3A%22Code+Test%22)\n[![Badge Creation](https://github.com/opendilab/treevalue/workflows/Badge%20Creation/badge.svg)](https://github.com/opendilab/treevalue/actions?query=workflow%3A%22Badge+Creation%22)\n[![Package Release](https://github.com/opendilab/treevalue/workflows/Package%20Release/badge.svg)](https://github.com/opendilab/treevalue/actions?query=workflow%3A%22Package+Release%22)\n[![codecov](https://codecov.io/gh/opendilab/treevalue/branch/main/graph/badge.svg?token=XJVDP4EFAT)](https://codecov.io/gh/opendilab/treevalue)\n\n![GitHub Org's stars](https://img.shields.io/github/stars/opendilab)\n[![GitHub stars](https://img.shields.io/github/stars/opendilab/treevalue)](https://github.com/opendilab/treevalue/stargazers)\n[![GitHub forks](https://img.shields.io/github/forks/opendilab/treevalue)](https://github.com/opendilab/treevalue/network)\n![GitHub commit activity](https://img.shields.io/github/commit-activity/m/opendilab/treevalue)\n[![GitHub issues](https://img.shields.io/github/issues/opendilab/treevalue)](https://github.com/opendilab/treevalue/issues)\n[![GitHub pulls](https://img.shields.io/github/issues-pr/opendilab/treevalue)](https://github.com/opendilab/treevalue/pulls)\n[![Contributors](https://img.shields.io/github/contributors/opendilab/treevalue)](https://github.com/opendilab/treevalue/graphs/contributors)\n[![GitHub license](https://img.shields.io/github/license/opendilab/treevalue)](https://github.com/opendilab/treevalue/blob/master/LICENSE)\n\n`TreeValue` is a generalized tree-based data structure mainly developed by [OpenDILab Contributors](https://github.com/opendilab).\n\nAlmost all the operations can be supported in the form of trees in a convenient way to simplify the structure processing when the calculation is tree-based.\n\n## Outline\n\n* [Overview](#overview)\n* [Getting Started](#getting-started)\n    * [Prerequisite](#prerequisite)\n    * [Installation](#installation)\n    * [Quick Usage](#quick-usage)\n    * [Tutorials](#tutorials)\n    * [External](#external)\n* [Speed Performance](#speed-performance)\n* [Change Log](#change-log)\n* [Feedback and Contribute](#feedback-and-contribute)\n* [Citation](#citation)\n* [License](#license)\n\n## Overview\n\nWhen we build a complex nested structure, we need to model it as a tree structure, and the native list and dict in Python are often used to solve this problem. However, it takes a lot of codes and some complex and non-intuitive calculation logic, which is not easy to modify and extend related code and data, and parallelization is impossible.\n\nTherefore, we need a kind of more proper data container, named `TreeValue`. It is designed for solving the following problems:\n\n- **Ease of Use**: When the existing operations are applied to tree structures such as dict, they will become completely unrecognizable, with really low readability and maintainability.\n- **Diversity of Data**: In the tree structure operation, various abnormal conditions (structure mismatch, missing key-value, type mismatch, etc.) occur from time to time, and the code will be more complicated if it needs to be handled properly.\n- **Scalability and Parallelization**: When any multivariate operation is performed, the calculation logic needs to be redesigned under the native Python code implementation, and the processing will be more complicated and confusing, and the code quality is difficult to control.\n\n## Getting Started\n\n### Prerequisite\n\n`treevalue` has been fully tested in the Linux, macOS and Windows environments and with multiple Python versions, and it works properly on all these platforms.\n\nHowever, **`treevalue` currently does not support PyPy**, so just pay attention to this when using it.\n\n### Installation\n\nYou can simply install it with `pip` command line from the official PyPI site.\n\n```shell\npip install treevalue\n```\n\nOr just from the source code on github\n\n```shell\npip install git+https://github.com/opendilab/treevalue.git@main\n```\n\nFor more information about installation, you can refer to the [installation guide](https://opendilab.github.io/treevalue/main/tutorials/installation/index.html).\n\nAfter this, you can check if the installation is processed properly with the following code\n\n```python\nfrom treevalue import __version__\nprint('TreeValue version is', __version__)\n```\n\n### Quick Usage\n\nYou can easily create a tree value object based on `FastTreeValue`.\n\n```python\nfrom treevalue import FastTreeValue\n\nif __name__ == '__main__':\n    t = FastTreeValue({\n        'a': 1,\n        'b': 2.3,\n        'x': {\n            'c': 'str',\n            'd': [1, 2, None],\n            'e': b'bytes',\n        }\n    })\n    print(t)\n\n```\n\nThe result should be\n\n```text\n<FastTreeValue 0x7f6c7df00160 keys: ['a', 'b', 'x']>\n\u251c\u2500\u2500 'a' --> 1\n\u251c\u2500\u2500 'b' --> 2.3\n\u2514\u2500\u2500 'x' --> <FastTreeValue 0x7f6c81150860 keys: ['c', 'd', 'e']>\n    \u251c\u2500\u2500 'c' --> 'str'\n    \u251c\u2500\u2500 'd' --> [1, 2, None]\n    \u2514\u2500\u2500 'e' --> b'bytes'\n```\n\nAnd `t` is structure should be like this\n\n![](https://opendilab.github.io/treevalue/main/_images/simple_demo.dat.svg)\n\nNot only a visible tree structure, but abundant operation supports is provided. \nYou can just put objects (such as `torch.Tensor`, or any other types) here and just \ncall their methods, like this\n\n```python\nimport torch\n\nfrom treevalue import FastTreeValue\n\nt = FastTreeValue({\n    'a': torch.rand(2, 5),\n    'x': {\n        'c': torch.rand(3, 4),\n    }\n})\n\nprint(t)\n# <FastTreeValue 0x7f8c069346a0>\n# \u251c\u2500\u2500 a --> tensor([[0.3606, 0.2583, 0.3843, 0.8611, 0.5130],\n# \u2502                 [0.0717, 0.1370, 0.1724, 0.7627, 0.7871]])\n# \u2514\u2500\u2500 x --> <FastTreeValue 0x7f8ba6130f40>\n#     \u2514\u2500\u2500 c --> tensor([[0.2320, 0.6050, 0.6844, 0.3609],\n#                       [0.0084, 0.0816, 0.8740, 0.3773],\n#                       [0.6523, 0.4417, 0.6413, 0.8965]])\n\nprint(t.shape)  # property access\n# <FastTreeValue 0x7f8c06934ac0>\n# \u251c\u2500\u2500 a --> torch.Size([2, 5])\n# \u2514\u2500\u2500 x --> <FastTreeValue 0x7f8c069346d0>\n#     \u2514\u2500\u2500 c --> torch.Size([3, 4])\nprint(t.sin())  # method call\n# <FastTreeValue 0x7f8c06934b80>\n# \u251c\u2500\u2500 a --> tensor([[0.3528, 0.2555, 0.3749, 0.7586, 0.4908],\n# \u2502                 [0.0716, 0.1365, 0.1715, 0.6909, 0.7083]])\n# \u2514\u2500\u2500 x --> <FastTreeValue 0x7f8c06934b20>\n#     \u2514\u2500\u2500 c --> tensor([[0.2300, 0.5688, 0.6322, 0.3531],\n#                       [0.0084, 0.0816, 0.7669, 0.3684],\n#                       [0.6070, 0.4275, 0.5982, 0.7812]])\nprint(t.reshape((2, -1)))  # method with arguments\n# <FastTreeValue 0x7f8c06934b80>\n# \u251c\u2500\u2500 a --> tensor([[0.3606, 0.2583, 0.3843, 0.8611, 0.5130],\n# \u2502                 [0.0717, 0.1370, 0.1724, 0.7627, 0.7871]])\n# \u2514\u2500\u2500 x --> <FastTreeValue 0x7f8c06934b20>\n#     \u2514\u2500\u2500 c --> tensor([[0.2320, 0.6050, 0.6844, 0.3609, 0.0084, 0.0816],\n#                       [0.8740, 0.3773, 0.6523, 0.4417, 0.6413, 0.8965]])\nprint(t[:, 1:-1])  # index operator\n# <FastTreeValue 0x7f8ba5c8eca0>\n# \u251c\u2500\u2500 a --> tensor([[0.2583, 0.3843, 0.8611],\n# \u2502                 [0.1370, 0.1724, 0.7627]])\n# \u2514\u2500\u2500 x --> <FastTreeValue 0x7f8ba5c8ebe0>\n#     \u2514\u2500\u2500 c --> tensor([[0.6050, 0.6844],\n#                       [0.0816, 0.8740],\n#                       [0.4417, 0.6413]])\nprint(1 + (t - 0.8) ** 2 * 1.5)  # math operators\n# <FastTreeValue 0x7fdfa5836b80>\n# \u251c\u2500\u2500 a --> tensor([[1.6076, 1.0048, 1.0541, 1.3524, 1.0015],\n# \u2502                 [1.0413, 1.8352, 1.2328, 1.7904, 1.0088]])\n# \u2514\u2500\u2500 x --> <FastTreeValue 0x7fdfa5836880>\n#     \u2514\u2500\u2500 c --> tensor([[1.1550, 1.0963, 1.3555, 1.2030],\n#                       [1.0575, 1.4045, 1.0041, 1.0638],\n#                       [1.0782, 1.0037, 1.5075, 1.0658]])\n```\n\n\n\n### Tutorials\n\nFor more examples, explanations and further usages, take a look at:\n\n* [Quick Start](https://opendilab.github.io/treevalue/main/tutorials/quick_start/index.html)\n    * [Create a Simplest Tree](https://opendilab.github.io/treevalue/main/tutorials/quick_start/index.html#create-a-simplest-tree)\n    * [Create a Slightly Complex Tree](https://opendilab.github.io/treevalue/main/tutorials/quick_start/index.html#create-a-slightly-complex-tree)\n* [Basic Usage](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html)\n    * [Create a Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#create-a-tree)\n    * [Edit a Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#edit-the-tree)\n    * [Do Index or Slice Calculation on The Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#do-index-or-slice-calculation-on-the-tree)\n    * [Do Math Calculation on The Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#do-calculation-on-the-tree)\n    * [Make Function Tree-Supported](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#make-function-tree-supported)\n* [Advanced Usage](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html)\n    * [Function Modes](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#function-modes)\n    * [Inheriting on Trees](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#inheriting-on-trees)\n    * [Process Missing Values](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#process-missing-values)\n    * [Functional Utilities](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#functional-utilities)\n    * [Structural Utilities](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#structural-utilities)\n    * [Tree Utilities](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#tree-utilities)\n    * [Flatten Utilities](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#flatten-utilities)\n    * [IO Utilities](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#io-utilities)\n    * [Object Oriented Usage](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#object-oriented-usage)\n    * [Costumize My TreeValue Class](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#diy-treevalue-class)\n    * [Visualization of TreeValue](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#draw-graph-for-treevalue)\n\n### External\n\nWe provide an official treevalue-based-wrapper for numpy and torch called [DI-treetensor](https://github.com/opendilab/DI-treetensor) since the `treevalue` is often used with libraries like `numpy` and `torch`. It will actually be helpful while working with AI fields.\n\n\n\n## Speed Performance\n\nHere is the speed performance of all the operations in `FastTreeValue`; the following table is the performance comparison result with [dm-tree](https://github.com/deepmind/tree).\n(In DM-Tree, the `unflatten` operation is different from that in TreeValue, see: [Comparison Between TreeValue and DM-Tree](https://opendilab.github.io/treevalue/main/comparison/dmtree.result.html) for more details.)\n\n|                                                     |     flatten      |  flatten(with path)   |        mapping        |     mapping(with path)      |\n| --------------------------------------------------- | :--------------: | :-------------------: | :-------------------: | :-------------------------: |\n| [treevalue](https://github.com/opendilab/treevalue) |       ---        | **511 ns \u00b1 6.92 ns**  | **3.16 \u00b5s \u00b1 42.8 ns** |     **1.58 \u00b5s \u00b1 30 ns**     |\n|                                                     |   **flatten**    | **flatten_with_path** |   **map_structure**   | **map_structure_with_path** |\n| [dm-tree](https://github.com/deepmind/tree)         | 830 ns \u00b1 8.53 ns |   11.9 \u00b5s \u00b1 358 ns    |   13.3 \u00b5s \u00b1 87.2 ns   |      62.9 \u00b5s \u00b1 2.26 \u00b5s      |\n\nThe following 2 tables are the performance comparison result with [jax pytree](https://github.com/google/jax).\n\n|                                                     |        mapping        |  mapping(with path)   |       flatten        |      unflatten       |    flatten_values    |     flatten_keys     |\n| --------------------------------------------------- | :-------------------: | :-------------------: | :------------------: | :------------------: | :------------------: | :------------------: |\n| [treevalue](https://github.com/opendilab/treevalue) | **2.21 \u00b5s \u00b1 32.2 ns** | **2.16 \u00b5s \u00b1 123 ns**  | **515 ns \u00b1 7.53 ns** | **601 ns \u00b1 5.99 ns** | **301 ns \u00b1 12.9 ns** | **451 ns \u00b1 17.3 ns** |\n|                                                     |     **tree_map**      | **(Not Implemented)** |   **tree_flatten**   |  **tree_unflatten**  |   **tree_leaves**    |  **tree_structure**  |\n| [jax pytree](https://github.com/google/jax)         |   4.67 \u00b5s \u00b1 184 ns    |          ---          |  1.29 \u00b5s \u00b1 27.2 ns   |   742 ns \u00b1 5.82 ns   |   1.29 \u00b5s \u00b1 22 ns    |  1.27 \u00b5s \u00b1 16.5 ns   |\n\n|                                                     |    flatten + all     |   flatten + reduce   | flatten + reduce(with init) | rise(given structure) | rise(automatic structure) |\n| --------------------------------------------------- | :------------------: | :------------------: | :-------------------------: | :-------------------: | :-----------------------: |\n| [treevalue](https://github.com/opendilab/treevalue) | **425 ns \u00b1 9.33 ns** | **702 ns \u00b1 5.93 ns** |    **793 ns \u00b1 13.4 ns**     | **9.14 \u00b5s \u00b1 129 ns**  |   **11.5 \u00b5s \u00b1 182 ns**    |\n|                                                     |     **tree_all**     |   **tree_reduce**    | **tree_reduce(with init)**  |  **tree_transpose**   |   **(Not Implemented)**   |\n| [jax pytree](https://github.com/google/jax)         |   1.47 \u00b5s \u00b1 37 ns    |  1.88 \u00b5s \u00b1 27.2 ns   |      1.91 \u00b5s \u00b1 47.4 ns      |    10 \u00b5s \u00b1 117 ns     |            ---            |\n\nThis is the comparison between dm-tree, jax-libtree and us, with `flatten` and `mapping` operations (**lower value means less time cost and runs faster**)\n\n![Time cost of flatten operation](docs/source/_static/Time%20cost%20of%20flatten%20operation.svg)\n\n![Time cost of mapping operation](docs/source/_static/Time%20cost%20of%20mapping%20operation.svg)\n\nThe following table is the performance comparison result with [tianshou Batch](https://github.com/thu-ml/tianshou).\n\n|                                                      |          get           |          set           |         init         |       deepcopy       |        stack         |          cat          |       split        |\n| ---------------------------------------------------- | :--------------------: | :--------------------: | :------------------: | :------------------: | :------------------: | :-------------------: | :----------------: |\n| [treevalue](https://github.com/opendilab/treevalue)  |   51.6 ns \u00b1 0.609 ns   | **64.4 ns \u00b1 0.564 ns** | **750 ns \u00b1 14.2 ns** | **88.9 \u00b5s \u00b1 887 ns** | **50.2 \u00b5s \u00b1 771 ns** | **40.3 \u00b5s \u00b1 1.08 \u00b5s** | **62 \u00b5s \u00b1 1.2 \u00b5s** |\n| [tianshou Batch](https://github.com/thu-ml/tianshou) | **43.2 ns \u00b1 0.698 ns** |    396 ns \u00b1 8.99 ns    |   11.1 \u00b5s \u00b1 277 ns   |   89 \u00b5s \u00b1 1.42 \u00b5s    |   119 \u00b5s \u00b1 1.1 \u00b5s    |   194 \u00b5s \u00b1 1.81 \u00b5s    |  653 \u00b5s \u00b1 17.8 \u00b5s  |\n\nAnd this is the comparison between Tianshou Batch and us, with `cat` , `stack` and `split` operations (**lower value means less time cost and runs faster**)\n\n![Time cost of cat operation](docs/source/_static/Time%20cost%20of%20cat%20operation.svg)\n\n![Time cost of stack operation](docs/source/_static/Time%20cost%20of%20stack%20operation.svg)\n\n![Time cost of split operation](docs/source/_static/Time%20cost%20of%20split%20operation.svg)\n\nTest benchmark code can be found here:\n\n* [Comparison with dm-tree](https://github.com/opendilab/treevalue/blob/main/test/compare/deepmind/test_dm_tree.py)\n* [Comparison with jax-libtree](https://github.com/opendilab/treevalue/blob/main/test/compare/jax/test_jax.py)\n* [Comparison with tianshou Batch](https://github.com/opendilab/treevalue/blob/main/test/compare/tianshou/test_tianshou_batch.py)\n\n## Change Log\n\n<details><summary><b>Version History</b> <i>[click to expand]</i></summary>\n<div>\n\n* 2022-05-03\n        1.3.1: Change definition of getitem, setitem and delitem; add pop method for TreeValue class.\n* 2022-03-15\n        1.3.0: Add getitem, setitem and delitem for adding, editing and removing items in TreeValue class.\n* 2022-02-22\n  \t1.2.2: Optimize union function; add walk utility method.\n* 2022-01-26\n        1.2.1: Update tree printing; add keys, values, items on TreeValue; add comparision to facebook nest library.\n* 2022-01-04\n        1.2.0: Add flatten_values and flatten_keys; fix problem in mapping function; add support for potc.\n* 2021-12-03\n        1.1.0: Add version information; fix bug of default value; add flatten and unflatten; optimization speed performance.\n* 2021-10-24\n        1.0.0: Greatly optimize the speed performance using cython, overhead has been reduced to a negligible level.\n    </div>\n    </details>\n\n## Feedback and Contribute\n\nWelcome to **OpenDILab** community - treevalue!\n\nIf you meet some problem or have some brilliant ideas, you can [file an issue](https://github.com/opendilab/treevalue/issues/new/choose).\n\n<b>Scan the QR code and add us on Wechat:</b>\n\n<div align=\"center\">\n<img src='https://github.com/opendilab/DI-engine/raw/main/assets/wechat.png' width=\"25%\" />\n</div>\n\nOr just contact us with [slack](https://opendilab.slack.com/join/shared_invite/zt-v9tmv4fp-nUBAQEH1_Kuyu_q4plBssQ#/shared-invite/email) or email (opendilab.contact@gmail.com).\n\nPlease check [Contributing Guidances](https://github.com/opendilab/treevalue/blob/main/CONTRIBUTING.md).\n\nThanks to the following contributors! \n\n<a href=\"https://github.com/opendilab/treevalue/graphs/contributors\">\n  <img src=\"https://contrib.rocks/image?repo=opendilab/treevalue\" />\n</a>\n\n## Citation\n\n```\n@misc{treevalue,\n    title={{TreeValue} - Tree-Structure Computing Solution},\n    author={TreeValue Contributors},\n    publisher = {GitHub},\n    howpublished = {\\url{https://github.com/opendilab/treevalue}},\n    year={2021},\n}\n```\n\n## License\n\n`treevalue` released under the Apache 2.0 license. See the [LICENSE](./LICENSE) file for details.\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "A flexible, generalized tree-based data structure.",
    "version": "1.4.12",
    "project_urls": {
        "Homepage": "https://github.com/HansBug/treevalue"
    },
    "split_keywords": [
        "tree-structured",
        "value",
        "management"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4395a76a22f55ce9620994147e6de9a3ca4b981ab7e3d283850d14fd1c2657e5",
                "md5": "98d9c42b8bf6ac829e4abfc67cd067e2",
                "sha256": "debd544e0e4c8528950d2d2755763a324cb006971e59719e22fdc3366638bfd6"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98d9c42b8bf6ac829e4abfc67cd067e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 836152,
            "upload_time": "2023-08-14T05:40:14",
            "upload_time_iso_8601": "2023-08-14T05:40:14.160458Z",
            "url": "https://files.pythonhosted.org/packages/43/95/a76a22f55ce9620994147e6de9a3ca4b981ab7e3d283850d14fd1c2657e5/treevalue-1.4.12-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1b359ade79199a3b3b21a0200515a84847a959f0f045dd684c9618e043d58fe",
                "md5": "b18dbd074da4a1180ffce4339814d30e",
                "sha256": "5794b03312b10e6ae21bee36b736820745bde03f3e654983ba007675e33183ff"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b18dbd074da4a1180ffce4339814d30e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 795745,
            "upload_time": "2023-08-14T05:40:16",
            "upload_time_iso_8601": "2023-08-14T05:40:16.275288Z",
            "url": "https://files.pythonhosted.org/packages/c1/b3/59ade79199a3b3b21a0200515a84847a959f0f045dd684c9618e043d58fe/treevalue-1.4.12-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e94065bc2b2c71f70e51e3044300003a17a49ac2127744106aa46ceb82228959",
                "md5": "21ae27390b83ccfef9f5d02fdd547070",
                "sha256": "ce3ae47f05d7f3ee186268a100fe518217f078a2ffc1a2aba7e3e5acd8a020bc"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21ae27390b83ccfef9f5d02fdd547070",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 4458018,
            "upload_time": "2023-08-14T05:40:18",
            "upload_time_iso_8601": "2023-08-14T05:40:18.119489Z",
            "url": "https://files.pythonhosted.org/packages/e9/40/65bc2b2c71f70e51e3044300003a17a49ac2127744106aa46ceb82228959/treevalue-1.4.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "030686c06d8f23b47695abce4de2fc85e4bbea3b46c691e4df78f68b08cde842",
                "md5": "cc1faad8f1367fb5a985e721d8789848",
                "sha256": "1ccb1cc25c5f4005925bf84c217a603980db8ecaef4ba7bc3fb760374855fd70"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc1faad8f1367fb5a985e721d8789848",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 4483782,
            "upload_time": "2023-08-14T05:40:20",
            "upload_time_iso_8601": "2023-08-14T05:40:20.183773Z",
            "url": "https://files.pythonhosted.org/packages/03/06/86c06d8f23b47695abce4de2fc85e4bbea3b46c691e4df78f68b08cde842/treevalue-1.4.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "623ceb1203e57e1d5cc6d2d37466d14485ea32ced54cfb6ff11ea8da4f130e97",
                "md5": "db744d493562d152f0d1d32f5b452892",
                "sha256": "443098c190845af3871bacae768c1cdcb4ec51c1c33ed334bad3132524147e20"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "db744d493562d152f0d1d32f5b452892",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 536166,
            "upload_time": "2023-08-14T05:40:21",
            "upload_time_iso_8601": "2023-08-14T05:40:21.704794Z",
            "url": "https://files.pythonhosted.org/packages/62/3c/eb1203e57e1d5cc6d2d37466d14485ea32ced54cfb6ff11ea8da4f130e97/treevalue-1.4.12-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eab38b32f525c7165ee7f0c3c762e0a91ab08fece178164a7d960a97c461d577",
                "md5": "1f8262bdcda8f65343c6bd5e7546b1da",
                "sha256": "11c9d25fd96d16a936344dd6634ee7480f4283c1bf1be31f138d43ab1b6940e7"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1f8262bdcda8f65343c6bd5e7546b1da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 602454,
            "upload_time": "2023-08-14T05:40:22",
            "upload_time_iso_8601": "2023-08-14T05:40:22.991464Z",
            "url": "https://files.pythonhosted.org/packages/ea/b3/8b32f525c7165ee7f0c3c762e0a91ab08fece178164a7d960a97c461d577/treevalue-1.4.12-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61cba4eea83c876e376795b9038f7815292cfb95f637d73b65d39e707afef4b8",
                "md5": "8ca4d0dc4312842415d4fa7e94ffbbd3",
                "sha256": "8b9d442ec7572e17a13b853bf4d6d6df208437e4327ff0f4555046b7c4b9d361"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ca4d0dc4312842415d4fa7e94ffbbd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 845439,
            "upload_time": "2023-08-14T05:40:24",
            "upload_time_iso_8601": "2023-08-14T05:40:24.803462Z",
            "url": "https://files.pythonhosted.org/packages/61/cb/a4eea83c876e376795b9038f7815292cfb95f637d73b65d39e707afef4b8/treevalue-1.4.12-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0640f1160968c3debb7f9d6592d86dc542d1752661214badf15acd0965e9876",
                "md5": "7e4ff5a016002eb4f33e819802e713f8",
                "sha256": "66d105668c57ce8fb5f5cf5ebbcde4cc0ddbbaceb64c131448d081aff5624bf5"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7e4ff5a016002eb4f33e819802e713f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 803483,
            "upload_time": "2023-08-14T05:40:26",
            "upload_time_iso_8601": "2023-08-14T05:40:26.116025Z",
            "url": "https://files.pythonhosted.org/packages/c0/64/0f1160968c3debb7f9d6592d86dc542d1752661214badf15acd0965e9876/treevalue-1.4.12-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ddf1f3e5066399657916df941ea0053ffb50b0987a075976f45256aa9fcd046",
                "md5": "a20af9bbba77cb942c5f01fc0b039c89",
                "sha256": "745c76779c3b4dfd0d39b6e282591020b625de46ceca7929d26587bb6285db87"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a20af9bbba77cb942c5f01fc0b039c89",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 4967369,
            "upload_time": "2023-08-14T05:40:28",
            "upload_time_iso_8601": "2023-08-14T05:40:28.006171Z",
            "url": "https://files.pythonhosted.org/packages/9d/df/1f3e5066399657916df941ea0053ffb50b0987a075976f45256aa9fcd046/treevalue-1.4.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a4f6579ec2faf11bb9d000b9f9fb4460e6a8eef1d1f8bbcc86e6ebdb2c01886",
                "md5": "d3e0302449e0d15648cfc9cb2cfb0cec",
                "sha256": "0aa0b0526c35717c67c764f7aa8d4e57c0bcc7f21fcd1b355996b13f109891b5"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3e0302449e0d15648cfc9cb2cfb0cec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 4983073,
            "upload_time": "2023-08-14T05:40:30",
            "upload_time_iso_8601": "2023-08-14T05:40:30.552435Z",
            "url": "https://files.pythonhosted.org/packages/8a/4f/6579ec2faf11bb9d000b9f9fb4460e6a8eef1d1f8bbcc86e6ebdb2c01886/treevalue-1.4.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbc914b0f4b2e142f2b43b723864853f4a6631b5e55278716790dc3b1d5f6c5a",
                "md5": "e843fe9c6b09e80bf9774ffca2c59da5",
                "sha256": "dd2b70146de81c91fd7c4f68707b41ea1e29d5e3d3a7141764ea44bfa4cbdcd0"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "e843fe9c6b09e80bf9774ffca2c59da5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 533867,
            "upload_time": "2023-08-14T05:40:31",
            "upload_time_iso_8601": "2023-08-14T05:40:31.895466Z",
            "url": "https://files.pythonhosted.org/packages/cb/c9/14b0f4b2e142f2b43b723864853f4a6631b5e55278716790dc3b1d5f6c5a/treevalue-1.4.12-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eda5a58ed0e1944056386b5b4ddb0062e83fd6353c3ab7eaa8db5b6a817bd739",
                "md5": "82f6e8833c94794f4ca5072d6782f3ee",
                "sha256": "385df22c04f2b114d6af7d747284cf4f11b8dacd938621cbc8521451defa9576"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "82f6e8833c94794f4ca5072d6782f3ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 596915,
            "upload_time": "2023-08-14T05:40:33",
            "upload_time_iso_8601": "2023-08-14T05:40:33.190599Z",
            "url": "https://files.pythonhosted.org/packages/ed/a5/a58ed0e1944056386b5b4ddb0062e83fd6353c3ab7eaa8db5b6a817bd739/treevalue-1.4.12-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca9cdb3e751bf683d2ea8476d4a355f19de97e89cc02e4b288e8569fa6851b58",
                "md5": "4cfb60e8b72ffa86b69fb6f681e6c4e9",
                "sha256": "5a444f37ca016e7687f89367c2517a4907d57cfe76f6d5c37e2a3074ef086537"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4cfb60e8b72ffa86b69fb6f681e6c4e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 832915,
            "upload_time": "2023-08-14T05:40:34",
            "upload_time_iso_8601": "2023-08-14T05:40:34.428474Z",
            "url": "https://files.pythonhosted.org/packages/ca/9c/db3e751bf683d2ea8476d4a355f19de97e89cc02e4b288e8569fa6851b58/treevalue-1.4.12-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db272f14b242c41e665523dd07bdfb2c40d5347ff0f4d638e60bb947a3ccb903",
                "md5": "969aa514b0339786451282da21206db5",
                "sha256": "ad0ade5f2e7d8dc502092a0fc3f2b4d0e1f8bc9062dd735c1b704ba86c5cfd84"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "969aa514b0339786451282da21206db5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4029852,
            "upload_time": "2023-08-14T05:40:35",
            "upload_time_iso_8601": "2023-08-14T05:40:35.694814Z",
            "url": "https://files.pythonhosted.org/packages/db/27/2f14b242c41e665523dd07bdfb2c40d5347ff0f4d638e60bb947a3ccb903/treevalue-1.4.12-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce3d1c1663c037c99de40c74556562e0e757b8f9cdca9e724c6b819868c9d937",
                "md5": "80a65da860ed658220bdb5249c415c71",
                "sha256": "8da937137c947cb1038381c41b3e54b9ca6e9f5c45a17af9c710f6e5cb35bc05"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "80a65da860ed658220bdb5249c415c71",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4061732,
            "upload_time": "2023-08-14T05:40:37",
            "upload_time_iso_8601": "2023-08-14T05:40:37.741779Z",
            "url": "https://files.pythonhosted.org/packages/ce/3d/1c1663c037c99de40c74556562e0e757b8f9cdca9e724c6b819868c9d937/treevalue-1.4.12-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "835efd48c839c6a2ada6de037f84dea4fac0e979e8f1b13c4f55880bd58c5a73",
                "md5": "a910d4c322076cd37d94514190b5ead1",
                "sha256": "8e22c686bf2ee6bbfbd2a59fce30bbc4b1ab74fe4c8b7825991bebeb69acd4ef"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "a910d4c322076cd37d94514190b5ead1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 534520,
            "upload_time": "2023-08-14T05:40:39",
            "upload_time_iso_8601": "2023-08-14T05:40:39.079464Z",
            "url": "https://files.pythonhosted.org/packages/83/5e/fd48c839c6a2ada6de037f84dea4fac0e979e8f1b13c4f55880bd58c5a73/treevalue-1.4.12-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74519b9379713da09d1d0b616e0aed59370836ea649fb3c2126d3b8364b728b6",
                "md5": "0433558bcda9ee5ba627bf2a741c0567",
                "sha256": "d17e6621532a8fe46893a6f9013810e0c7c3b48af8a82f3cdbef6c580fd3770b"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0433558bcda9ee5ba627bf2a741c0567",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 603493,
            "upload_time": "2023-08-14T05:40:40",
            "upload_time_iso_8601": "2023-08-14T05:40:40.728054Z",
            "url": "https://files.pythonhosted.org/packages/74/51/9b9379713da09d1d0b616e0aed59370836ea649fb3c2126d3b8364b728b6/treevalue-1.4.12-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88840894e21d83b29cea8ec47dbcf9fadd0dd7ab4af7ce7720f12f58fbb99765",
                "md5": "953f5b26fdd43e65949196f98397a06c",
                "sha256": "3316d116dbcc6c9c98940642fff37a320cd0ef4b99988b2494eb13aa0b825557"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "953f5b26fdd43e65949196f98397a06c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 847803,
            "upload_time": "2023-08-14T05:40:42",
            "upload_time_iso_8601": "2023-08-14T05:40:42.595748Z",
            "url": "https://files.pythonhosted.org/packages/88/84/0894e21d83b29cea8ec47dbcf9fadd0dd7ab4af7ce7720f12f58fbb99765/treevalue-1.4.12-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2126c608a7cb4c395d87a58fabff8f6bc5f9f4bbbfa24e495ac14279f7e71f6b",
                "md5": "7888cae7ae5321d37e68313d515f5653",
                "sha256": "a15adbb4a90cf2897be0129e23f5c72199378c7ede046415d28d13314c91de4c"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7888cae7ae5321d37e68313d515f5653",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 807581,
            "upload_time": "2023-08-14T05:40:43",
            "upload_time_iso_8601": "2023-08-14T05:40:43.795288Z",
            "url": "https://files.pythonhosted.org/packages/21/26/c608a7cb4c395d87a58fabff8f6bc5f9f4bbbfa24e495ac14279f7e71f6b/treevalue-1.4.12-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61c7e38a480ef812dac2ddd436835f3d97a238032c783dfaae5e2a15987186af",
                "md5": "2fc500a0bb0a5d5596d72c66bb62bc01",
                "sha256": "cfda305c0dc074153bae7d7a934c88e3018ffdaf4a82c0ee140fe2c5a8d54b41"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2fc500a0bb0a5d5596d72c66bb62bc01",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 4494201,
            "upload_time": "2023-08-14T05:40:45",
            "upload_time_iso_8601": "2023-08-14T05:40:45.366776Z",
            "url": "https://files.pythonhosted.org/packages/61/c7/e38a480ef812dac2ddd436835f3d97a238032c783dfaae5e2a15987186af/treevalue-1.4.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63f2527b052f2861049ed3f60ad150523bd3b16deb7491fbd91e770b1cae4ce7",
                "md5": "7692d39d80f023856f713a19187c5665",
                "sha256": "3b6bb904cafec15ed02ef0bb0e8bb13eecd448d57773f8295c364ed8e023ecd7"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7692d39d80f023856f713a19187c5665",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 4523455,
            "upload_time": "2023-08-14T05:40:47",
            "upload_time_iso_8601": "2023-08-14T05:40:47.005003Z",
            "url": "https://files.pythonhosted.org/packages/63/f2/527b052f2861049ed3f60ad150523bd3b16deb7491fbd91e770b1cae4ce7/treevalue-1.4.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "792b7cbc75c44e6dec1c4e4fa08e6bae54b88e0621805f9c291b53e58461dd0b",
                "md5": "d44e8c8c2426a0aa3051c09332fc238c",
                "sha256": "1333711e7a24e4649daf0f5213e02787beb1ba4eb7bbf127733e92cdaa4d2221"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "d44e8c8c2426a0aa3051c09332fc238c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 547337,
            "upload_time": "2023-08-14T05:40:48",
            "upload_time_iso_8601": "2023-08-14T05:40:48.501486Z",
            "url": "https://files.pythonhosted.org/packages/79/2b/7cbc75c44e6dec1c4e4fa08e6bae54b88e0621805f9c291b53e58461dd0b/treevalue-1.4.12-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89411c5fc9fe1cc54f10dd4bd1cb23d7bebad6cb613529ee897511c2d3b38e32",
                "md5": "5815f4ab60fc59c35822253fce30a1f3",
                "sha256": "cf011323f756f6b67956a4e4b6fb9fbe8a297f0814ca4256ccc7f0870537be78"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5815f4ab60fc59c35822253fce30a1f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 617516,
            "upload_time": "2023-08-14T05:40:49",
            "upload_time_iso_8601": "2023-08-14T05:40:49.778367Z",
            "url": "https://files.pythonhosted.org/packages/89/41/1c5fc9fe1cc54f10dd4bd1cb23d7bebad6cb613529ee897511c2d3b38e32/treevalue-1.4.12-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d08cfa34fedb0f83f834a7336ef20acce85e38dfc0db5c251a4c3bd0708e64f",
                "md5": "6afe083ec343fde896b4ca2caeda4d4c",
                "sha256": "ca263d51b6128cd033fbbd9fef0df5fc9ff0ab99d00a0cba57c5611dacb80ace"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6afe083ec343fde896b4ca2caeda4d4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 842368,
            "upload_time": "2023-08-14T05:40:51",
            "upload_time_iso_8601": "2023-08-14T05:40:51.056283Z",
            "url": "https://files.pythonhosted.org/packages/9d/08/cfa34fedb0f83f834a7336ef20acce85e38dfc0db5c251a4c3bd0708e64f/treevalue-1.4.12-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99a526f5b002da8efb6ca8961b45948edbc8b052a0176cafa5b396571e4b249a",
                "md5": "56bf17247ae1468d7db79000a067cc3f",
                "sha256": "7807cf4ccae7aa6a7c9920e0719f78bbd6f7b864e6981587217e0e2f7917ba87"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "56bf17247ae1468d7db79000a067cc3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 802183,
            "upload_time": "2023-08-14T05:40:52",
            "upload_time_iso_8601": "2023-08-14T05:40:52.302067Z",
            "url": "https://files.pythonhosted.org/packages/99/a5/26f5b002da8efb6ca8961b45948edbc8b052a0176cafa5b396571e4b249a/treevalue-1.4.12-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef5bab89ecd589b40fef71be723d390a04ed22a39df06617082fea3742d2a8fe",
                "md5": "ee4c9ef7f3427cd506666bc453cd69a4",
                "sha256": "0be0fad2cdae23f909fcba380fbbb9dcb861d0a929cd6e6fd681a41bae34d012"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ee4c9ef7f3427cd506666bc453cd69a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4490719,
            "upload_time": "2023-08-14T05:40:54",
            "upload_time_iso_8601": "2023-08-14T05:40:54.843827Z",
            "url": "https://files.pythonhosted.org/packages/ef/5b/ab89ecd589b40fef71be723d390a04ed22a39df06617082fea3742d2a8fe/treevalue-1.4.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6a3495ee97b69656dd6db85b995e52ca1ce5362ef5dac97ab85ca60c63e371f",
                "md5": "5b14910e38a2ede9593c2e13270a362b",
                "sha256": "985c5c9f9c457ba2901c26b57f306ed61b24f64ba5868009fef7ad23ef5c455c"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b14910e38a2ede9593c2e13270a362b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4514074,
            "upload_time": "2023-08-14T05:40:56",
            "upload_time_iso_8601": "2023-08-14T05:40:56.995883Z",
            "url": "https://files.pythonhosted.org/packages/d6/a3/495ee97b69656dd6db85b995e52ca1ce5362ef5dac97ab85ca60c63e371f/treevalue-1.4.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e11f8ef0fcf2ae85a129a5eb56c0e5e1b1888e12cfc3ab7891db4d64a07c4044",
                "md5": "5b6aabdb56edb3399020f9a8369e068a",
                "sha256": "40b740e535f349321fabe7e3a74bc85d7d3ebb51c39b36a0111c8aa311b34cd6"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "5b6aabdb56edb3399020f9a8369e068a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 545844,
            "upload_time": "2023-08-14T05:40:58",
            "upload_time_iso_8601": "2023-08-14T05:40:58.937901Z",
            "url": "https://files.pythonhosted.org/packages/e1/1f/8ef0fcf2ae85a129a5eb56c0e5e1b1888e12cfc3ab7891db4d64a07c4044/treevalue-1.4.12-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4caed952fa142ab92465bbf35bad0723be9641fe8506d6eb0fab4bd2218ed7bf",
                "md5": "95b716a9049ea02604e82af19798c753",
                "sha256": "750b6fb9b41f49090db22cf9b4122728125f5a7db9cc80f19a2411f449bf8935"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "95b716a9049ea02604e82af19798c753",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 616850,
            "upload_time": "2023-08-14T05:41:00",
            "upload_time_iso_8601": "2023-08-14T05:41:00.721112Z",
            "url": "https://files.pythonhosted.org/packages/4c/ae/d952fa142ab92465bbf35bad0723be9641fe8506d6eb0fab4bd2218ed7bf/treevalue-1.4.12-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a7a63248426a995c988d6dfb580ee41af1c78ad7495d60838aae5037a27c6b7",
                "md5": "7cadf05af872db59cf4ef3f4396150f8",
                "sha256": "cccedeb4a7453edd3a207d8d3c0a20411d873ef45feef5576d22218410e8d3f1"
            },
            "downloads": -1,
            "filename": "treevalue-1.4.12.tar.gz",
            "has_sig": false,
            "md5_digest": "7cadf05af872db59cf4ef3f4396150f8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 73167,
            "upload_time": "2023-08-14T05:41:02",
            "upload_time_iso_8601": "2023-08-14T05:41:02.007467Z",
            "url": "https://files.pythonhosted.org/packages/1a/7a/63248426a995c988d6dfb580ee41af1c78ad7495d60838aae5037a27c6b7/treevalue-1.4.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-14 05:41:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "HansBug",
    "github_project": "treevalue",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [
        {
            "name": "enum_tools",
            "specs": []
        },
        {
            "name": "graphviz",
            "specs": [
                [
                    ">=",
                    "0.17"
                ]
            ]
        },
        {
            "name": "dill",
            "specs": [
                [
                    ">=",
                    "0.3.4"
                ]
            ]
        },
        {
            "name": "click",
            "specs": [
                [
                    ">=",
                    "7.1.0"
                ]
            ]
        },
        {
            "name": "hbutils",
            "specs": [
                [
                    ">=",
                    "0.9.1"
                ]
            ]
        }
    ],
    "lcname": "treevalue"
}
        
Elapsed time: 0.10111s