Skip to main content

A Interval Tree Library

Project description

iTree - an Interval Tree library

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

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:

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

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.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (188.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

py_itree-0.0.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (200.6 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

py_itree-0.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (151.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

py_itree-0.0.1-cp310-cp310-musllinux_1_1_x86_64.whl (713.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

py_itree-0.0.1-cp310-cp310-musllinux_1_1_i686.whl (781.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

py_itree-0.0.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (190.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

py_itree-0.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (202.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

py_itree-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl (154.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

py_itree-0.0.1-cp39-cp39-musllinux_1_1_x86_64.whl (714.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

py_itree-0.0.1-cp39-cp39-musllinux_1_1_i686.whl (781.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

py_itree-0.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (190.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

py_itree-0.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (203.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

py_itree-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl (154.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

py_itree-0.0.1-cp38-cp38-musllinux_1_1_x86_64.whl (713.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

py_itree-0.0.1-cp38-cp38-musllinux_1_1_i686.whl (780.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

py_itree-0.0.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (190.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

py_itree-0.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (202.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

py_itree-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl (154.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

py_itree-0.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl (715.0 kB view details)

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

py_itree-0.0.1-cp37-cp37m-musllinux_1_1_i686.whl (782.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

py_itree-0.0.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (191.3 kB view details)

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

py_itree-0.0.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (204.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

py_itree-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (152.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

py_itree-0.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl (715.3 kB view details)

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

py_itree-0.0.1-cp36-cp36m-musllinux_1_1_i686.whl (781.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

py_itree-0.0.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (191.3 kB view details)

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

py_itree-0.0.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (204.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

py_itree-0.0.1-cp36-cp36m-macosx_10_9_x86_64.whl (152.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file py_itree-0.0.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6049d4843cb397698350ec493de924f607da8b1b56db4c347477efd73acbc1b4
MD5 d8324fa8f4e53a3cd450d7d859fa4941
BLAKE2b-256 f299c8f4358b78d6908391a8e3a438879a13821d7ec0a14617d13f89edd0f1bb

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 396530d59ff757fc774d282633bc77762b1da06d2c12306c144fe7738a03a4a7
MD5 d8bb26381453f85aa9dafd2e5dd66e52
BLAKE2b-256 f50b112202764c23b003cd4b54c718d51a9b3bf821ea589296dd9110d4bda4e6

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: py_itree-0.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 151.8 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bf45f5da9fe9d00442c585bf55d82472bfed59d8d6d570d55f7e5afa5fc3bc1
MD5 9d72fe2ac086444dcc57fb93a23ca3a0
BLAKE2b-256 0ebecc2829c845a4ca5303c9cf1b8bad7cc57904c166505fff721ca3a2f8c1b5

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 713.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 08307e42a9200d7d880c425e71782cd240dae4252c7c98dfe65492d2e3a32ccd
MD5 235936a503ed3123415431f725270927
BLAKE2b-256 24f09504b1d5feeccfbeea1c98d9ef1accfe0061ca9585c3301655f133fd09d9

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 781.5 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b89cb6e4571eb42f74f4e0099ffd9d4567056094c631b96c7b285e275668ae5b
MD5 5ba8ec5942551e941afeac2b1b73da41
BLAKE2b-256 9f1184ce4ede4e413863ea9a7efe5c96aeff42e1920bc3529707cab6780f399e

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e0dcb6e71ff8b5d79ca2158a1593ba5c1b25b7c53581280228c7bdde0808371d
MD5 3de4251b66f595470b1a2da3e536d689
BLAKE2b-256 e89e1496bf2119f2ec913eba3c6bcd56526d819860d63a93e12583a0fe7293eb

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ed20f34b56315d9db2841c8f1a2c292558647513d51850148d080ea293734ecb
MD5 73c1d73b49efa808b267a6a5963fdb50
BLAKE2b-256 11164823b0328026181572fc7e037a4b16ba6c97acdb4f66efcf687e0a623e08

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 154.0 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e8146621740204927e4820fc05cd8e74b1a9aa60907e25b68694bde53238883
MD5 4bc68493f936be93f38733f4fa8059ab
BLAKE2b-256 67e35c9e9bb5c5a1c94be2be9abb83ff0b44d07d103947970663b20d07e7e593

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 714.1 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a19c4595858094d1fa20682426637a1fee864aa375bd8c09038dc571dfe1e713
MD5 d4cc7a496da647f7a402f3d145dc017c
BLAKE2b-256 b64ffc631584d93f57ce6b68a48208d9693f0644183a3d9dbbce8c66437ff3d4

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 781.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a990ce2b8eeff25d3696fe5e73b6d5d073bd104aa9066560af718a8d7f3f38d1
MD5 33803677b52aed58ae5e0fbb55a6a40c
BLAKE2b-256 6d46e47475fe50bd1d83a77504944ffbc1e7e3a426e5943c33868b41c210dec0

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5fd72d01499126e9fa95e19d96ee3aaf6b19f09407127e967704587e8b27eee0
MD5 f0306d54c2592ec3123ee4d647ffde5f
BLAKE2b-256 08cea0ed5600772fdb5358691eaa6596dc4218267d3092801db544f939187651

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d28c3ba82fd2a2b745cf2239bd40768f522bc904fdaf13f3c46302ea3c35de0
MD5 f658a837f4c0d31e4050fc258705c496
BLAKE2b-256 32fec4e2d1a2dff11118b324c1b525f5ed08e2b1b2db5f29a6c280c984a11c14

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 154.1 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ce38570ec201e949ae4cfbe4d56a08326d8b71ded4a77b35ba973fa734add91
MD5 18f6de4fcd2751ac0015fb025f28b912
BLAKE2b-256 36296836f19805bcd8187cf590a2f219f2cec31ecc868c07a07884ee184791e7

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 713.7 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8df0d9f40c70708d3c79c9ff143c396c90e1e9858d4696a0baa70c568ae767ba
MD5 dff6ea93b92a17c3aba865441279f10a
BLAKE2b-256 c0269dc49df9c6190bf657f0b06c51d49f5ce26787bce0119eb70392a7ce455e

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 780.6 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 66976532f5bf2f14eb12d01f38b1897d002c551b64af416a549b6e6a41cf6fb1
MD5 298dcb2f2bbbc1e82a6bc64042393164
BLAKE2b-256 5368964535587cc76e5a78307f81e79a15133465124c460f253378c6d4d490da

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eb767ca89097703c70bc9ba1a964dd8b507970729098829d6ce346601799a135
MD5 c8a7c0423b8a000da391491720bb5304
BLAKE2b-256 b8bc3b74cac3031615350090727be93a2b56ea4ff971419f15d602f8faefeacb

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d024e42810aac079b5b86eb3bc58554645a2367dfe3af027ec9e26921cf676dc
MD5 6e5d3f63b9d38cf678b59f8602c4babf
BLAKE2b-256 f9a70ccbc23817c26b5a172b1a4275e1f256c8b0f997e84bf6c7b23cd00a17e9

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 154.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 899314b2c50784eb90ad841727a4ac20d89b5e16cf015aecd41f9284755ee1c8
MD5 3b840627ae18a06fa4cfa9801f3d5181
BLAKE2b-256 a8f806562de96957a962c111c7b1994f707ce0dc87c8175f2bb8aa456b45369c

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 715.0 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8f56e59afda2637b37ea9d14620354f95a089818267dcdab0fee07e5a4ef81d3
MD5 ff25dde3e8b2caa35d3a45ed4b741d45
BLAKE2b-256 c291822c2a861629b91f58fe6347a8134490b00feb6a8855626d1108ec419029

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 782.2 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6082ba015be3fa542006c362b4a52d8110c2d81ff66deb1943f9814c35ee5216
MD5 1f57a09c25ff9c1f21bd2fa18337a4fb
BLAKE2b-256 1067f77ecac38b9868d6b8cae0f86b5dfdb4035878dbc8c897d2e3c2816ed0b9

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fab27cd1df438c1f921094ae652c13a69ad85f45a4d63200cb806326cfa9a698
MD5 11dc1d001967be35c9fb783a6cc838bc
BLAKE2b-256 7703dde4f7305609e249afa0c398931a9c7bd9a50840253c9769d55d8985f788

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a32b4acc8a27affcdec02916ac8feac040207f928ae671841dea81d135128e36
MD5 4a4e78f95fe37aa2ccf4bcad97ece5cf
BLAKE2b-256 f5318791f26c392e1e31d3e646aa55c09d32cb4bdd5341ace1b6b8b439aa8f07

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 152.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc868fc862efee3e6943dc5b0c374db75e0f26d9c13133a5ac9cb59104b26204
MD5 e34952ed1cb176c637cd4838e42d7c7c
BLAKE2b-256 fc4ab2190dae9f6d4a6af533c101e8a55c7b6fb22b4df935f66a10f9264aabcb

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 715.3 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 215605d98ad7d7aaf432b41794492991eaa8134db4927bc0b4c2caa935fc56e9
MD5 9e2e9ca44979d8f749ba7ef4c8afd57c
BLAKE2b-256 c6073977ca8657d250ca4b5ab19486f69bd1081913067dea881c272e7a66ca81

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 781.0 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fe36826434a0c0485a78b47f5bb2cdb279504042c25666bde77d44709690f6ce
MD5 0d8b8441dd53f04797e57c45f001617e
BLAKE2b-256 474f1ce826f52aff390c5c1513431edf5c7e86d5788e2fd7b3cc55ffb2c85acd

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e2c0a1ff5b3e6fbec197a868a5c2fca3d92a4dd0d24845375e8daebdd023993f
MD5 b34b99975192d0c997169b5df658342c
BLAKE2b-256 f326ec167861645161b063ad04596fe24537f6cc42770857465975ab6b367c83

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_itree-0.0.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 08c5a2abdfa4561ff0e6ec340ce7ed96e378994efde3e04bb850d0d4572ddaa8
MD5 8d83cb5cd5654c31e221c53a1b049cfa
BLAKE2b-256 5a08dc9acd981581d929f80e0d21c8e47de16db6f746fcd029a73797ef6eeae4

See more details on using hashes here.

File details

Details for the file py_itree-0.0.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: py_itree-0.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 152.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for py_itree-0.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11e657166b439bb9f99dbe3cb7a3029f2e5ebdd4bc2961d44b5d31217c0eb552
MD5 57dbbf9611488a044e1201ac1903ba57
BLAKE2b-256 e8cf234670e09ab21caafe2bf9e13e063ff553b55ce235d1033565f18fde1dac

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