Skip to main content

A high-performance interval tree library implemented in Rust with Python bindings

Project description

Manzanita

A high-performance interval tree library implemented in Rust with Python bindings via PyO3. Drop-in alternative to intervaltree with significantly better performance.

Installation

pip install manzanita

From source

pip install maturin
git clone https://github.com/pgarrett-scripps/manzanita.git
cd manzanita
maturin develop --release

Quick Start

from manzanita import Interval, IntervalTree

# Create a tree and add intervals
tree = IntervalTree()
tree.add(Interval(1.0, 5.0, "alpha"))
tree.add(Interval(3.0, 8.0, "beta"))
tree.add(Interval(10.0, 15.0, "gamma"))

# Or use shorthand
tree.addi(20.0, 25.0, "delta")

# Query by point
tree.at(4.0)          # intervals containing point 4.0
tree[4.0]             # same thing, using indexing syntax

# Query by range
tree.overlap(2.0, 6.0)   # intervals overlapping [2, 6)
tree[2.0:6.0]             # same thing, using slice syntax

# Find intervals completely contained in a range
tree.envelop(0.0, 9.0)

# Check for overlaps
tree.overlaps(4.0)          # True - any interval contains 4.0?
tree.overlaps(2.0, 6.0)     # True - any interval overlaps [2, 6)?

# Create from tuples
tree = IntervalTree.from_tuples([
    (1, 3),
    (2, 4, "with data"),
    (5, 7),
])

Interval Operations

iv = Interval(1.0, 5.0, "data")
iv.begin       # 1.0
iv.end         # 5.0
iv.data        # "data"

# Tuple unpacking
begin, end, data = iv

# Overlap checks
iv.overlaps(3.0)                  # point overlap
iv.overlaps_range(2.0, 4.0)      # range overlap
iv.overlaps_interval(other_iv)    # interval overlap

Deletion

tree.remove(interval)         # raises ValueError if not found
tree.discard(interval)        # silent if not found
tree.removei(1.0, 5.0, "data")
tree.discardi(1.0, 5.0, "data")

# Remove by overlap
tree.remove_overlap(4.0)        # remove all containing point
tree.remove_overlap(2.0, 6.0)   # remove all overlapping range
tree.remove_envelop(2.0, 6.0)   # remove all enveloped by range

# Indexing syntax
del tree[4.0]       # remove all containing point
del tree[2.0:6.0]   # remove all overlapping range

tree.clear()   # remove everything
iv = tree.pop()  # remove and return an arbitrary interval

Set Operations

tree1 | tree2    # union
tree1 & tree2    # intersection
tree1 - tree2    # difference
tree1 ^ tree2    # symmetric difference

tree1 |= tree2   # in-place union
tree1 &= tree2   # in-place intersection
tree1 -= tree2   # in-place difference
tree1 ^= tree2   # in-place symmetric difference

tree1 <= tree2   # subset
tree1 >= tree2   # superset
tree1 == tree2   # equality

Restructuring

# Split all intervals at their mutual boundary points
tree.split_overlaps()

# Merge overlapping intervals
tree.merge_overlaps()
tree.merge_overlaps(strict=False)  # also merge touching intervals

# Merge intervals with identical ranges
tree.merge_equals()

# Merge adjacent/nearby intervals
tree.merge_neighbors()
tree.merge_neighbors(max_dist=1.0)

# Chop out a range (split intervals at boundaries, remove the middle)
tree.chop(3.0, 7.0)

# Slice all intervals at a point
tree.slice(5.0)

All restructuring methods accept an optional datafunc parameter to control how data is combined or transformed.

Boundary Inclusivity

By default, intervals are half-open [begin, end) (inclusive start, exclusive end). This can be configured per-interval or as a tree default:

# Per-interval
iv = Interval(1.0, 5.0, "data", start_inclusive=True, end_inclusive=True)  # [1, 5]
iv = Interval(1.0, 5.0, "data", start_inclusive=False, end_inclusive=False)  # (1, 5)

# Tree default (applies to addi, from_tuples)
tree = IntervalTree(start_inclusive=True, end_inclusive=True)
tree.addi(1.0, 5.0, "data")  # creates [1, 5]

Tree Information

len(tree)        # number of intervals
bool(tree)       # True if non-empty
tree.is_empty()  # True if empty
tree.begin()     # minimum begin value
tree.end()       # maximum end value
tree.items()     # list of all intervals

# Membership
interval in tree
tree.containsi(1.0, 5.0, "data")

# Iteration
for interval in tree:
    print(interval.begin, interval.end, interval.data)

Performance

Manzanita is implemented in Rust and compiled as a native Python extension. Key operations have the following time complexity:

Operation Time Complexity
add / addi O(log n)
at / overlap / envelop O(log n + k)
remove / discard O(n)
len O(n)
begin / end O(n)

Where n is the number of intervals and k is the number of results.

Benchmarks vs intervaltree

Measured with python benchmarks/bench.py (see benchmarks/ for the full script).

10,000 intervals, 10,000 queries:

Operation manzanita intervaltree Speedup
Insertion 19.0ms 87.2ms 4.6x
Point query 294.7ms 315.7ms 1.1x
Range query 433.9ms 13.90s 32x
Merge overlaps 4.0ms 28.8ms 7.2x
Removal 27.4ms 61.8ms 2.3x

100,000 intervals, 1,000 queries:

Operation manzanita intervaltree Speedup
Insertion 294.2ms 1.12s 3.8x
Point query 310.6ms 453.1ms 1.5x
Range query 437.1ms 168.01s 384x
Merge overlaps 76.7ms 416.9ms 5.4x

Results will vary by machine. Run python benchmarks/bench.py to reproduce.

License

MIT

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

manzanita-0.1.0.tar.gz (32.3 kB view details)

Uploaded Source

Built Distributions

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

manzanita-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (591.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

manzanita-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

manzanita-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

manzanita-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (591.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

manzanita-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

manzanita-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (591.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

manzanita-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

manzanita-0.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (591.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

manzanita-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

manzanita-0.1.0-cp314-cp314-win_amd64.whl (241.1 kB view details)

Uploaded CPython 3.14Windows x86-64

manzanita-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (591.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

manzanita-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

manzanita-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

manzanita-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (335.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

manzanita-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (343.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

manzanita-0.1.0-cp313-cp313-win_amd64.whl (241.1 kB view details)

Uploaded CPython 3.13Windows x86-64

manzanita-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (591.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

manzanita-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

manzanita-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

manzanita-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (335.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

manzanita-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (343.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

manzanita-0.1.0-cp312-cp312-win_amd64.whl (241.1 kB view details)

Uploaded CPython 3.12Windows x86-64

manzanita-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (591.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

manzanita-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

manzanita-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

manzanita-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (335.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

manzanita-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (343.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

manzanita-0.1.0-cp311-cp311-win_amd64.whl (237.8 kB view details)

Uploaded CPython 3.11Windows x86-64

manzanita-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (590.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

manzanita-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

manzanita-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

manzanita-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (335.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

manzanita-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (343.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

manzanita-0.1.0-cp310-cp310-win_amd64.whl (237.8 kB view details)

Uploaded CPython 3.10Windows x86-64

manzanita-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (590.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

manzanita-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

manzanita-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

manzanita-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (591.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

manzanita-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

manzanita-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

manzanita-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (591.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

manzanita-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

manzanita-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file manzanita-0.1.0.tar.gz.

File metadata

  • Download URL: manzanita-0.1.0.tar.gz
  • Upload date:
  • Size: 32.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for manzanita-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f8991989385c1fc9a83dc00d7b4a6fabd6d2445d69b86da4071d9a37a91dac8f
MD5 cba2292fd33961c6bb5dc06ec0cacb99
BLAKE2b-256 751abd71010ded06c2a504bb75c1733a7b5b9e93c2de43a88987d2df351e6e2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0.tar.gz:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec6aa9068a9c22e2dc1457b5ec994617f886a45b7d45fcde5f695c5ced1c1de4
MD5 c4782dd2424b627930b1ee7c4fbf7a9f
BLAKE2b-256 11c3429e94ae486fa96cf531fbb72028c102d72da510056d298fe3b2e4974f67

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c3ebb598de3aa6298d61074d5b12268a08ee917881d911bc654c6ad9418b3e1
MD5 9451211875307dfe8e5036157ff97eee
BLAKE2b-256 9eafd9f0db0d9955f4b2568a956844eb64f3683322a7fb52ff0ea40ed955619e

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eeb374ced40ed36ac8b5ebe3cda95c8a3ad89c05e712fb33e1bf59e7e08ae69c
MD5 4ffdd0ff26d92d6eb6f294415f81cf5b
BLAKE2b-256 19781765e2da3cc7478a49aeccc2e60603511efeb95a0992242ff6af0c2bfa5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fd063be60fbd7b127eca475c0a37c6d8e1445c047020fd823220d0dd76703a8
MD5 66f4a842936a2179f06404709fd3b6e1
BLAKE2b-256 2380d23a0a0a62d9f2bb37a59934553327b476e3dadab2f9b224a102e23c666a

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1730b6176927b6f14306277f70260b6c023d80421397cf503c23601b889f2e7f
MD5 89f9c40aca7afa5b1deabb19bc9b21ec
BLAKE2b-256 08916f9fc12e24fa2b07e14003a20b97cf1069f9ed9276b5c7c00b58dc8a17e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4f36b052181d38a78d9a9dad1e15cdefeeeda48c2e69b5bb41450a318816d02
MD5 452aad60161cd1ddf739ef294db53030
BLAKE2b-256 ab500bcd72c37d61dd1085f9978b4d05a962ad9616d09dcf4e4f22e4a64446f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa82c2e09ad4181ed89e3d5a025eab5c7b224ed596d2cca71ec532557b945b3c
MD5 079ad9460ff78545dd2bd12862e5cc6b
BLAKE2b-256 5772754d3d51f90575b65d51ecc3128be5e7f220560d965823c76e9ed431b6ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 788d1b22fc06bf0ad4c67d2bf7ab766c4ac76c960248ccb559fcef3cfd823f2e
MD5 8f883982d312020a91c939742ebd19da
BLAKE2b-256 64abb54e66afada5a0eaae6677000e714a57042cd5a71c94746b1fd0f794babf

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d213e38c5d8aed3cd17d2b81e6215cb892ad226113886e1802c6bffb456c7a2
MD5 583a16cb3ec373593c53fb6d7dd5a5b1
BLAKE2b-256 93d9c03a8e820c28b29b5fba3399b6bce3eb189350395ddd5063b7a62f1deb72

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: manzanita-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 241.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for manzanita-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c57179910e99c86cfd36c0fa179c3c80b4d2646f2737f6afbb7d1e51e0816cc3
MD5 1a42daecd450bc4dca6885185e29133f
BLAKE2b-256 0f627431ec2cff282dfd6c91c18d2c27611041c70a04a983abdce0523fe0cefc

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d822040214ea6ce5ecb146f516e9d346356f9f17cbb0f2b811615af5df352da4
MD5 a38babcc8df2927a0c7cd39a192e0fa9
BLAKE2b-256 2fea82a918a1dbbac1319ad7f6acc64a22954da4168138f676c64149f9d278c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6516a038f51cf8e2d573a4f986d9c2d837fb1f31bef659c40d74126da838daea
MD5 e64fee53911cebf9c2604ad2058a3b37
BLAKE2b-256 80285a68134434b9f40815d4c79da4be219003148dd41c257970059a8963e43c

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39a125d671793290816ee35c4f621cbb17fb0afb1bae713f6d0bacffc1ab5a4b
MD5 fe4c894ca5c7a6991ea0fbd90a59cb20
BLAKE2b-256 fbcab27307a56722e502ce999324cb6979e66e3157066d22bfdb0f93af63b4dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3aa6b44d302ee7defa5b1219e50431e04a5de348a07e0bfbd9154cd1314e03eb
MD5 fc2a70248273ef609c532e89d257dbcb
BLAKE2b-256 c0ffd3b8776f37be0cba834c7ea92573db8a1c3fcfe670354c73707010bb32e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a63224c4c71e7742d7539ea982d0aaac26fbe9451ca47c625553a677cca14c70
MD5 037327c307da4669b016394cd15f299b
BLAKE2b-256 bc067e64b1cc333b04d949f07725c0eadedfb084a77a8fc3facbeeef8d79a3e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: manzanita-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 241.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for manzanita-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 73a41bd2a13d140052be18e77a94d45567cf557d38da9eb20734f19845c56ab4
MD5 2ffcd2d25d97279b905fbe7d914580c1
BLAKE2b-256 87bd5d7786fb17e1a7523a778143ea096f337d9a0ded5d604bc52df71e93c925

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6a6a3c1449256d7590577606c02e52a665f428821f23529b4e090f58cf0c24d
MD5 c8cf35b2eef6de809d7e33f07cf2508a
BLAKE2b-256 749f3a9121ca09694a06c5354ce4226613eeffc2749d0c1c836a41175efa8b03

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36264674d93f0969472ee67cabf82148d512052a99fbd1cd7f8d1ee5f5bf9c7a
MD5 50467449481393f0efa5b91b5d7dcf56
BLAKE2b-256 b07460f7ebd05d7a8b02a359645d7e4ec710b47597184bdc24c03b2ebbfacb4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 748768b42a46d069e116e68a76eac4eb910e6e5c7f645a38cd68bb9b88943980
MD5 f27b4ee42348ec9bb75caf2958332cbd
BLAKE2b-256 99615e1e6f5ef518c7cb588f8ab4f33d197a24202638673ab44441f87bc977d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1f4ab74d2560671e35fd5710749a5e63ab59e8e07d4004a8c0bde5d22eb2d88
MD5 d17be06bbe1c1dd0725392a3597a0a9d
BLAKE2b-256 bdd08a79991d2c523b1215cf6effad9ddeeaea30f29a28c3ed08a532fede6c04

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bd0a112b52e44a7b81343504cc97c2c03a69ee15500f736e88b64e5b2bdbf0f4
MD5 410ddc023930373039a9e06199b40d2f
BLAKE2b-256 10788c59377c5606b55bee8ea65b9106e2ae30d90dfb31ee64a8483cdeb7d932

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: manzanita-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 241.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for manzanita-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f342b61937df89d3baa4ba74d2d831d3a2e0df126f6e7f97401b45d9ec5f11b7
MD5 7396e8b51095caa3b9ba1a208b8f1f6c
BLAKE2b-256 ed02bce80754c26a4d230a68d0d2afb482c26c7c541fc59cd3a0371877adfb13

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 427e7800da8a143f9447ce5ef65f98cd936634e3f4ae5e0de26b8f46df5f63dc
MD5 af1b8cd771154f29155ca7361a88d623
BLAKE2b-256 7f29fcc798eeea712b487d0cd2ecb1276e9aa34b40be7087d0f9b5bc6824c99d

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b67f54bf589efc82ad5a01826371e7f452783c98d1fda9334530a0043fb8402
MD5 fa703d57dd241949c64eb790a4dca6be
BLAKE2b-256 b9be3f269e400d0380d60327c26447627e94debf835215ad18d646609362190c

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce5a15d32bdb765803a22c2cccddfece837bd0aa85f2ce597a2c895c239f696e
MD5 20e8a8938738178bc7c1b9e23d9a188b
BLAKE2b-256 bb3eefd9590e32380729bc841dd1daa71b122409edc7f72d07bd33313d80c31d

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16d136441abe9bce3541ca1b225802da6d7990bd7d8df85240a8320a3d630da9
MD5 38add7acc1c5edaa8a0f407aa5c03256
BLAKE2b-256 5eb35c560b05938365b4896695b560040ee653c306cf7feef7f9a17e7acf1a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14a727bd4bc1dc334ad5b6905153729b260c9db2b494a7a110b9529e2a9cee6b
MD5 f388a26c5431945cfe9a30f37dd726b7
BLAKE2b-256 9e88b1c38855ba5b55a5528bdf2f2e801650c625e9f47c1d78b79c8f4c4dd3ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: manzanita-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 237.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for manzanita-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3c4d84fe415b3f3c3809ad81412ec9ba55014f9ab89f4d16cc305f09967495bc
MD5 9ce2a3bd21d63751d03f2e31a050bf9b
BLAKE2b-256 67942c922b8722ecb4675e8c1c361c1ccb1ef90984777e5ee308a88949576b33

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec6c2495036a9cbd22665ee5475aea06a83eda0b4cace9ea268a327be87e37cc
MD5 522f98b5d57b5ce60ebb7b4e661eb8c1
BLAKE2b-256 d03034def7484093fa00565eec615925d4d9179ceacd805cd620512133c38993

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f67466e39fe1201d6f9e9714301318fe6f04e59811b4ed05eb0bea066152d2f
MD5 6635d713108970822099faf74d80e391
BLAKE2b-256 d62a46d59c040c7639786e0adce251fafd24bec4f7b86b028c7a25b80ae9314c

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1dbdc66d790e6d3e95769ee5bd21c1e539b8933293b3fb8b641ee63c6e3cdd4e
MD5 f5053d7eea3934ac2923f2af86d8223d
BLAKE2b-256 fbbff4a6f4c18f7498e20a0a772f16f08149d768cd8f82524f5d2dd603431880

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 652b96abf2a2b037ea9ba1d2c30b40177598de820a0f439cb0c10c27f7a13614
MD5 9a46f0dd770a52bbc616d88992fb7415
BLAKE2b-256 67d3897425b0106c4e5a011ddc5eb2efaa19566cd3c0e0d8f416531001762372

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 97d7e1bc26537eb2bac9cfb7383bc0d3462141cc701858f098f87d69b1048a85
MD5 ced0a2d277108c7d4e6fcc3abf2f73e1
BLAKE2b-256 77072eb2d580c5656e71e62833f21bcf4cfc8fc87137df65bef023f3aff7130b

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: manzanita-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 237.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for manzanita-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7b8c2ac3576766904e9b12b5b19824c1bd556a97bffac41c83bf282e00a8dd29
MD5 d837611bfe5700494dec3d58e7fcb8b2
BLAKE2b-256 ab2f7eab4a796c47fd2ddcd21c78a262675c3b1f8ada53191b196d1098541dad

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ab2d08fcda125937f1901bf108cba5d8ce3b944ba6402b5e85c28a5790a39de
MD5 4ecf9ff0d8b9f2f0046729eb44b99545
BLAKE2b-256 90f4a7641f94f60ce6899a03dfc373a340100cc806b201d36be1408313965fdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61d998792708bb5b008bf8dd962e35136bc54feb3f861854b73418fa35a49f96
MD5 d908f375f80580b70839c64429172071
BLAKE2b-256 160833ce97178f1ae66633cfa53a1a1b15dcec82116d4e935f7742adfdc80caf

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 066276b676168a61fc68c4f29d2ee06fab518d35c8e53c6c7b65068cdef23c9a
MD5 4b2e5b6c55edf7a80394102331b68e62
BLAKE2b-256 29632268d8f627ce3617dc9691deb23c6e9b41ac33971995b16041ac2c4a6b1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cde9345073a2d438ff1e3848adff77d3f490dbb3d2574684c0c61aca625e9bd4
MD5 747ba894e3d7644c76d01d46794d3d4d
BLAKE2b-256 308a64b765133fa35d9dede89631cf4dd63ec971369a4b8f55d0d117f5a5ee04

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab3396cedcb59c6cb67a3c3b00e4425e44391590d4f42c05758be4b0d9534061
MD5 47af1f0addbb4ad1f8aab03a38f6f156
BLAKE2b-256 2ea6d49db0d7a7dfe382859312cada91f73872e60909572caa4f714d3b332843

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c1fcc716ac96eb2e1cc319fe7832c002a66cde8079a01e8441778bb636eccfd
MD5 01a1fb9afc219fe32f16c026721a4159
BLAKE2b-256 6759479c347ad46e2cf20b8d1596cf11da02a1e3cc7559a38f0a5cbd5215590c

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e56f0a7dd044ab50cb607af3a8d2ae63c6255f2b94ee589c24432f71469b9161
MD5 5bb6bcc8c5aff8e6b23a88d17aae7eaf
BLAKE2b-256 6804313493f68bd77330e2861823d0f3257e2ec3b6bd7a818cc98802bc04d386

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2caf045e5e62c30a5238431c10e7710d3738f87549955ab743c2a5c206698a3
MD5 94de99fd15747d9f4e1fcc631ab135b5
BLAKE2b-256 fe8967188d25fe117fbbfcc0b14467199c618ef8d8d2ab8cea6ee1ca000c1a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

File details

Details for the file manzanita-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for manzanita-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 982c751b9697803372b047bb36500c4011749197b32c5728d34f2078b24ab5a6
MD5 de9e8cae6897777449f1cab6794d3b97
BLAKE2b-256 552d08d4af5de37f444e2e8736ca7f8be05a41ccba7eb19c1d683ebaf9dc453b

See more details on using hashes here.

Provenance

The following attestation bundles were made for manzanita-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pgarrett-scripps/manzanita

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

Supported by

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