Skip to main content

A Interval Tree Library

Project description

🌳 iTree - an Interval Tree library

itree

In computer science, an interval tree is a tree data structure to hold intervals. Every node in itree has a start and an end value.

Installation

itree supports Linux, MacOS and Windows operating systems.

You can install itree by running:

  pip install py-itree

Quick Start

  • Symbol For Node And Tree
  🟢  - normal node; 
  🔵  - zero interval node; 
  🍁  - leaf node, which means no child node
  🌳  - a tree
  • Create Some Nodes
  >>> import itree
  >>> itree.Node('fruit', 0, 40)
  [🍁 n=fruit,s=0.00,e=40.00,x=0,c=0]
  >>> itree.Node('fruit')
  [🔵 n=fruit]
  >>> a=itree.Node('fruit', 0, 200)
  >>> b=itree.Node('apple', 10, 20)
  >>> print(a)
  [🍁 n=fruit,s=0.00,e=40.00,x=0,c=0]
  >>> a.append(b)
  >>> print(a)
  [🟢 n=fruit,s=0.00,e=200.00,x=0,c=1]
  >>> print(b)
  [🍁 n=apple,s=10.00,e=20.00,x=0,c=0]
  >>> print(a.nodes)
  [[🍁 n=apple,s=10.00,e=20.00,x=0,c=0]]
  >>> 
  • Create And Render A Tree
  >>> from itree import Tree
  >>> def demo_tree():
        t = Tree(tid="123", extra={"img": "1241241313.png"})
        t.start("root", 1, {"name": "itree"})
        t.start("math", 2, {"age": 10})
        t.start("music", 3, {"location": [1, 2, 3]})
        t.end("music", 4, {"price": 12.3})
        t.end("math", 16284000, {"memory": (1, 2, 3)})
        t.start("music", 122840057.8713503)
        t.end("music", 1228400500)
        t.start("music", 32840057.8713503)
        t.start("egg", 3284.8713503)
        t.start("icecream", 32843.8713503)
        t.start("pizza", 32843.8713503)
        t.end("pizza", 62845003)
        t.end("icecream", 62845003)
        t.end("egg", 6284500)
        t.end("music", 628400500)
        t.start("piggy", 3284.8713503)
        t.start("unicorn", 32843.8713503)
        t.start("monkey", 32843.8713503)
        t.end("monkey", 62845003)
        t.end("unicorn", 62845003)
        t.end("piggy", 6284500)
        t.end("root", 1628400570.8713503)
        print(f"{t.count},{t.depth}")
        t.consolidate()
        img_path = t.to_img()
        return img_path, t
  >>> img_path, t = demo_tree()
  >>> t
  (🌳 id=123,c=11,x=1,d=6,m=0,o=1)

Run the demo_tree() function, a tree digraph will be generated:

demo_tree

The green circle node is a virtual node. The yellow record box is the node with the longest interval.

A virtual node is a conceptual node which could have many subnodes/subtrees.

vnode

Development

Turn on local build to ON in itree/CMakeLists.txt:

option(LOCAL_BUILD "build locally" OFF)
  • Test
$python -m unittest discover
...............
----------------------------------------------------------------------
Ran 15 tests in 1.209s

OK
  • Format
find itree -path itree/pybind11 -prune -o -iname *.h -o -iname *.cpp | xargs clang-format -i
black -S . --exclude '(\.history|\.vscode|\.git|\.VSCodeCounter|venv|workspace|pybind11)'
  • Build
rm -fr itree/build/ && ./release.sh && yes | cp itree/build/_itree.* itree/
pip install --editable .

License

Tree is licensed under the Apache 2.0 License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

py_itree-0.0.18.dev0-pp39-pypy39_pp73-win_amd64.whl (410.7 kB view details)

Uploaded PyPy Windows x86-64

py_itree-0.0.18.dev0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (238.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

py_itree-0.0.18.dev0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (252.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

py_itree-0.0.18.dev0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (222.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

py_itree-0.0.18.dev0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (188.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

py_itree-0.0.18.dev0-pp38-pypy38_pp73-win_amd64.whl (410.8 kB view details)

Uploaded PyPy Windows x86-64

py_itree-0.0.18.dev0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

py_itree-0.0.18.dev0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (252.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

py_itree-0.0.18.dev0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (223.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

py_itree-0.0.18.dev0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (188.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

py_itree-0.0.18.dev0-pp37-pypy37_pp73-win_amd64.whl (410.8 kB view details)

Uploaded PyPy Windows x86-64

py_itree-0.0.18.dev0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

py_itree-0.0.18.dev0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (253.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

py_itree-0.0.18.dev0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (223.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

py_itree-0.0.18.dev0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (188.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

py_itree-0.0.18.dev0-cp311-cp311-win_amd64.whl (412.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

py_itree-0.0.18.dev0-cp311-cp311-win32.whl (412.1 kB view details)

Uploaded CPython 3.11 Windows x86

py_itree-0.0.18.dev0-cp311-cp311-musllinux_1_1_x86_64.whl (752.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

py_itree-0.0.18.dev0-cp311-cp311-musllinux_1_1_i686.whl (819.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

py_itree-0.0.18.dev0-cp311-cp311-musllinux_1_1_aarch64.whl (728.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

py_itree-0.0.18.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

py_itree-0.0.18.dev0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (255.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

py_itree-0.0.18.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

py_itree-0.0.18.dev0-cp311-cp311-macosx_11_0_arm64.whl (191.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

py_itree-0.0.18.dev0-cp311-cp311-macosx_10_9_x86_64.whl (191.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

py_itree-0.0.18.dev0-cp311-cp311-macosx_10_9_universal2.whl (191.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

py_itree-0.0.18.dev0-cp310-cp310-win_amd64.whl (411.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

py_itree-0.0.18.dev0-cp310-cp310-win32.whl (411.7 kB view details)

Uploaded CPython 3.10 Windows x86

py_itree-0.0.18.dev0-cp310-cp310-musllinux_1_1_x86_64.whl (752.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

py_itree-0.0.18.dev0-cp310-cp310-musllinux_1_1_i686.whl (820.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

py_itree-0.0.18.dev0-cp310-cp310-musllinux_1_1_aarch64.whl (727.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

py_itree-0.0.18.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

py_itree-0.0.18.dev0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (256.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

py_itree-0.0.18.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

py_itree-0.0.18.dev0-cp310-cp310-macosx_11_0_arm64.whl (191.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

py_itree-0.0.18.dev0-cp310-cp310-macosx_10_9_x86_64.whl (191.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

py_itree-0.0.18.dev0-cp310-cp310-macosx_10_9_universal2.whl (191.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

py_itree-0.0.18.dev0-cp39-cp39-win_amd64.whl (411.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

py_itree-0.0.18.dev0-cp39-cp39-win32.whl (411.8 kB view details)

Uploaded CPython 3.9 Windows x86

py_itree-0.0.18.dev0-cp39-cp39-musllinux_1_1_x86_64.whl (752.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

py_itree-0.0.18.dev0-cp39-cp39-musllinux_1_1_i686.whl (819.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

py_itree-0.0.18.dev0-cp39-cp39-musllinux_1_1_aarch64.whl (728.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

py_itree-0.0.18.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

py_itree-0.0.18.dev0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (256.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

py_itree-0.0.18.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

py_itree-0.0.18.dev0-cp39-cp39-macosx_11_0_arm64.whl (191.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

py_itree-0.0.18.dev0-cp39-cp39-macosx_10_9_x86_64.whl (191.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

py_itree-0.0.18.dev0-cp39-cp39-macosx_10_9_universal2.whl (191.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

py_itree-0.0.18.dev0-cp38-cp38-win_amd64.whl (411.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

py_itree-0.0.18.dev0-cp38-cp38-win32.whl (411.4 kB view details)

Uploaded CPython 3.8 Windows x86

py_itree-0.0.18.dev0-cp38-cp38-musllinux_1_1_x86_64.whl (752.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

py_itree-0.0.18.dev0-cp38-cp38-musllinux_1_1_i686.whl (819.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

py_itree-0.0.18.dev0-cp38-cp38-musllinux_1_1_aarch64.whl (727.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

py_itree-0.0.18.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

py_itree-0.0.18.dev0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (255.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

py_itree-0.0.18.dev0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

py_itree-0.0.18.dev0-cp38-cp38-macosx_11_0_arm64.whl (191.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

py_itree-0.0.18.dev0-cp38-cp38-macosx_10_9_x86_64.whl (191.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

py_itree-0.0.18.dev0-cp38-cp38-macosx_10_9_universal2.whl (191.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

py_itree-0.0.18.dev0-cp37-cp37m-win_amd64.whl (410.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

py_itree-0.0.18.dev0-cp37-cp37m-win32.whl (410.1 kB view details)

Uploaded CPython 3.7m Windows x86

py_itree-0.0.18.dev0-cp37-cp37m-musllinux_1_1_x86_64.whl (756.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

py_itree-0.0.18.dev0-cp37-cp37m-musllinux_1_1_i686.whl (824.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

py_itree-0.0.18.dev0-cp37-cp37m-musllinux_1_1_aarch64.whl (734.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

py_itree-0.0.18.dev0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (245.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

py_itree-0.0.18.dev0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (261.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

py_itree-0.0.18.dev0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (229.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

py_itree-0.0.18.dev0-cp37-cp37m-macosx_10_9_x86_64.whl (188.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

py_itree-0.0.18.dev0-cp36-cp36m-win_amd64.whl (409.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

py_itree-0.0.18.dev0-cp36-cp36m-win32.whl (409.8 kB view details)

Uploaded CPython 3.6m Windows x86

py_itree-0.0.18.dev0-cp36-cp36m-musllinux_1_1_x86_64.whl (756.9 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

py_itree-0.0.18.dev0-cp36-cp36m-musllinux_1_1_i686.whl (825.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

py_itree-0.0.18.dev0-cp36-cp36m-musllinux_1_1_aarch64.whl (734.5 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

py_itree-0.0.18.dev0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (245.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

py_itree-0.0.18.dev0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (260.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

py_itree-0.0.18.dev0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (230.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

py_itree-0.0.18.dev0-cp36-cp36m-macosx_10_9_x86_64.whl (188.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file py_itree-0.0.18.dev0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b32b7090a381e9c1771935025cc6a1683feeed8a2cf885158ff0fddfd9ddc748
MD5 a2c0fabb008e4328185a1a32a6998cdc
BLAKE2b-256 be1c83ccfa9dfad808c0d31668dd7fb4885b11767ca7cd68d2a0d916833488a3

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d3d19b5b16bf373004bea1528e7070babdcb2886a31741b0e86265ab5e94086
MD5 f5f4aec36f266ebb204456f0e34e0796
BLAKE2b-256 2cd64e1f42dcbec356da62acd228603dc611ea2cab2da3cfc71148a196360c02

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc11c1a8dc6b350678fcc83d98c89cb1c56614b20310a75b0bacce13bdfff269
MD5 f1745de476909357eea998a1b9940954
BLAKE2b-256 9b8aefc1679bb2d75c7c44be6988b500646cd8024deaf34f3669050bc31f1735

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4a19af039270619dfb1641aa61a814de4b66f3e7cd80e55a55a37dbf14d0c98
MD5 ac0528144aa30ecf210ba3397b6c4644
BLAKE2b-256 a6a116c7633ad7a5362b276ef499192c93c67bbfcedce02cee6b97a9de76b43d

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d86f2d99e4894a694ee4a085eec5fa2336542b6954fdb7f79dc4e462e02f1f0e
MD5 88fdd396e3eb5d40f600a4aaced7722e
BLAKE2b-256 9f0924eb236a50488433047061260dd1a8783f4145f8d515304e9d2b36508a86

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0f2270e2119b2dbd8d8695df98ff3ede83526b3e2bf613fa9a2c80d46a98bf26
MD5 e7305fe8052b02e817505244c51ffcb5
BLAKE2b-256 245835e71799435510ff622277b4dd2a2ef5a0115862ac015eb6f3c6d5b901d0

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f40151af0dce03dc804e1361268f4c2d1dac23765236d98d26e6f61fcc4f0a1c
MD5 a6d17f56ee766ff8ab35f180c9bc2053
BLAKE2b-256 8db414aa0c752eb277008ea317005fc936075e666f6fad27528dda202668b051

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5dad5ff1b7ee4baccf9b06210742fe153a233722af23ca2df1d34a2b36aaaed
MD5 52e456b046d623d2c233cfa42d3c5753
BLAKE2b-256 85b3846e840df8e763715bb5c0cd28c10bc78379d583ec8bf31dae587e0d0102

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 faa7bf5014e5f1f9c3e24167dda0ae93bd2527891613b6ea4f714bea43042a4a
MD5 84d198df81c2f5f24d922f2135293a47
BLAKE2b-256 caab5b934563c31a8dafa20d855a271b001c543a3a96906dbc1d239b5adc0f4f

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06999b9cd7a18a0cecb6c407e277f2e0e3999a687709201cf2c90b81f91d7ea2
MD5 dda21c92195594cbf27a75f48564e7b5
BLAKE2b-256 a6b011079785ef1fefe3d4c1e3739f8d5e6ea6cd8ce8809698318b2ddeb386c2

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4d58b116f6d163d5ede0f981ed498c44c00d3ebb6b88eb8e02c158b28db28a4a
MD5 074de20351c8d0fff3cdfd0af45b7467
BLAKE2b-256 0cfe8a69d9dbadc536322cda17337cebfb42c0ef50e194a277b208dda7ae3262

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dc2cd31e18990b5099c7fab2ea5bf621484cb14cc56f0b7dd75ff42f37fcd19
MD5 ded391bbef8d658c421ad91a3b8820ba
BLAKE2b-256 034787c30b02eb06dd4e99d4515e0a9a6476f2f67deac9a09eaf04db5b501865

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3c5497ad03d1556afc21c98f129410cfb143737d8e8cb02ac2014417c1b716a
MD5 73f3f27fd6ff9abbf43ef6fcd9beb700
BLAKE2b-256 fadfdcfa463368a0b013293ef77dacaac8c0a9161f28f4052b74183223344e66

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86ec45e38c13941cd6c7f6139b18506c12f502195abc92c24960d2d3cd49a0db
MD5 46e0aec408610aba7cfcb7d9d1cc0d6a
BLAKE2b-256 aea8688225cb1d7e137f1cd5bb2f00bce0995ae394b8fcf57edb2829a73356af

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a21ea39a76fce3cdf5aeb21fb3417071959aaaddb7b2011566f83d1ef690ce7e
MD5 9e1b066dd9c2dc26f756aff0829f9152
BLAKE2b-256 5f7e3886db35e670c1ce30ac85380dfea177658cd4a43839304a499a9169f794

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3929adf2f93c7cb6396b4cbc9d528845dac3060b58e90bb6b9aa19747ac95333
MD5 bd41af8ff498625dba4a11013cfdaca8
BLAKE2b-256 e3dda9b900a384b6bbd3fae2d8becdd83ee21ef8d200d79c4dd77d20d66ab6fd

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5c3eff3faf26ebc1bff2612cd676939106f68922716276ece86cdf00ac4424a6
MD5 316ba285a1a362932d9d17b7493586b9
BLAKE2b-256 fc7fe30f7cfe91f3d879d125f8dc21ba200d2cc3cd2c70c2aa4a96acd0ed7888

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dbf71e3e0fc30bacd6bbec1e10d20746557f1baf404437c563ccc194e909f548
MD5 15631e18ba1b948a077ed904fe4530eb
BLAKE2b-256 1467d547b1bd702e4845a6676bbf4268f5e489bef1179c0778d0a10f1e908e3b

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 198574a3174583615e11b863d2f1b92fe0f3b10d8603d3c205987b6848c02dc8
MD5 768ea297d45239e41c4c61d18a547458
BLAKE2b-256 fd70bfa39cdf61274b6905fe63077bd16a1a38ec6c7a3389a257310a25cfe9e3

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0ec32a7abc3b87a95b30df1badbe2cba08e7244598df870ff00a99028a968ac6
MD5 23127a0a9a8abfb24ec72babf1aad3bf
BLAKE2b-256 31196148627c91e87496dee3ad7f1386a9bc99e94c619f9239080b8f64bf00e9

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ee3363dd4e9d6df261aaed74eb04aca6dc7e6e6b12b1ad065eb4415c8aaf93e
MD5 85418992d99053a6102a09998ab9cef4
BLAKE2b-256 4846e98a7675a87796a5404b50dd52ae215119d3ed78a406fa7751780af74267

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6761de0ef2e30f5bab1763681e1916824ee60718d5bca8541b0cbf22fae9b095
MD5 f6c80edc415b4098ea5389704b177a6a
BLAKE2b-256 b35c227710eaadb20a2dd7767c2b6a97a1beda4d0e37ac6aad33921f196d0cdc

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52dbe9628b97390fbeb9cd872b17ecaa5d54f36d26b6d9bac54370b5b87361fb
MD5 db014d1ef3e8114fbb6568d89f0adcbd
BLAKE2b-256 c5ddde7f720c4c1906930373f172800a6471ef05d60751c8e2c013cd7408af3a

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bb45180d86df73c4b4bfa2d715fb1b54e44d829160b831d999a7bb0a9d2cb76
MD5 edc16681d36d81737b83512f501ac341
BLAKE2b-256 bb6d72914a5b2b1d826776cf761d0fd813fae88ca0089acef136a62d08049845

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e198abfcaefaa6b0a173c72d0b29237b867ca3c1f4db5c546300df458d8ef06c
MD5 d6a9f65900e8b89d89db11db4f183492
BLAKE2b-256 5920ae7e8d51a5a2ca50e0cf69ff44f47d5e95534c8397b373073e80aeb78ed6

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1f01e99e6e0a4599f7094e31099f543cc036f2538413b9c2baa5b14b70cdb84f
MD5 2d925d8d3dad7dd82f0d980fa314d1f8
BLAKE2b-256 2f8f91da71effd01167b1bfbb3967ea69876e62018a3c66b5b61dea41c4435f2

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 167b4ea3ca9c4f77e763bdf6c5c32a7fe3e76736a904f40179a5bfb2a95cf30e
MD5 3038cf7524776549476901a4f04ec1ad
BLAKE2b-256 7a681655747ca9b7866169cf4dd6d9b7951cba933a862299ffb19c389dc5a679

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8153de964023fd8d940ce1360fc63c54f1ce487a972899c9b18b406271dd5cde
MD5 a42cb1da03c92ab835d3e8c376f59f5f
BLAKE2b-256 643cb745f4d2b0d0076b7c9e262cebe260fde66a1a6fa0416eabe3dd291c4738

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 943bf112efcb83039d69460e927a561b8fed083fe9ac95682b0ab54e596d5fba
MD5 4390391a03331ded8f289a79e10bfe39
BLAKE2b-256 e7255e4f407cb537cebe959f5f914eb52506604170f248fd9f642bb853e34c6c

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b28b00277d615ada40e56cb357c0b5d4138cd1b7e4ccbf3e3f8403b6c29f9ffe
MD5 f3e2297e1da80bef46236a30ba9c4023
BLAKE2b-256 c20daa29bfa930ed42f7b59d1d34170b46f72577d433896625cbdbd076b5ce43

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f0269ef6197b2dab6ddb0e81d7b07332949c512de05c30c250370f5e6c10f03d
MD5 a1ddd78866ed60f1907f17e2ee5f53cb
BLAKE2b-256 c8f608ccabb74298ed0a04a4b872adaeb6a28b9e293ceff013d1185483aecbbc

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fbc2df13707d2ac0cf402c44262c7cf5d975106e53547a2d1a4fd38ad327598
MD5 ff4d9f38f623e1b085c86aab08c680b0
BLAKE2b-256 9b408441053ef318ab57bbb1ba0ab09e7951246a5ffbe6c0206fc7d574617b85

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7efc0b57aff94c113caee121777d1d837fe7af1248ba1e2524e019e426e9d0d
MD5 de440f507f1724bebc69728361ae27d7
BLAKE2b-256 d7d88bfb25168dbb1219dc1ce13a79757485aa08449d519f2d7f0b486f1e5dcc

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7ca59cab1b3fb8de4e3b96ac931f08a761dfb6be7323460cb6835c3a760ae57
MD5 54914e7b6f420392ad503dcf290a3ad2
BLAKE2b-256 8adbc66609eb46a713bf92d5e138b52cc9e0a17981d13707e6e77fea6dfe1135

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2550448a35b8b52e647524fda39a9f9d0d44452eb2cc382a285a0d5fea2b86e9
MD5 fc090c7d5b84403cffaa24e42aa92e4a
BLAKE2b-256 8b33550b3f6666ea0596c74f2c3fb66697624db5f89ed65c39854d3d3ea45a8e

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b19e73370c988548ee1d26451e184497f4abe324b38ec745451d8a8006182255
MD5 fd7d10b09d36e5c5b35e48b3f2e8dee9
BLAKE2b-256 237bc98d33abb4a5bedadce8fa223dfb438642bbc79e6195f5b8ffc5417f79fe

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 84fe914d915d25c7c06b6a0dc9f8e0943f766ca9b6d4480136212ed0939ca566
MD5 a644d3d57036522a19e160a8a69dc7be
BLAKE2b-256 bb518b27b93aa4ed6b87bc7384454406138592a77eb9c612208393ed2b9a5056

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b926b0394c3022920c2654b764b4eca8fc8b1d53e91c7f2650c7962e79230766
MD5 bf8ab745c4627ac47ea1c645af15dedb
BLAKE2b-256 0f4acf66a0e380c643dc95dba55361954857cce0a5358726e6ad45fffb485375

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cbf11cc784bf8c5666d3d2fdb07e596caacc35d37cf9d15070b78f345ab18217
MD5 e90eba18ed111a88f94ff48d3c841590
BLAKE2b-256 a199b539f9d786b9e00d53c333768435ab382cd91c1283a0b73e8963329ca7f0

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fc8abe022c0ce4d3f84a4be37124a5f14bee2d0e353534d0815a33ccc22b519b
MD5 c7e92acd75e7b87950c379cd6f950a3c
BLAKE2b-256 855270e6f387030851b1213f10aed20270ab18b1a1a95ee5c36e41f1f3216743

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 76cbc105ff5ab7e56be4b1a05da395c9fddb81dc34099862abc94513c9489a0d
MD5 d6e501b37b775041a05d352ed802fd3a
BLAKE2b-256 78577478d3cac7c951e984728de47cd8e74c097fb045bece146212e9c122fb1b

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1fc92267e1e0c7ca5e008bc71a63d7d3a1dc9cf14d0b086ad34b4292973cf5a2
MD5 fc9f5ddd87de29bd54cb0f265929cd40
BLAKE2b-256 85b7db84fea3ed5e43ca928f9287ede02362f71b65c208beae398bf81678808f

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebb3902b0257ea9747e3372ed008aee0bd9fb80140719c2b9b9884d6252fd863
MD5 c6d85e95df2daa7ae8924dc558e9e6af
BLAKE2b-256 8949c2f8ec368aeec1c06715f54273d890566419a82cedaded39c2f5a747d045

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85bbdc91d6096578ae1cd7ef9064c8d0b63ad8a210a7bd5a91c92a9a286ed7d8
MD5 4e7fb6f6b89e548b3bb7870ab7248634
BLAKE2b-256 165239908f06f941f47e9a61cff47101e2935dcac022b4263a80bd6682963e47

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f09bed3d1f1d6314e6ad7fee2af931ae6fbe915153ab31e57f8e2a5ed4726ab7
MD5 fba22c6731f72515ceea8704f7d419e3
BLAKE2b-256 634c0936ef3371171ac9d43266d47627b733a43971fa998b29dbf809aab953ae

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f7d3c2177b729617dfefa1b4117686a491f5c4144ed11b1cf94cf4e4c93885c
MD5 21c91f4edffc2f8504044c48d5fdae3d
BLAKE2b-256 6bdbf5b2b2dfae8bc27bcfeae182f881e89578ab9b9843d3681ea002665bb403

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd40c9ffe06b4c30f1706689ad7cb3f49d307c7717f30ed3430a7992ccdcd330
MD5 e1dbe09f9fb0e051a9ad2d45f64f263c
BLAKE2b-256 2b8e5758423222c2d9bae8923b631d224968d347d676bd4c74ab08a9ee2c98d0

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c47c9d336565833662d71151cf918fe79a9585c05740ffb53ada6be264d0b440
MD5 a7832bbcdc381b2ffbecad63930a2dca
BLAKE2b-256 dd3d7a95ee7f0f9b44190dba650a9026da23f4b90de2ea94c7a05c857bbbcdb5

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4bc3c31c697487f52672b63cdd688e8591a592c96d3d61037a03641e6b968a4b
MD5 d52ed7b2a48553d0862ad13f2ab4feb9
BLAKE2b-256 6105fa012e2558cb7922bf18b5e6e6b50894b23a8d1f2c6643b956e28b74416f

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1fd3de2b821d81021b7bb831ad8085a3682e6153a0f55937ac8dba3fd01a7c57
MD5 f5412306f67b9298285b1d7729a0ef39
BLAKE2b-256 013ddba7ea02c233cc07ba03479ad2e285aa08733d7da65de1ad827980f46a62

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 69dbe429066d655d8c3c23d55ce8a45c348805479360450cce7e1745f4e960e7
MD5 52d6a395f46b556ecc517b5868e81a13
BLAKE2b-256 135d5496bba6658f7398cfdcb4ac1db29c5f5a8e972225eb1b149efaad40fe69

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e0b0f80d0bf1dfc3ef404419b3c5f10cd79a7a36607f04a1be5777e5bb9c9a7a
MD5 1c3457d545b08357333c806208066472
BLAKE2b-256 38214bb3692e778b125291972e78f80633b959762d445adf92c40c6e7453241f

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 96a25748bdb8e15c3f667ebf4d6cacf14ef16c23e217c14cf05744cd119bff00
MD5 e7cb8e5c9555c125a7d78a733efcbd43
BLAKE2b-256 53b8c5c697d07fa20dbd719513bd17555ee3cc9e5698fa171be09790babd2f2d

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85a418436de96754389f22fe1b5154c977d4c235fa7a8d64e94436b5e513d1ce
MD5 e68b997003816f05c999bbe0d3039ee6
BLAKE2b-256 7a5a06b1606e10d92e46d6893c7ae339e00b6c39c0fb0c330ae85035787eff9a

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e514200fbab044ff0f7311596c0f9fc90bb245868fb2d7e709af7ec022bd7325
MD5 75c7c6e97aafd72dc94b059374d0fb29
BLAKE2b-256 ee73a67a850bcc017b23dbc66cf58f38d1e8cc79a0f5eb870f34e8681dc9b503

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f89c4ab54a11a6849d28b98a06c570176ce3be78713ca7f19a2f6ed7f3840ad3
MD5 bfd4311fa53deaaf302ee73e77c8933b
BLAKE2b-256 ab67acd4f2191f6c04933ab22a892d772cbf654d94cf4c945651b7078ec26c28

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3b6a9f98b76d3dacfca0db2d4815dc1a1f7002022e317f3f5b324de99e0b340
MD5 90f69ae127304e74e1183286f1b0df31
BLAKE2b-256 e6190eac984703294e087b155fb9d5bfb6b6ae0e292d5cb822e0999a0dadeec9

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 538c35e357715a6912589064fccd69f9867ed88a62c31adfe22ccfb5c38f38e5
MD5 29bf538bff84829390f04be172d9d889
BLAKE2b-256 eb7a2189c1002443c4ab8b0e464b1605f34bd8472df7b5559dc5c5469edcb5c7

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8ff4321b96139fd57bff252cf8a911b90bef4904bac4e0d83e91ad0adbac956c
MD5 340cf64894bdaf7f663d1620c1873730
BLAKE2b-256 b3e2e3bd160d41cc8c50c17fddee94ed21bb83a5c9c1c08e0cdeefb153c3d313

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 aee9b8506148d2bdffc852171da0f9cddebb452d7dbf577fd819adc1e0df2e0c
MD5 d4c086b15dd1712b1b14069c09005f83
BLAKE2b-256 4d28630232b9ecb86830d3c88b66490a1914cfffb7880bcd60e3777fb0cceec4

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 11089f1ccc8c35fa177d84d69c6cb393503b922caf7a8cb296054992412c748e
MD5 8499447a0716bb798b88456e34da4de1
BLAKE2b-256 fa5b0c1cd941dccf6217165c40745e168634083e930a531153902fe909769f51

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b431563f3c627283e4c805df66567d21d5211b3cb813dc6e5c723dd2edcf2dad
MD5 a2d6f127117b8b9c4440500843c0efb1
BLAKE2b-256 984500478e09b07f716c331cc8261cc7f6d6f3f4b1a48dbbb80ecee79a7f4de2

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0d7457fb51fca813145ef51edcda10cb39d34255445542f7923c024bc6c5c9f1
MD5 5731242d22c120b536ea9dbb8d956471
BLAKE2b-256 b3369f989ff3282efa411f43a73568c712c9b11b7c3cfc33fe2856da0e5ad2a7

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 130b5d8227112a25d8309ff630daeeefb3e3a6dcd5fff5cec049cf997df51b5b
MD5 974a46e72838e84ed0cd18d4941be170
BLAKE2b-256 e26fd0a25927c363aa692f6425c41e91a7f8eccbc4dd5c84845a84c8e14047e7

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84415dd2827cb10a2d3007f571793e7c522e47901795d44d1709b8355185d433
MD5 12902b9aeec7021fb70cab282356f640
BLAKE2b-256 c20e9ca9633a5e13bf016ecfb09dd7a3d4b704ff96d34b09faeb237cfb917e5a

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c024db82360f4e74e61a1c25b20cf3b0c40153f702407e04c8b98006d7f227e
MD5 618fe7a681ecddd15323a24eaa9e3392
BLAKE2b-256 d200cec02a21ee54af2a134b0bbb6d254b9b6123663208023e7bbd38f82e1a26

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ec7a4d66283fff9c3d397843e9cdba8a648b5dd34df6e81f3226cc05c6e9206
MD5 cbd937d157c155f477a68055719c4563
BLAKE2b-256 1031639be29ed889004042970079ab94210109ee3ebb82bcf27920531d8362d4

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6f6d7483f14cd683999f45b0e8efdf90a206712da017964cdefb6ebf6d8551d
MD5 1996fbdbad51df20d5ad577dfe4103d5
BLAKE2b-256 44bfa39de760c57ba315f1a4627df62e4876c86edca03e5527ae1d49684f92bd

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 59a40f597f04eba8b91e9ba83017514c7d4b02568995e3d10d627fe7a76afb99
MD5 cb6747c8489bea6a75670e1b5d1848b3
BLAKE2b-256 3a02ea3285fe0909dc942c5b650434c60c11cedf87519c91a8478b20537ce3ed

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f3546a29234389f7609ba4fa427abb7a25b041b7feeb84b6269eaf3e389465ff
MD5 9c5b4a3fceb8be0e5d77edef2d33090c
BLAKE2b-256 09a6a04d1e8c5fc37e7b1a58949d4f6ab9fa84b39c239093f2468663d0c780ec

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bad549fd1d44b37e546b1da61a374ce5d0cfb8defab0a79975c5264f35bef764
MD5 e38bcaecdfb58721dea74362aba49e5f
BLAKE2b-256 2377f21670fe167c26143157174ab8fc20ada154e5eee93296efeceb06971dca

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 73c94e80311358ba62c7e5b3acd6d8dbdde6732e04588d27b71e4010ed0a22c7
MD5 4632549da42c74960c83fc833ae3a17a
BLAKE2b-256 d4735df97e8a45604899b71515ab6b511c4305446a63ea563e73357695f27c58

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bdb25a7586059f3d4702bb2d9d8f39de6b964e5866e079527177cae4c8730532
MD5 b6af349ddcb1613bfd5257282dc5905d
BLAKE2b-256 f87dbfc524eddca52fb7815c623fe60267a7ec62805ab9bbbda316fcd3b6bea0

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73e899cc5e3696870af503914a25a4982d839addc4676004e5ac688d87a5dbbf
MD5 8fb8120d9c5664ad0616a65819f9841f
BLAKE2b-256 c726ba3ee840de04de23137f85d2d8292273da2310744cc3bbc4d9ac73afae4a

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 375595b5dd277367689817012d3e0ba518c189d58ed65fa4145a9cfa05b62aa8
MD5 caea7318251d6d0c8b593a5a3372f882
BLAKE2b-256 cfd2c38630a2f94020c194ad5f36a7e6fd315174aaa500b287ba2ff1724d3b42

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b29881d12539f036b2057eac7a857acd0ea17048508fac417964af9042c434f2
MD5 987437ab7cb5b45a5acea6e8c8b2a7ff
BLAKE2b-256 607a61329f235d0e9bae26b4f3bad34c7125a2a9a22d2a91e241a3994df75e60

See more details on using hashes here.

File details

Details for the file py_itree-0.0.18.dev0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.18.dev0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea78334f082d7c47eb151d324fdf7c42598a2a5570627804f29d63bf2e421f1a
MD5 a93ba89606071ca026d429200aa66434
BLAKE2b-256 029339d5ea25a163cb202afcbb04c08e2af98fb959ab10175c5fe4e851164fb4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page