Skip to main content

treeweave Python bindings

Python (nanobind) wrapper for the treeweave piecewise-polynomial function approximator.

Installation

pip install scikit-build-core nanobind numpy
pip install .          # regular install
# or for development:
pip install -e . --no-build-isolation

Quick start

import math
import numpy as np
import treeweave

# Fit exp(x) on [0, 1] to 1e-10 relative tolerance.
def func(x):
    return math.exp(x[0])   # x is a (dim,) ndarray

approx = treeweave.fit(func, 0.0, 1.0, tol=1e-10)   # dim & out_dim inferred

# Scalar eval
print(approx(0.5))          # ≈ exp(0.5)

# Batch eval
xs = np.linspace(0, 1, 1000)
ys = approx(xs)                  # shape (1000,)
ys = approx(xs, sorted=True)     # 1-D ascending fast path

API

treeweave.fit(f, a, b, tol, *, dim=None, out_dim=None, dtype="f64", ...)

Fits callable f and returns a callable TreeweaveFunction.

  • a, b: domain corners (scalars for 1D, length-dim lists otherwise).
  • tol: approximation tolerance (drives adaptive tree refinement).
  • dim: input dimension; inferred from len(a) (scalar corners ⇒ 1) when omitted.
  • out_dim: number of output components; inferred by probing f once at the box midpoint (np.asarray(f(mid)).size, scalar ⇒ 1) when omitted.
  • dtype: "f64" (default) or "f32".

TreeweaveFunction

The fitted object is called — there are no named eval methods. A point gives a point result; a batch gives a batch result; two optional keyword flags select alternate batch modes.

Call / property Description
fn(x) Evaluate. Point: scalar (dim==1) or (dim,) → scalar / (out_dim,). Batch: (N,) (dim==1) or (N, dim)(N,) / (N, out_dim)
fn(x, sorted=True) 1-D ascending-batch fast path (requires dim == 1)
fn(x, transposed=True) Batch returning (out_dim, N) (requires out_dim > 1)
.dim Input dimensionality
.out_dim Output dimensionality
.dtype "f64" or "f32"
.memory_usage Bytes used by the approximation
.print_stats() Print internal tree statistics

A point whose length != dim, a batch whose column count != dim, sorted=True with dim != 1, or transposed=True with out_dim == 1 each raise ValueError rather than silently mis-shaping the result.

Running tests

pip install pytest
pytest tests/ -q

Download files

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

Source Distribution

treeweave-0.0.3.tar.gz (17.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

treeweave-0.0.3-cp312-abi3-win_amd64.whl (731.7 kB view details)

Uploaded CPython 3.12+Windows x86-64

treeweave-0.0.3-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

treeweave-0.0.3-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (639.8 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

treeweave-0.0.3-cp312-abi3-macosx_11_0_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12+macOS 11.0+ x86-64

treeweave-0.0.3-cp312-abi3-macosx_11_0_arm64.whl (498.2 kB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

treeweave-0.0.3-cp311-cp311-win_amd64.whl (734.5 kB view details)

Uploaded CPython 3.11Windows x86-64

treeweave-0.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

treeweave-0.0.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (644.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

treeweave-0.0.3-cp311-cp311-macosx_11_0_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

treeweave-0.0.3-cp311-cp311-macosx_11_0_arm64.whl (500.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

treeweave-0.0.3-cp310-cp310-win_amd64.whl (734.4 kB view details)

Uploaded CPython 3.10Windows x86-64

treeweave-0.0.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

treeweave-0.0.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (644.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

treeweave-0.0.3-cp310-cp310-macosx_11_0_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

treeweave-0.0.3-cp310-cp310-macosx_11_0_arm64.whl (499.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

treeweave-0.0.3-cp39-cp39-win_amd64.whl (735.3 kB view details)

Uploaded CPython 3.9Windows x86-64

treeweave-0.0.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

treeweave-0.0.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (645.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

treeweave-0.0.3-cp39-cp39-macosx_11_0_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

treeweave-0.0.3-cp39-cp39-macosx_11_0_arm64.whl (499.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file treeweave-0.0.3.tar.gz.

File metadata

  • Download URL: treeweave-0.0.3.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for treeweave-0.0.3.tar.gz
Algorithm Hash digest
SHA256 baafaf2f445d52c62ec2b7b5f06fcc80e53c1e4a779652fb8aac68b9813ba6d2
MD5 d45ba1112230941b885d32ee99ec64df
BLAKE2b-256 76ed48a8961177779d9e67fbb33ba1a201c9bf705fef76f94d84a4f6cc1ff50d

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3.tar.gz:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp312-abi3-win_amd64.whl.

File metadata

  • Download URL: treeweave-0.0.3-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 731.7 kB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for treeweave-0.0.3-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 85930af64384e99b9fd7bfad82006729ce6fa5bad410396bf20c1e55ab6c2452
MD5 dcadfa09e74ba462dc74658100631d8f
BLAKE2b-256 be75ef8a807f68d6cd70325197e0fd6777f856949d8b6eff614f7071063d2e03

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp312-abi3-win_amd64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e10387c667eac35dad0deb5ff1b0c3f92e5e0cd1993caa90ca010aca145d166d
MD5 8ad8ff2e868fc399b9d09747f64f167e
BLAKE2b-256 5d4628c5f9446fbf9572885c3d1be61f6878f859f7cb2c33502376bcd043a28c

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5294ad28fd3c6f7eec5c31a56a72bb58732cbf65d10cf32dd91370319b30520c
MD5 e4e3ca7bfbf8422b43e9c4cfb62eddba
BLAKE2b-256 a9f343269e9ba2080e44bf982f60563e1d75451f6f06a585610e086dfa44ade6

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp312-abi3-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp312-abi3-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a1efed9a2794cfbc9a3c871a7eede7d24bc22375551af8005cac45ea7678d7e0
MD5 a4c70dcc08e7b6ccf8c87d0a526d18dc
BLAKE2b-256 12d2b135a43c9cde8eaf97b4a4cc3406653ec06e07805f18cf9f338aef255edc

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp312-abi3-macosx_11_0_x86_64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp312-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf59f15c74c2f8e9d289c03b3c361dd981a38185c39184bdb3557b96724fe7cd
MD5 57ce6014a0532c03acb7c70e77427e69
BLAKE2b-256 77927e0a8ba536bbe948366c965722d66c4eaaaf01dceec7dc50f43b61ea03dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp312-abi3-macosx_11_0_arm64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: treeweave-0.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 734.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for treeweave-0.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 23e2551b4e40773b9af657b216a9944582f8864ceab2b4a217d6fdc239fe4f07
MD5 970be3beceaefd31d44316d15bcd3851
BLAKE2b-256 674252ca1abef884368ad1a8d921e753578251acf27bc94c91689e908b412e1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp311-cp311-win_amd64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6857b07baa3fc1d3e3304cb7d90839f0e38f1aa43e40e89fc5ddab7586796026
MD5 c21878920a3e5167e58af771d5242a5f
BLAKE2b-256 389d0ed0de317c21e29a4e02c4eb4f449158c87474d54311e904791494031cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfed3cc91e19f474702579799f57dd6eae8ab79553b348cd5e692098a5d7cb8f
MD5 77a93eee79ae3bb073a5d5488b027626
BLAKE2b-256 febde2036a8dd1e4e3c9896e4e3390198992bc7be7be03a01967a6f43b13b4fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 795cd28ee052ca1ae4956c0161b855335621504f9e8c96ac0e904b62a04fb799
MD5 bb328611db02f148f8648a173fc01fa3
BLAKE2b-256 ec7d6b7f2ccd33dd54d884295761728bde793be9e33c35ea01fff9cca575d859

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29d971ffbf21df60a72c5fa773aa40070a8e9eb4ffe5c0632f1c37ae2b3b0d9c
MD5 fb8e50c654b5d0e7a5d6ee322cb39f84
BLAKE2b-256 8b276af3cd92877293bcfaf5b8c8bc7e33b62e371edd97b26d3cde776b30f8bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: treeweave-0.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 734.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for treeweave-0.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d6f567d4a4cbbd9b3b94aea0890c4e37e9f75f29b29f1e8b8941c019f21b239
MD5 8fa9f940ce0eaed9d20357a410600869
BLAKE2b-256 fb308792c7f4c8f0a0a82a85ca5431f986c9961837f3f9035167694ee435feee

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp310-cp310-win_amd64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be7b66992d7b9c3de506abb69737260b3e6854d22f0053ac6d9308ca4c426178
MD5 8eedcd21b436090140d9ff38c6af4c19
BLAKE2b-256 67dd101f06d44539075426f8520c365808cf9fcdfeef74e4b13afd61511a6cef

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c796b6a12594bc710eebee9938893ecb3c811216fc35d83a90bad18d4618aac
MD5 55ed2da5b862ff818c9d3c2465ebf0a2
BLAKE2b-256 d4b19fb504081ae6c604c7484a22975d24cbc4a2fdd4e05911a2146bc483d977

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 381817a91def0d141834ae5f1ce6c1346e443b157ecf80de0c8a3ee29d1e19c1
MD5 c14ae1696ead9438a0603fecf3f8ce61
BLAKE2b-256 55a9456e9a4d531c4259cd36800f9e9420257238df8256bf8c42e5989223930d

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad5703cfb68918fa139109b4529ffc7f7cc289260f7fa8a56f5a7297885ad0eb
MD5 46920ee8b18376d221ee265de2db776a
BLAKE2b-256 58e6cc3dc27e0e38bdeecdc1837703e44c1b2aa4077102ea9bf44539bb324d4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: treeweave-0.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 735.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for treeweave-0.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c2af8992adc92a1cfd27588a9f5137c2811fe556ea66e2e88033d58a3e81f22b
MD5 3e341f4f3225d5d60fbf54ae6ed56f01
BLAKE2b-256 5eecf9e57ca200de9976b4d264d0134906bed8314646985fd756b261fc383fed

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp39-cp39-win_amd64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a05e1bf23cf60517aabb1415e9b076d72ae2cd8f22b6ededdf150906367a4be1
MD5 396163bb5e3f45067034f328b986c3f7
BLAKE2b-256 4ed5b26a852fb204e68bd3746fbe693bbf74438bc59abf664175c31a6607ebbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa2cb4fe6e0282553c38940561a4192d3f4c461811e8dfc9f80e78c4e7e1a954
MD5 ba75d0a10d91494e5cbf15c50ae71495
BLAKE2b-256 7585dee207eabc65ae9cfe0af841115edaecd08be7a605261795abf6b2a4a230

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3b6da6f29feb6e0bb492ab89a989aa3061c46b15e4e6c2498ae8bb6e020dfad5
MD5 a2fa0a3fecaaea0d7ddc1985d8c467e8
BLAKE2b-256 731f58da7ba6ec47f992cb55852770c07d728ba1dc3c7853b3438595a7314979

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp39-cp39-macosx_11_0_x86_64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file treeweave-0.0.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for treeweave-0.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13db2643e6f324dbb80afd050a26f00ffd456df736ee8bbab7b235225a126058
MD5 d2eead0b0fc9e98fc04658a83b96f490
BLAKE2b-256 4f0db6fca272a4b222f725911682d000079a42d7db9016b8a8f7bf675823d4c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for treeweave-0.0.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on DiamonDinoia/treeweave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.0.6

21 files

0.0.5

21 files

0.0.4

21 files

This release

0.0.3 This release

21 files

0.0.2

21 files

0.0.1

21 files

0.0.0

21 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page