Skip to main content

Fast and simple SumTree implementation in Rust

Project description

SumTree

This module contains a SumTree implementation in Rust with Python wrappers. Speedup is around 10x in comparison to an equivalent full Python implementation.

Check the project on github: https://github.com/yamoling/sumtree

Usage

Initialisation

from sumtree import SumTree
st = SumTree(1024)
st.add(10)
print(st.total)     # 10
print(len(st))      # 1
print(st.capacity)  # 1024

Sampling data

from sumtree import SumTree
st = SumTree(1024)
for i in range(1024):
    st.add(i)
index, value = st.get(500)
print(index, value)  # 32, 32.0

indices, values = st.sample(10)

Updating data

from sumtree import SumTree
st = SumTree(1024)
for i in range(1024):
    st.add(i)
# Set leaf 0 to value 40.
tree.update(0, 40.)

Project details


Download files

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

Source Distribution

sumtree-0.2.7.tar.gz (13.0 kB view details)

Uploaded Source

Built Distributions

sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

sumtree-0.2.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

sumtree-0.2.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

sumtree-0.2.7-cp312-none-win_amd64.whl (163.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

sumtree-0.2.7-cp312-none-win32.whl (160.0 kB view details)

Uploaded CPython 3.12 Windows x86

sumtree-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

sumtree-0.2.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

sumtree-0.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

sumtree-0.2.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

sumtree-0.2.7-cp312-cp312-macosx_11_0_arm64.whl (298.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

sumtree-0.2.7-cp312-cp312-macosx_10_12_x86_64.whl (295.3 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

sumtree-0.2.7-cp312-cp312-macosx_10_7_x86_64.whl (309.4 kB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

sumtree-0.2.7-cp311-none-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

sumtree-0.2.7-cp311-none-win32.whl (160.4 kB view details)

Uploaded CPython 3.11 Windows x86

sumtree-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

sumtree-0.2.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

sumtree-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

sumtree-0.2.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

sumtree-0.2.7-cp311-cp311-macosx_11_0_arm64.whl (299.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

sumtree-0.2.7-cp311-cp311-macosx_10_12_x86_64.whl (296.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

sumtree-0.2.7-cp311-cp311-macosx_10_7_x86_64.whl (311.5 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

sumtree-0.2.7-cp310-none-win_amd64.whl (164.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

sumtree-0.2.7-cp310-none-win32.whl (160.6 kB view details)

Uploaded CPython 3.10 Windows x86

sumtree-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

sumtree-0.2.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

sumtree-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

sumtree-0.2.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

sumtree-0.2.7-cp310-cp310-macosx_11_0_arm64.whl (300.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

sumtree-0.2.7-cp310-cp310-macosx_10_12_x86_64.whl (296.8 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

sumtree-0.2.7-cp310-cp310-macosx_10_7_x86_64.whl (310.7 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

sumtree-0.2.7-cp39-none-win_amd64.whl (165.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

sumtree-0.2.7-cp39-none-win32.whl (161.3 kB view details)

Uploaded CPython 3.9 Windows x86

sumtree-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

sumtree-0.2.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

sumtree-0.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

sumtree-0.2.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

sumtree-0.2.7-cp38-none-win_amd64.whl (165.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

sumtree-0.2.7-cp38-none-win32.whl (160.8 kB view details)

Uploaded CPython 3.8 Windows x86

sumtree-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

sumtree-0.2.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

sumtree-0.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

sumtree-0.2.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

sumtree-0.2.7-cp37-none-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.7 Windows x86-64

sumtree-0.2.7-cp37-none-win32.whl (160.5 kB view details)

Uploaded CPython 3.7 Windows x86

sumtree-0.2.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

sumtree-0.2.7-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

sumtree-0.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

sumtree-0.2.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

Details for the file sumtree-0.2.7.tar.gz.

File metadata

  • Download URL: sumtree-0.2.7.tar.gz
  • Upload date:
  • Size: 13.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for sumtree-0.2.7.tar.gz
Algorithm Hash digest
SHA256 910fe6f0eab9a74bc8384d9d4b3f48cd3f4f3e780a515501e9bf0621791aec7e
MD5 ad77cd4589932a92521120e11614f0b8
BLAKE2b-256 56fdd5592a38805cc43b2dc949086fd4e4454b29ace72bbaf2a047abe712b0cc

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d678f5b3b8a33905aeeab40d83156accaf7f5a163e8a4a3bf3281ea9873bd67
MD5 55282abc54d9ac7fc7aa6132b6b07a5d
BLAKE2b-256 72581332c93e167193fb681f3e1c8f71b09d2fefe3c238558387fdb4de76f476

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65ef23fe9d1d2205e6c2397d91ef9cd4d12de450a84fb369df92897d6b046b75
MD5 6f249274fecc1a889d1c0866a71f383d
BLAKE2b-256 05f8d2d9021cbd388fff03ee0a02e56cace6aec67070bb5c5171015cade84c0f

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04e61c00d4849bc7214ea17b2cbeba374a23dc715b6bf60b64e89b64b21260b9
MD5 e4ea3d7deca5a022382f0e967fe2dbeb
BLAKE2b-256 8dc7d846b13816fb9f4b2384b903976c3047486778b6d28989dd03f07f90820f

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b5ba49248d84f60633f5916f9404254ec2f4ad487a152446325f7ad8527c84ca
MD5 fb047f91f4a94c4443002ce63ed38d6b
BLAKE2b-256 f5a541067ea5b1b30ff85a547ce194eb19a792405cbaee7a79f8451a90b12dac

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c498af06076f9d8a57f21f3c9ab9a4132ae5156b8f5ce805fc4aabca410bea04
MD5 87a2a0d404485f3aa9100b70514aed76
BLAKE2b-256 40cda401cf7218c40b1c32ed345cdaf71e789bb0a49b1568159d5cd7d51da2e4

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 be3ef181c5b5488c954dd2c11a90f53097f250406b2345b32393d62fdb428c7d
MD5 4c47f7560882fe095dbc8fdc81bf2ea3
BLAKE2b-256 041669caf58566447b33c2a041536176314fd9a10ab951bd1c2a2926157a5a4a

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1a263807e23f23e6dfc6ffc27444b428295d4f3203a1a4c1d7600c560bbd54c
MD5 aff34d65217e93bc546668a022aa6023
BLAKE2b-256 a33d539f4e02943e2b8e6803eeb2f0373b252f702fcb17e5c26531764fca7d04

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 249652619597d626e0444b3b5539698e4d2d6a05736920f12159597ea9f9b70c
MD5 791394894b29f7ae8f5da5a51673740d
BLAKE2b-256 5464677d019d82c398700a09eec80edd80c646be2d47bec5f1cb8608246596ff

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d766c7ca9fa96545357f60373c7e365ad4e791def999b1953c8e95a8580fd60
MD5 10d4ee61671dcd91d191a2b8c60b14d2
BLAKE2b-256 cb4595c316cd4bd6a94d1121949e6f9621e7d363c4aae268141c0af399fba1c0

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2f7f6ebc368e43847343e5a8020c46264dab462725ae816dec6015b3408ff7e
MD5 39ad48741fafc91bf62ad045bdd813db
BLAKE2b-256 162b8b26da2f19e66faf947033c7fef4dd3d2c15f64dfb6e573ae49d158f0120

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f4feaa866ef35e3d6c294682de44edddd1eea7572baa41828f8e29b2671c46d
MD5 62992e0693fb44743b093bb129de9caf
BLAKE2b-256 7eb46d42400a22f7486b1dc36a652a6ac55f6e8a0ed5d5c273be7b2b346c9118

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 301af8c458930a366db77a0b7e6e1bda9ed13c8308610e06f4b7015558fec624
MD5 7c56a220590ad2c66e0ca4adfba6029c
BLAKE2b-256 3fb04f6e1f1e8071e8d0721adfac854f02a3a902112780e7b81c0b3711dc5a0c

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0207725013fad1fc3cb6017fcef8e3caa22143dc7422b9dec86874b164ff988c
MD5 854de4393f321c53f58571f3199a2e26
BLAKE2b-256 56238f6f5a10001a5d7a9a256ebd52c81e2567398f3a4638714cf00414b8123c

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ea45d47364e8735882ebe961d85a8dfbb5b8e785298aab4fdd9d61dcfb5ec09
MD5 80507c584904b0c1e95fdd7980ef7184
BLAKE2b-256 01678cd9e3ba691f7d07e45828c884d1cfe07f178a2ce10990b2a834bbb85a0d

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27b83ef20b40dd15d90d04e98ba073a2b51bcae68f3458018e846db0f9f3d642
MD5 7b03932faa12ef0187ff6f93d0cc820b
BLAKE2b-256 023a82d09b15aa826d85268a88c302139330af2b5181fe92575794a91fa10c0c

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f35a84e5474d75427c28fa95bb5ec72504dc0bd4633da2dc25e86f8b0c33a1ff
MD5 14250cfa90c32a1a7dbadc0d2774cf1b
BLAKE2b-256 0d24c93f8df005c910b667e79007b3261117977fdc6ac5e8348a5341628a800f

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae6c79fe08aca521d53f185709955197a9427ee4f0f2581a1f2c0424d8e46320
MD5 c5d9f63a384e0f567befdcc05cdbe347
BLAKE2b-256 d17ef7c39d225c83854baf27c750bb681452101e7fc7ba649fc738e83c605754

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 234aeb9241f531b894bf2ab5f7bb4fe744d8ef394c0d4c40e1186b5d958142ee
MD5 c76cc5fff50433a23debc3d3add9a1a2
BLAKE2b-256 7922cd3f921d431967455bbbf8dac22c61469ac327e00becb4fe227301653d56

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 da153dd2e2697e2780be1e9cea3b296f414a7d10596c007826e1018ca0d73ed2
MD5 ad6a83fe7a2f97ff1e9619d64a7edd3a
BLAKE2b-256 40936568ad1caf462c0e012efeae4532d708e3f17d5cb12c16819484e245506f

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp312-none-win32.whl.

File metadata

  • Download URL: sumtree-0.2.7-cp312-none-win32.whl
  • Upload date:
  • Size: 160.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for sumtree-0.2.7-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7cf5fc09f5a55d5aa43fbb9659254371d2098689f747ddcf9ec47f36cf625422
MD5 875e5c603f29fb2399b3f9166363b24f
BLAKE2b-256 b7df323c80a1da58895177844d08c4919611423491f617ea0db1c7991788c22c

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8c4b557c4957e9f51ef81935b0d5c31b3b1767faaeb42acf27e7c7d8e938017
MD5 678c444976ca43096c467acb7cb3df4c
BLAKE2b-256 f4c61caa3d7fa845d2320c23b855ed12c29d38f961045b2c6667257f8730d58e

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4753d38ab11b8e2225fe5da66db766adbcbf22e5f897e369a38c251852bc3d09
MD5 d0c541ccbd0c7e086ea96b08f7d2b32c
BLAKE2b-256 75c644d5ca84ed3e1ee55b92742de346bf816b5ef9ddfb9660c0c98a8d4e4327

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6f35a42a791dc85af8a74b43582099359a516b85307f71bc3266bfc984a3da6
MD5 465cb329cccc47beac2b2b62a6be40d1
BLAKE2b-256 5a9c23174846fac204c859706bb9480322c11b19be568aeaeab395954736fbf8

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f9dd2bb4bdb3466df5dfab34b55f89840cf3932f1f562aa428d2b9f2143aa8a
MD5 9afdd5029282feb16da530a45cac12da
BLAKE2b-256 466f608fcd6a0f996203e7e7d71ce749850817d03b7b5fe509ec7271b40fa3ff

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a71d66bbc32886006a486b25cd952906b66269222184c11159be07f17d9b3ad0
MD5 acfe2d3e2ad85ea8944dbf3cf518c172
BLAKE2b-256 d8ac28216a2625f2d0e6f70b6e7b224266efab21a78527201db4228f9f3688e3

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dda7de80b8b4689e02220bd2721a4132a697e0c0e1160f6c1aa9c9b3a574a29c
MD5 ba299b18456761530799be322dbe2904
BLAKE2b-256 36ba872e9d0be6e1d92700d09fa92a362aff7c13d534365dbc6334b926391937

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f33dff88d675b9f40895d1d23702f5da58bb67b9876e76c8a80326ea71dbfa7d
MD5 bb5f1dc18bd689be67207c51ccbb0c4f
BLAKE2b-256 c2a64a9e40226e56c4fd8767e3c015583979498354bf4914a9d22d0ed7f23624

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3ab6936bdedb7b2ac522e4770d532e3769a9bd0c141019875e64c4d3cdc05ea1
MD5 246ad414d2678f441dd4bc0fed74bccc
BLAKE2b-256 246f99f7d325ce92a3beed826c158613adc3eefd46a13a55f2373b955518d123

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp311-none-win32.whl.

File metadata

  • Download URL: sumtree-0.2.7-cp311-none-win32.whl
  • Upload date:
  • Size: 160.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for sumtree-0.2.7-cp311-none-win32.whl
Algorithm Hash digest
SHA256 094571d2e56f863e81653be8e3c812527f413aaff11ea6d3b5bc6d6b4cf0a07c
MD5 5c3b75936aaa44600a5de843f561908f
BLAKE2b-256 215f6975ba8c279897ced1cbd5e69f4760f7ed02712ee5d968038cd105b79611

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9a5de3273517a85911e204ba12d5a21a206a79a1e228ce21bafe8261358a5d4
MD5 4c12e28c449b5b18cc061cc9c04c0395
BLAKE2b-256 53fb5f62492627f9dfa2ee6163c21145c391d8d460884f5d7635a5c4db379b71

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 451adbd66b238b30d68d76ca14a1b8997152b9cd06898591dfc4664aa75c9635
MD5 fc09a3bde050debfae079aa915188157
BLAKE2b-256 fdc2e4b8eb98f0c02ac7113081a8b6aadaff9f52e5c5ff0a34c27c5313ec4d32

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3441f7972e4360284056076fdce0ff5125fdebe09213e77cbbb074755e25d3dd
MD5 4762a6dc72d74fdb823e51139a20e9b3
BLAKE2b-256 d076f874f06eac894b922086c0a73ac4542980f563f6282427623d606ac93658

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f139d36f0c6e314dcd4f2ec6b57e7141fb3975a4118f09d96d0cadb7d3a8bca6
MD5 ad0d330b754bf53d27081bf7c095de93
BLAKE2b-256 f7a6475263e4f17798bc5de8d51b0956b8f9755a5076c11c8b09a814a76ff0e1

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39289b4693f298ec6c5cb0306227de0c83f869d44509839a900c9ef67cd76fd3
MD5 61abcc1022744d9f1b72ece274b0ed83
BLAKE2b-256 1eec5e9f500b0154f076374b134bad82b707076b247cf29267108a74352714d5

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a224257f1749d0109cc4778305db03df2de8dc1c21bda76cd2c8005fe6ca6138
MD5 5051770cf512865f40c5ed596f245710
BLAKE2b-256 61d269395f1d4690a2f053a9f9861462ac0916f0f8589abc3b9c1d3f9cc51c3a

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 83d1793e0b25738b5f44ed159a654ffd13acece82600014586882e93d8cf847d
MD5 086b8bb47fd501d38fa830953d70ff2c
BLAKE2b-256 04818fca89d19f7dbd633ab5c7125ae58bc8197c97ead7cdda0a4fe612f86f03

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 db3e345b391bf89bf7c31a35fd2f54d2309fc729c3505a85d75a008cc8a0935e
MD5 2c5e14235bc676e76c4d110005e85577
BLAKE2b-256 1e07707bc4f5838cad78a6a09590c0e051b78a05900379eb5dd3ef780db50064

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp310-none-win32.whl.

File metadata

  • Download URL: sumtree-0.2.7-cp310-none-win32.whl
  • Upload date:
  • Size: 160.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for sumtree-0.2.7-cp310-none-win32.whl
Algorithm Hash digest
SHA256 822dd6c3e97abb77b98f02c24bf4ced729e58515f27b380e5569677a54c3daac
MD5 adadaec5bfa50049df96c6b371d90bda
BLAKE2b-256 853ec296c6ea6df125fa56242f3428fb43032a9b55ab6c3a2f99bcf2cc20e4c2

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9546457d00d9eddde5d2f91076959bc80fc5c9502cccb0a83fcedde57ae9b127
MD5 c3e033116af4ffe75da122fa75c1bbe9
BLAKE2b-256 3e37563bc7a764d547b9305332abb92b0e00e99945c39d6ece8843f6afe999f5

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8c5571e6ce1bdd8c39d1673d2839fb5e296ad394b7d0fa11252b5aa981c368c
MD5 8a257db1f7922f57c20453ee215a3c89
BLAKE2b-256 3cfbb6d06e69952209f9f3f9e785ca21c13a559268da6150a9fdd28b9a6328ce

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0f800085e49bcc3635c2c6166b5da52c74f7dd6c40b894691b2f37fa6922f55
MD5 0486ea7c65adc54671b297a97f9e7e30
BLAKE2b-256 9d244ca7f4f21611243d83ca37aaefb880ee4af75673ceff26b5cf402fc46f00

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c7e0deb39d198a29ff61a2b588b7929e233dd9f405eda91751f430656dbcd30
MD5 16f9a7372f7d0d9924201dde3afcf131
BLAKE2b-256 4be3752a25a922f05de7c81f746043f00c7d80a10e867ef8a90ce759d892733d

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e07c1defffb2e17617126cd6e4fb2188212031101b8f89a743edc74986bc508d
MD5 4a92c764d15fd173d83013efc9877e24
BLAKE2b-256 e5277457a57f6f7e315576482256c6e4759d11439357a2fb11a6a5fb97b93945

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 376741a8b624c33bb991404f591d5d98b4310fcdd351bbc8d897eef93d74db01
MD5 9ca39843e5baf48a50b85606a5c8cce0
BLAKE2b-256 1408aa35c9f249122dcfd74c3bd500bc398abec4b4e68dffb325f970ac8e7fd5

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 70aca725398495a6044594cdf6023550151c3613ab99f0090b586dcfe508cbe7
MD5 48abfe574c841b420c08407cdfb223d4
BLAKE2b-256 73845850aeaa41833d4d33016a5fc218e575566cb51786715888bb6f433d166e

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 516a76a2aa5a1413dcaec7109a9fe3cdffed092742e5545003e7369da4b40932
MD5 8951485c5ca279d8bbbf34afefa353d7
BLAKE2b-256 b26a0451b5de16470486a90583e4cf6594e71dec6cf47e55d74e1b2edd375e82

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp39-none-win32.whl.

File metadata

  • Download URL: sumtree-0.2.7-cp39-none-win32.whl
  • Upload date:
  • Size: 161.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for sumtree-0.2.7-cp39-none-win32.whl
Algorithm Hash digest
SHA256 85ae6a3be8c2faabec4cf85921b57c528989a2613017641466dabf83565beb59
MD5 e1e77cbd2eb967e3a89bd51cf0f1f65a
BLAKE2b-256 2ce96594ca977f7d2405a711dbd2f94cecf15842d0dc28b73f9a438443dd1858

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3b6150ea07db1d2ead7d721985f9b771ada970ccb4a261a679c62c63fcd7d5c
MD5 6f30e5f7a4fd5b80459d58eb54fe1bdf
BLAKE2b-256 37a4ff0a37748135bb9845053ac93a0721adf99e9e803c358a1c182082cff288

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 342449725e831899c4490eb01686a0df62a0b3e88705f8aa3e184a9e38d8874f
MD5 e53b1c2fec3cc9b337071a6766ec8bc5
BLAKE2b-256 68d77d082535aa65eba5732f02bb089ca2cf48f7bee9fd32327c8f0a2ea2ce04

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 033fd10f63a491d7ffff2e430758de1d7e5726dd4cff5a6eab7630d3a74865ee
MD5 bb9e17c6f46687d7d043100e74b702c4
BLAKE2b-256 6709368daf3b9f24432bdae63462b67f0348ae187fa751d429278670bea5c032

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e88b683126744818d6420ffde19d47119730923205fc950c971b8f83251b778
MD5 07a8b0dd12bb4b4c7c7af3036d354e67
BLAKE2b-256 9095c37ba4300eac3c253c612d76d0a028fc613707c2f67b2cc0e64fa88af167

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9f0858ba9252304afe544a285588495df8b943f666345fc281e493d4b1fa13dd
MD5 eeb5dc3a5cc62fff1c90e55091155eae
BLAKE2b-256 e69044b4b3e22249b3c9af50b03257db4edf494d9a5766a6b3d222557808fa85

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp38-none-win32.whl.

File metadata

  • Download URL: sumtree-0.2.7-cp38-none-win32.whl
  • Upload date:
  • Size: 160.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for sumtree-0.2.7-cp38-none-win32.whl
Algorithm Hash digest
SHA256 865a8313e5c8b06c5428de3a5fdee2861328b968e1e125e1a5f3a3097e2f1f55
MD5 7174a6ddcddd3d1253961f405de3759e
BLAKE2b-256 662830469be22a6af2d5047185057b5fdf5696abd6c7d26b7ce3685747c602f0

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d4214cb5aaa96e30396c3f48eb2359df68421adce69c4b02c5b1e4438915a2a
MD5 8a19a3b70473a01382bc3e9b60d321a0
BLAKE2b-256 a0a41424c761e1f3d07ef6177dc1fc7a47a8241c1f99cb4ec7ae62abdb1dd6c8

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d6ae5013b9108e18f0dcb370ae893cb02c1f2e5eec84933ae398821d3e2b7e0
MD5 ffaf8c7fef7bf3e78f993e35f5002020
BLAKE2b-256 175551b723379617fda6429097b6874e928f3e3ff775b6f12e8ee7695f30e74b

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8c3c0cb795130fda8357ca1ef7ff596e2b4b1b01be6ca24c002d504d1d78b61
MD5 e8e8928c503b8e8fdf0199941fb89c66
BLAKE2b-256 d92b1ef6e3e6f17d6e5fa27641288c9ee6bf3ec667e9d67cd8cde26d6499e5a9

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c52dc2891709ad3e4b3d65f889fb705fa145efa97c37e90bf324ec8c2937c24
MD5 d7326740de7eeb50b91a6f855ebf053a
BLAKE2b-256 d6395872ea7760dff563ea14d80bfa18129519d37bc0bc5f02aa5c5aa3438c9b

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 539a7b7e60a50dba7728564c878e7acb727ea51f3703d77013875f1919962072
MD5 012c5bb5cb866f813e88693002ebccad
BLAKE2b-256 df5ac95ac77161c7a3920047cac345a62611f3f5d2b772d7fc6b77e2206b7b8a

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp37-none-win32.whl.

File metadata

  • Download URL: sumtree-0.2.7-cp37-none-win32.whl
  • Upload date:
  • Size: 160.5 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for sumtree-0.2.7-cp37-none-win32.whl
Algorithm Hash digest
SHA256 aca1a573fafd60466ed27eea9af03c302acd1dc4a4eab9cb680eb1cf55f6affe
MD5 9a5f2bcf9d13bb5672396af4a4397e65
BLAKE2b-256 fda4ccd5f895d68be5f95a24e3fb28e7f79d53d7397f7196e58b6ee125bba0ab

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3598810d6036760ca44594c665bc35e821b934aba86b53be231078e5e98ba7fd
MD5 c2be5b74020f0eea1475fc207b2c90cc
BLAKE2b-256 e11419064161cd0d50ee520fd38f6724081f173cc8447b7b436dc2a4104f19f4

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc78ce8bd6f2f00765a4d80a6dc08d0d3731bce403ae2e39f50e1f9210d15380
MD5 4fc45503dca9f3d401eb5e1703cc4d8c
BLAKE2b-256 05647e850c84ec4f14493fdf1b6477aa97d3740ded3baf1d0be5fb947a709893

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d84a1bda6f37557dd7275ea17f8f44267c4130c5df4183b8c0da9364b53561f7
MD5 137ef82bea789d773ef6fa6c258b553c
BLAKE2b-256 4f8d4e2c1bde9bf9677b4e271ab0efbce484a7fd24628c34b23cfee663d2687d

See more details on using hashes here.

File details

Details for the file sumtree-0.2.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sumtree-0.2.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7e18c25ebe20028c71a4c4516a44a4155b6d320e39583517523b03eb224ac91
MD5 ffb70728a8286df7eada98d88fe8ae1a
BLAKE2b-256 d2a6c9548c0cfb3926890817d50945cf78c2e03ef5d9d6442ea52123cc87ef58

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