Skip to main content

Python bindings for zelll.

Project description

Crates.io PyPI Documentation

Paper Zenodo

Python bindings for zelll

Bindings for zelll with the aim to allow for idiomatic use in Python. The latest release is documented here. Pre-built wheels can be found on PyPI.

Usage

from zelll import CellGrid
import numpy as np

# CellGrid accepts any iterable object and converts its elements if possible.
# Values that can't be interpreted as something like [<float>, <float>, <float>]
# will be silently omitted.
points = np.random.random_sample((10, 3))
cg = CellGrid(points, 0.5)

# rebuild() accepts an optional cutoff parameter
cg.rebuild(points, 1.0)

# CellGrid objects are iterable, so you can use them like any other Iterable in Python:
pairs = list(cg)
pairs = [(p, q) for p, q in cg]
pairs = []
for p, q in cg:
    pairs.append((p, q))

# Note that while CellGrid produces unique ordered index pairs, it visits its cells in arbitrary order.
# So if you want to check whether the index pairs after `rebuild()` changed,
# prefer `set(cg)` over `list(cg)` 

# you can keep a CellGridIter object:
it = iter(cg)
# however, CellGrid can't be mutated while there are iterators of it alive
# i.e. `cg.rebuild(...)` throws a RuntimeError as long as `it` is alive
# either use `del it` or just use iterators implicitly/in local scopes
# (see above for examples)
# Additionally, CellGridIter is not thread-safe 
# but CellGrid is and can be sent between threads instead.

# The index pairs produced by CellGridIter also contain pairs
# with distance > cutoff.
# Here's an example dropping pairs with distance > cutoff.
# Note that there are faster ways to compute the (squared) euclidean distance.
pairs = [((i, p), (j, q)) for (i, p), (j, q) in cg 
    if np.linalg.norm(np.array(p) - np.array(q)) <= 0.5]

Case Study

examples/psssh.py illustrates how the bindings can be used for prototyping purposes by replicating the core design implemented in surface-sampling/:

maturin develop --release
uv venv examples/.venv
source examples/.venv/bin/activate
uv pip install -r examples/requirements.txt
# download some protein structures to test
# e.g. from here:
# https://dockground.compbio.ku.edu/unbound/unbound-docking-benchmarks.php
python psssh.py <PDB> -o psssh.pdb
# you can visualize the output file using e.g. PyMol

Building

The following steps assume a working Rust toolchain.

  1. clone this repository and cd ./zelll/python/
  2. install maturin
  3. create and activate a virtual environment, eg. python3 -m venv .venv && source .venv/bin/activate
  4. (optionally install numpy in your environment for testing purposes)
  5. run maturin develop --release to build and install an optimized .whl into the current virtual environment

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

zelll-0.4.0.tar.gz (54.5 kB view details)

Uploaded Source

Built Distributions

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

zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (493.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (536.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (576.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (457.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (310.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (306.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (320.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

zelll-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (490.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

zelll-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl (534.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

zelll-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl (575.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

zelll-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (453.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zelll-0.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (311.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

zelll-0.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (308.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

zelll-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (305.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

zelll-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

zelll-0.4.0-cp314-cp314-win_amd64.whl (159.6 kB view details)

Uploaded CPython 3.14Windows x86-64

zelll-0.4.0-cp314-cp314-win32.whl (167.9 kB view details)

Uploaded CPython 3.14Windows x86

zelll-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (492.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

zelll-0.4.0-cp314-cp314-musllinux_1_2_i686.whl (534.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

zelll-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl (577.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

zelll-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (455.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zelll-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (280.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

zelll-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

zelll-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (309.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

zelll-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (306.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

zelll-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

zelll-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (318.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

zelll-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (255.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zelll-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl (265.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

zelll-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (491.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

zelll-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl (533.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

zelll-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl (576.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

zelll-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (454.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

zelll-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

zelll-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (308.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

zelll-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (305.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

zelll-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

zelll-0.4.0-cp313-cp313-win_amd64.whl (161.0 kB view details)

Uploaded CPython 3.13Windows x86-64

zelll-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (493.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zelll-0.4.0-cp313-cp313-musllinux_1_2_i686.whl (535.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

zelll-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (578.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

zelll-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (456.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zelll-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

zelll-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

zelll-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (310.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

zelll-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

zelll-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zelll-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (318.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

zelll-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (256.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zelll-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (266.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

zelll-0.4.0-cp312-cp312-win_amd64.whl (160.6 kB view details)

Uploaded CPython 3.12Windows x86-64

zelll-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zelll-0.4.0-cp312-cp312-musllinux_1_2_i686.whl (535.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

zelll-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (578.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

zelll-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (456.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zelll-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

zelll-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

zelll-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (309.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

zelll-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

zelll-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zelll-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (318.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

zelll-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (256.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zelll-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (266.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

zelll-0.4.0-cp311-cp311-win_amd64.whl (162.9 kB view details)

Uploaded CPython 3.11Windows x86-64

zelll-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (493.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zelll-0.4.0-cp311-cp311-musllinux_1_2_i686.whl (535.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

zelll-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (577.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

zelll-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (456.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zelll-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

zelll-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

zelll-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (310.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

zelll-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

zelll-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zelll-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (318.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

zelll-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (256.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zelll-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (266.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

zelll-0.4.0-cp310-cp310-win_amd64.whl (163.3 kB view details)

Uploaded CPython 3.10Windows x86-64

zelll-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (493.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zelll-0.4.0-cp310-cp310-musllinux_1_2_i686.whl (536.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

zelll-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl (578.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

zelll-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (456.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zelll-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

zelll-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

zelll-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (310.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

zelll-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

zelll-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zelll-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (319.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

zelll-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (495.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

zelll-0.4.0-cp39-cp39-musllinux_1_2_i686.whl (538.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

zelll-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl (580.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

zelll-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (458.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

zelll-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

zelll-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

zelll-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (313.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

zelll-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

zelll-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

zelll-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (322.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

zelll-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl (496.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

zelll-0.4.0-cp38-cp38-musllinux_1_2_i686.whl (539.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

zelll-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl (580.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

zelll-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl (458.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

zelll-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

zelll-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (317.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

zelll-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (314.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

zelll-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

zelll-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

zelll-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (322.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file zelll-0.4.0.tar.gz.

File metadata

  • Download URL: zelll-0.4.0.tar.gz
  • Upload date:
  • Size: 54.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for zelll-0.4.0.tar.gz
Algorithm Hash digest
SHA256 cef0dca4fd9038d80d39f95050f2be6931f2238069bc6dbe7d0c04f3f4639aee
MD5 5d234d26ee3adcc173a0a03e55622472
BLAKE2b-256 a81f25e1451a54f0b4cd012666e768b23ecfe9b16edd1100f6877e1c0ca57158

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0486e0f1af944f97f166b3fdb293814b25afef9b3e941642410b559a8fbc2efe
MD5 bcaff5f6c1749ca511df19a409e86bd6
BLAKE2b-256 744cec09a336eb20b50b930e5364302d708f5f9edf9ad7de978da4d6dace2172

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8309d283819694f72aaff202e771e26671d7a507648046f4eec35ccaa31df995
MD5 a8ed402e0437a22234c3f8550072d156
BLAKE2b-256 b7f70d8b0da2dda1e5edb7f75c8caf3c78c3e45fc624d6f84388b10830962a2a

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7c5d2af6320e29879eb333a8f647f9168486b0b780cac702deec48cd3bc67f6
MD5 c73981c50544faeaeaaaaef60a8e8dce
BLAKE2b-256 e111aa68b805cade392ffe646aa107f84f35888908119a2bb1de8e7009e3fb9d

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90ab189bf419b87fa4a8a11a9bcc726d2c1c99c9cf422d4d2384b7d4f6415329
MD5 090b741901b5a678f7347981dfbe3767
BLAKE2b-256 a48c06acb0f4e0b10396a544e9948cfe34f374eb33e7bd24ba44cf16d652cb73

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f04b23e92755c19dccd7ef64096c56ddd246a78a194a665b9fb5489cb35a3e5
MD5 a199fa8e514251a5060f4897dfceeb8c
BLAKE2b-256 1a95ed955b1ceda371d5d73ea3815497f81fd23c8ebecc619705693c7fff8620

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 745b911f4b17136f2da970e17a0adc13b2be3247eaab3a1ea6a7d63f42539579
MD5 c0d71968d4c8dbeefe4ed81a9a0ff0d6
BLAKE2b-256 3ea504920ce8e8b64f006f266910b70909abdb7c30615d249c43f72043957f12

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e068a9580e11055b5c68765f55a0e9cdad0a466b071032e4911089fff03d94f
MD5 fe2551a507d3c5fef48c39a7cee24a23
BLAKE2b-256 79d2eff0e52062808cd61d6c4d404893f100e5088b1e704ca8eaa8d915880297

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4a5267d36f36b4b3543e752c213ed96119fb819d7b3410242ead1a3d46a1e797
MD5 a461cbd2fbdde544f900bf7d64a21162
BLAKE2b-256 20dea2877d9aa16f4a40a9fba05b91394dde449e2b8252a78e10f21f2ce4f327

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df6aa4ca6599280e188ef70f0541ab7142d4371ab1dab83224782c251fb5f18e
MD5 51cc658bb975bc0dba37c83867afa6f4
BLAKE2b-256 91f2ac7d1e3f6fcc0c86bcec97b5d0875feb860ed1bfc3157af85f1a45acae12

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 db44fe3dd94e3e7bd5040412fd081f1b6e315da59c510257f1675bd8d8780c31
MD5 8e88c6d00ae5452a8f8aab39634fdc96
BLAKE2b-256 50336a075ee15b6502cbda636638df94f0b77fbb1e5aca0dfc98b68b73db329c

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4519e5c335f589f5b6c1c38e23127ddee0b86fe170873153080267bf4ae27fe6
MD5 527cdd923663dfee4e7c2e151754e08b
BLAKE2b-256 0a528c746ead5f1811a361383557cce27a00b12f3c008a9279a53fa6d07fe00a

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de3f730c76094b9a0f40c748ec3a9d19e5f4d5ab750aeb081d18c66473b0936e
MD5 794787b7940f4f699f0c78cca78e3406
BLAKE2b-256 525b04f74d3fc79d62a671c968c9bb2bc054ebf2b726edf038315ed9bb621103

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dca79b1daa37c278369747e8669196d40cc99a73cc3e2c1977754ff559e40f0a
MD5 57fe124d3c144ec65c24065876d89778
BLAKE2b-256 9210841b9af25e35934147a7733d68d5ec548fd0fdf86a80661d961025b12209

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec301148d22794af2b8abebdb0b63038acb513f23547addb852241b2ae721c3a
MD5 ed6182de8a17da23c9f0ba9ae768b8e3
BLAKE2b-256 b93dacf84818967fcd9870c699192c3c271529b041d5bf77b14318529cc0ecda

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3472df6a5ab2b1b999357e5bc0adb80a0e00cfdd7b50087f85f9f6636dd357a7
MD5 554cada3f2cd694af053431b51e61d0c
BLAKE2b-256 f927534e455697bc44d442cb7b2dc4a838298fd9c62da3c56eaa7aea7e783b0e

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96601c0539656061ba73a1ffa66312fdd30bba18e400ac97951f7878102dae42
MD5 f624b07fb49fdd9cb3730c5ae4f563db
BLAKE2b-256 f40af255bb7e5023dda4a472b286a6c3d2e67b7081770263e9f5f9e6b76964e6

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7725143dbac854f4a380d1f03f0834ebe4545dca9a980730390adb4e1d750ade
MD5 9974e86c282bdd887135ccc3d1d8bc5a
BLAKE2b-256 33a144fb03964ef77ac25e83e00e36014cd4c315562e639d03152cf1d989114f

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c673c2a9d6e18069cd536cbbd85d639ff9477e8817eff9c409b5803d6026b930
MD5 c0c95df856c190090877088cf985906a
BLAKE2b-256 69c33cbfbbb4c504a74dbc5aad155c26a055dc4ecdbc302e72c767ba3b3b422a

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zelll-0.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 159.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for zelll-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0ee7d1c6654362bd38b23717f756ffb600fb9a7ca61ce32152e4316f3ae0d4c5
MD5 3db941d93ced459d5e5c35294087bba7
BLAKE2b-256 504f5b985879309a13117e717ef491371bc7f3010344a15114fd4b1780dad260

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: zelll-0.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 167.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for zelll-0.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3f415ea6bc6049db90427dfbda53e850dfc29fc0cb6a6225cd3f9230d87070de
MD5 753f0efc2fae28bb68cd922cd5bd279a
BLAKE2b-256 b65692cc9f963d64246852a170398542aeb48677f53ab2d71d9c68d693bf4cee

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e9752012c930d6b32c509e27f3a7469cb0a4df1a050e6c96c42e9dde55fa165
MD5 b8e5e3c585409372951ae881c2e4e9ad
BLAKE2b-256 f1ae029aa511351c512867a8b74b5924f248ee0323e5a0d98575b95a1df78a48

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c41d27852f51b26ad41d4c01216af27799731bfb0541cb672bf8ad8bebf05da5
MD5 63b87367c89933b20ec55df4323459e5
BLAKE2b-256 89abd11c4e71aa365fe9cfec57d5aeed0bca51081f9c7aba630aa0f45a7cee11

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8545faaacae69c5cbc80679185f441558f22b9afdebf9339f4934217668bd3df
MD5 4eb54ccb5f7b4ce5ffaf7d4fce9b4dd6
BLAKE2b-256 13669952772191793bf1be74d3418260c4c4679145d5beda0c11fc1a066035aa

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad9044d7089f7d519748516fd00c67f2530bd933a19e88a67f9502f51f2b1822
MD5 afbd9c358dfaf97f2f27b8c146cf897f
BLAKE2b-256 93d53eada242b928f1b36a3abd3741a76fb9cf7e38876346e50b3516a6af47c4

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa8eeea1b74b1df856420d5ad5103a5a0a649dd9aa0d16f1ab5ad1652dae54ce
MD5 405f99afc78910eea2472e2f1a31953b
BLAKE2b-256 f73d2b84707a83095ccddce58e695ce68eb80f48136ea9f8e71f266e543d9466

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50988bb9f9751bd0b70e0dd1e4daa241c31226f8973f69045ee9c04b5b656beb
MD5 aefb207c08a34a9daefcedf559686744
BLAKE2b-256 b3bd59d419b2a0fa60150201383985d0bb11661354c9c40c2a67effccdb5d565

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4739d890a12d1790fa6f8957ce610255db982926565c47d2970cc168cc42d3ab
MD5 3dbf707f97cbd6588264f42e2cd93b8a
BLAKE2b-256 aff1cee8f369c5d7d4f3e76170ce77dd707bcbd6f87d745da3b46f5fce74aaf0

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0b4da8c27edfdcab43cd01f680e0027a5e9315940870902e6bdb0ec29ea4fd9
MD5 ccec029129850e4b9d25f466c9d6beae
BLAKE2b-256 e94bfaf8cb4948cd1a8b456eb1e3e73ba45daa9ee33de7d839e0b288e61613da

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea8cd35d860695f7b64cb2fb638891a6da33d4071eea385b939fe49db0dc029c
MD5 b33977aeb0cc5bfe2c8791279fc50662
BLAKE2b-256 7d35f8b147969a4562ca5b79faeef56a2ef530efc6bb567edc53b6cb011eba2b

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e99d9c8b335f0a38cffa10b7f7cc8614db463e3d76adb3d1a03171e3ee3bcdeb
MD5 37c88acee8bb49326a79c86d422aa447
BLAKE2b-256 c2320f3ef71bfec2d64c9049c4218c4f4988916b45e46def1891058f549ae179

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 534e2e654dbf54cc820793323a4da320d672c0f694aa9e51dc1824766e6647e7
MD5 280527938a88caf17208803ba4f505d5
BLAKE2b-256 ca8df707b02f13c89eb76de86b5e1c336e2f171987df52a123f0b0662fd98223

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b45a1b48a734f56c7021dc781ccea03354b3c37b05364097553ce558613285a0
MD5 79029649afabcc9cec1926c36571962f
BLAKE2b-256 d07e911793de41eac768f4a4eeb4f68a6872fa1307c3529bc68c3521b6754e19

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 799486ba2ee49767d5824659f038e81048848c2f3d95ebd774e6f22a70950761
MD5 ec3960ecf8e4926e7f739d2a25d64d8e
BLAKE2b-256 d3655ca418bcafc1dc03f7adc48b88bfbc04dbdd7e06b9eeb2449e0bdd6a03f4

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd0aeaa9ba592eeb3c402693e662348ff4ba427bcd5e109c7c6c3efde793fa27
MD5 ebad6a4fbbe978c61050641278410742
BLAKE2b-256 41088d886029e401e6e974fddfafeba27d0dde99f99aab8f0e78fde5a0f30cdb

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9c808ddf4047229d23de8cfb355425e982c77e70af20baaa709415856b1936d6
MD5 89099ae46d8ed35af733624a7efccbc5
BLAKE2b-256 2f910cd99f5a71dc340a40b4141781d8d3aa64a47433999bf5ef00f269d0b4bb

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd58154b789e8feb7c9947f06f2e2998ffbf2b73b0551cea5248cc8ce1f1e940
MD5 f988fa9a6637c175bd27f0aca3aa6496
BLAKE2b-256 d69e096f1076ca6a3ed2ac22717195851d2b2ddc15e746b125e0e2471b106dd8

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83a4a1c45e53d562bdd868dd89b8d75f29bcae96aacf3894743d4c1d4f97ac9d
MD5 de4c8130a6464381dfd3b18f49debbef
BLAKE2b-256 8cc0525049adf1a7361f77b7b49fb331ac3f30a44c678bb18b0e7157c42ffec6

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a715d6ae8f959b5a58b2520f221d0e17afa6fde2086dfa0c56caa45f87dc705
MD5 1665f5c6a30793c3a114f1b0ee3c46d2
BLAKE2b-256 3c55db7f98be3934e9f0b6a1ce2de482337a8c679aac9e2b64b7d59e05a522f9

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfc72070d849e919b61d83b0c28f0c16842208ffd2c4443854590f9b6721ba57
MD5 b5781b1bff8c6a3ecf5ee9e3e32d1d2c
BLAKE2b-256 bc676a593c26237e13cc5c928b989f242dd8b7c6cbb1e569d35c0a8d0387c40b

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8541ae78246f0a24c0565b6e0a485e2038c6de18a1ad9ae0eb68bd647c76a20a
MD5 56b4a70d3612df762e285de0ebb03ee0
BLAKE2b-256 51cdc5dc992310dd107af00542c1270bd8ad1f1f22ace77f966ad9edd4221e77

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zelll-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 161.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for zelll-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 182963840666f686424f014fda88df09f3921439c13102419ece77bffaafb878
MD5 7dca65d840aa4553a61701774439dfab
BLAKE2b-256 c5bb31d677df623de142481a2371e69d64360bd406b95ff4a25a3664a6e2f90a

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb67cb187707d1e81210a0637c56e94b71ec9a9392744bc8772bbe21becc02d0
MD5 1a24715cba59c420772632d8a37f3adf
BLAKE2b-256 a5cb4a159890e3037890ead7ad05b6d25f9bccead61cab1c010341001b06f224

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 998d7099399ce06d7b158db728f25acf6e2f64375af6d72b43a787d37c6509e4
MD5 5e8683fa7ecd888a0da43f03a8c1b50a
BLAKE2b-256 006bd2183c33b181714b2f0197bda03d32d74eac66e6448b1cc99cb99aebaf09

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef2afddd0c4a6aea8915daa4f6aa72bdb0ef5cc9ae4c26b82422eaaf00cb63ea
MD5 2b5c9e95b8562adce9306f8bd7f06f9a
BLAKE2b-256 b57ce5c828200dc6fbe6006d107f5f3d550ed3183a5d09aa4f57aa1554096999

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f16d8ed348599252549f2b851ec92f33601b98ee05c8bc70bb59295e874a2b9
MD5 01d79756656b86885e4f5eb0cfbc0fcc
BLAKE2b-256 156f9e361e558e5b89f427a38d53ed75f61e390e2040eea66aa063fc52bd5781

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e872ee5af4fd60d3273f53fd84b7e3b9c92499e42688daf6901f1bcb960a043
MD5 ec5991a9439fff45f1220a1effa4ff69
BLAKE2b-256 e6f8b575f16bf77f18eb06ab48f792586343e5e7d703d350c87f1cd73262732d

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1d8ba0c606b58f8e9d76bc1df0a627d2a663de032cf9c886c1bc92554943224
MD5 a341113973b7d810e14b4f5b5903f4d8
BLAKE2b-256 e0d9865f50f2d6842dcb9ca3bb5112408b327f78dde036a032dd61ef9b7098e9

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ec868ceab9aea20fed84a0ba7530dae88b232bf70a8d0215b30e9b5e51efa50
MD5 220cca853075f4befa49c9ad6359def9
BLAKE2b-256 d5400bd3b6dd2ee8ea7f2658447ccbb675e6aef7f7420a9ba07f8a49a05f6cbd

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 076f7bbd285920bcaee0e23f66c947fc5940bf0da983af6f17aaf8a23facbe15
MD5 d1eedfebe996889355fc6dc45a323a34
BLAKE2b-256 69530b3350107f1f2fdb1cbc2a92f3ac5d4496e5de1f27ce8657d9b6663b2602

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 285961fe1e0be3de9ad9811109a6956f57dee3959a374bec63de8aa399841f13
MD5 dbf5de303d8ecf46481ec0cf6039de53
BLAKE2b-256 12a2d6c776e171e7f7fa64ed735698c3c65a5de7bcef9baa2ce6eed2c6999fd9

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de57ed72c0bdd315355c8bb239f027ff9a246e8a98825fef0fc15ea9eb076ade
MD5 00523d8d6a63361ce5ba3d9a348d8375
BLAKE2b-256 af57082216cdaa5bfc81d4034410314db31cda8d164c8bf1be1d7df782349a3f

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22471d898938e3992233fba0fc28ff196133fa951ac179ccbde23820182f9e9b
MD5 60584ff500227edf5973711343b44a3d
BLAKE2b-256 1ae962f8a40b2b364d22cea85135e2bd680e757fda8780d8212fe4e70a265b5c

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2df0ab3f743ba807556fd1bb9b9f146765cfc6c1940b1685f4c83436cbe0757b
MD5 b5dad53f4285fd327e346b4a5b474020
BLAKE2b-256 af222e807062a6be27f5ae4c049fc2d75e3fe278b314a11e357cf56d08c5d422

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zelll-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 160.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for zelll-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 142e71172878cb8fc0c447f170d2afc47f9c06546b021a4a484a0b1593f980e4
MD5 e4f706db81a421d2eb35b80052a9cbc2
BLAKE2b-256 884640b4f54046c6623cc3a139b8689c643df50039321a5fb6c3dc19b5df87f2

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a05314733bd0210553900b73c0d77b0aa44053bdf1cf2f98cdfd277d4388faae
MD5 f16ab221eac09fc2cf4b81e53dde612f
BLAKE2b-256 7a37102776d64b6fa8114cb1b4b0a847315eb5b4d8ec074edafb1d987d31feab

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f12ecc53f679ddc1e07c7e2e82eaff18db444b93d4087231a6184ffaa2d56a83
MD5 f5c798d9e7959a76752161d2c7711cd7
BLAKE2b-256 2ddabf9063bc73d9c467509dc96370a9b67feb4c7ef1c989ef2ab887771a22a6

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 43a7d25ac761af30e57f9f4259aad17b39ef80c929547a5c5b4e34090be10d5d
MD5 09f2dac80db29b5448e76d0f96a9c0cb
BLAKE2b-256 60951d15185942fb66562e2492ca6afd242e1757edc9d4622319442d405a9b46

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1f91be6d3c70e6f836ddf02a4afbd11b7e9248a8ccc3c2b148cb5637c6d46b6
MD5 1bec9639face20ad089a2f144c637aec
BLAKE2b-256 7632e97b92398b5a2978c817034f817d1965711d44c5f5c5dce8813870c34771

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe6ab91edfa0db3120a0890a77339cda276d9cf0995214b994337ce86fa421c1
MD5 ec62fcb41885c537a3050fef82eea321
BLAKE2b-256 e795673cd2d0d4b17337221fee261c8acb112a8b011829c66d5956b1bf6fa045

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1adc2f44cbbdc29bcd2b6b8d032bc2ac65ddbd1dda46c7694d94e79f2626a39
MD5 b1e563721e514d090f59b5583625949e
BLAKE2b-256 e64ed4af3dc59ad191751b08f2458b88aa0cee45db77f22e05ce332ec0875ab4

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9de0bc40be4d4b4ecce52d04a7370b3719f203bf76e3d75ec7467aff5f637106
MD5 8e6d6cd7a52360661661d064c7b03989
BLAKE2b-256 d2e5dfadbee0390b51e02723d819ed47adc12f74d014f9d574cfba0e37434271

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 937ee58800975a9934a43d43c59ed099772c25b45d1ae39693542d0670ddd99c
MD5 e7cda282aed6dc75912ec663a919b051
BLAKE2b-256 7d11774684346af2876576ce46a7c2670567dab3a1ea01dd4191319cb94274c4

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2b6ce9eb966f75bb0e7348abf2eb69b92298adc952c9bf7381517c82dbb5f5f
MD5 be582f5d8b2b0769e17d50884d16fedf
BLAKE2b-256 830bd64b27735d5d785c53fa74788682eca7a138aa1358d848003beaee99c072

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17648a8b2164b8776589349fd82121d73e5916e469d8c4fa7f77df298e078c52
MD5 c979a37681f13e77a802f0231a53831f
BLAKE2b-256 25965bb0ade420e7df10e797869175a95b646e10ee3ef751a56605c5721a957a

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc67a4c2f0b9b4f765a900efcc01e0debfb88d7629ec32145229112309d81ada
MD5 4a7c12e6666dfe516104affebaf74ce4
BLAKE2b-256 a4908192492e6706c464641874ac19504ee3c3b595c3e73abf945aa6971470a9

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 97e65ce8927e4f3eb4ea2476b791c6659c5d92bca62017e96265b07dd008d74a
MD5 1aba4376cb6173ef0c895be9fbe26095
BLAKE2b-256 918fb29dab3c3f6169b5de1dba413e0d6b288d6d54ac3adea4fd17a0277d1210

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zelll-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 162.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for zelll-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dfd5ec9034d0e69c4410874a3db41e9501599b3b9737a274c49a292e2806d86e
MD5 df388369bbce397120fa2af40965abfa
BLAKE2b-256 86d5dd6221f43166e1945fdbf9eae130f02bcec0da7c5adfe97702bde6dca8a2

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9dc68aa9b4b5917829257b9efa9c83d3f9c5f4adde5794ddff32960c936d357
MD5 29ecb113e1e235d32512d3a37e0990d1
BLAKE2b-256 43aebc4a4904733a2b23dd72429b5c50244603d2c626fb393d136e2b0d68c71c

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8dabbd289cdf6b4118de3582db3c43d917a4c301b74966d9476f7424b7807ef5
MD5 7cddc273a1ad0ab3053dac3a36334414
BLAKE2b-256 8ff17adcf7e86d28a35765fb90bb354dca2dd3cdd324abc4ed71beda03561138

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 686de3f0434ed5dd76898ead3302cc80726f4d6f012ac03b5d1f6ff4267c29f9
MD5 4233ccc10ae699bc24df5f6498929ffa
BLAKE2b-256 e620b5d0f3a60bc98bdc85e55d109d5d860e208d45b4d198740f8112d4295530

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60677a465fcdbdefdecc1354de165c90a329dbf7dca88db33cae46206897c217
MD5 48518037fccea080737585cfac2eabe7
BLAKE2b-256 82a97af779df1fadd96f5c293a1ee7ae2f95eaa434d68740ff5ea17eee2bfe61

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34291b522deb1edab216f1c018727c35be3f2572038636765eda9e066d752400
MD5 c55bc3151d2bd2eee8e364a793994a7d
BLAKE2b-256 be78cde3076ba08d99f78dc0150bb5083594668f68d3dd19144ff97506ec5c5b

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 826a8bbd6799962f5e3101a46e8ab7234526003ee5fd1b0b661d39b1f16ddaf6
MD5 cd3f6a4fcd2b99d9739175ce6c508904
BLAKE2b-256 1e67be2fd28269057a12b0b471eee21670b0dfbbba77defc5e779e185ce0cea0

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6554d12897e75127fb5845c9121fbcfa5daad94a7a3fdbdc5a8d672e2be5192f
MD5 0cddbaa8f6639ff7af3cdc61829ff1fe
BLAKE2b-256 a3d665ddd8a588f4d983fe3040ba7cc7730addf984d16f79a685f5c29bed9027

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cd3926ed8aea6c200a9bdc4aea44d952e0ba469983b7b4db23cdb6cba41562d5
MD5 8a4537d05a4aa7298a972e2ea2d21445
BLAKE2b-256 6488d5b24bd8abeec5bbe051a0a698d5ab2b60a980b3a271074c6d7497e96d33

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 243128ca91d799af19e0948ff75b24f058b305f8cfcf9c65bb2a99cdd3e78b25
MD5 1fa4a2d5d7abf320349dd472adfb9083
BLAKE2b-256 c17ce6908194409ab7e14ea11b9dddff2305c9121f427015f53313371ffcbb7f

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fa2a09eb512af2c19269386b392d7d6d5ab0beb278ba5b05ab2be151388ef7ad
MD5 ae277ca0be6d828bb841107e70775b20
BLAKE2b-256 8ecf2eacad20666481f08e474f5483c0d158f26a88b8bf679124ad61d7482c52

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7b64202da521096dd2d0873298c33d045aa365cc9ddef06f352e54ebff097c8
MD5 8451a8a195958a4d3eea3e2b420ed7c6
BLAKE2b-256 4f5913a13f5fb216f6c949d9dca6551b6f04c04e3dd8af1122d3d51710b03ee0

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2a11575cd594e6ad098d02f38fa89f0d40e12d615e41be4e04dc1e766d418476
MD5 5625eb84fa3cd58a459a65ff88aa489a
BLAKE2b-256 52a8d6b0a439eda53e00116c5aa46c03168766b37c1e340d078510edaffd7470

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zelll-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 163.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for zelll-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1741d6ea8bcb72b67ec2e2d9df1855e6f9cc5ee4223f5c90ecf928710c8d6db0
MD5 73461096e017fced64efe68dc99273f8
BLAKE2b-256 03fc65720c0d21f8f27b96a31ea8b0a487eb18fd2f9d6d2709f5ed755c61ecef

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16eed379412ddbb3933c9282e0d95b37fd7d193c0c09bcd10f92381a63ebcbea
MD5 b314fae96e5a4e4e5d4688541200c215
BLAKE2b-256 df54413e80d21499b8e24f6e2c28856fa4e9720401a0b4e34e03915ea8610e0d

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e34b31eca43dd31fc49bfbe2eca52aa6acb534259051302daed72071a08780ba
MD5 409f22dd05be018bb1c13f7b5331c4a5
BLAKE2b-256 ecebea304fd0a29a18f5f72aa6023b4d57d3f3a056a73740bdc6eb404992c9d1

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bbc620c90d4b951d7e7b7b0e7eddf0e48188e14f5332f82646183aaacd56da83
MD5 eada25532903319e6e0f4af2e71d6205
BLAKE2b-256 815d7c671f9c274dbde8a244fcb4f47b86ef60818420e4f58ee38125096afe55

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c10e2952e6cc05e56bca8e77b564b6c5081cba28cd5a76194480a95092c9bf0
MD5 408e694f1832787768601830c3822757
BLAKE2b-256 c5f0b04560db3150f20db9c6e419a056df5abc250ee3e90e887f10ad03df28e6

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 258aa9a43df51857d9de1b4f029476594f0b7a2dc31470c939badbb11334fe55
MD5 a18a7c071af9b1cddfd8452ec39da9d2
BLAKE2b-256 65bf7062283b9c3cd7bb0a14aa233321fe0a3cb09e5cf5d347ea96faa625b379

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 805c70095d6778169c4c49815339609d045abb74d3f951f39f95d2af2a474850
MD5 358cdb9a8b6018e7a5c19c52b7b96c90
BLAKE2b-256 a4833e5b661046d0579ee74ffc0e6255f2f089832fde88561924d901438df0ac

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 775e2cd4893dbf84965f16a0b247a49eacd3330d909cfdbc0c3b3fa6f32ccc7d
MD5 33698f7e92e824988c51ea23acb9083f
BLAKE2b-256 7c4b6e244d6bfab727c826fbc9eedfd9fc76bbcf14e1d5544fd783be01ee1f6e

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9469391c519b80a37bbc5923cf8b0941ba8e541c5f8a5fb09850d4c26c14447
MD5 aee82eeb127f9cdef78ec9463a8d14d2
BLAKE2b-256 9dca8a4921c9f5adf75ebf647d96b2b39fdbdc396910120172350ebdd67aae2f

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 291f528d3ec0fd19cae3dfbfdfdf9e644572377661133721469d31477434c1f3
MD5 1b56132095d121ca873d7a50fe2bac92
BLAKE2b-256 f9b08590e57540b5774ca93dd02b19758108d12af8989c3cc38c2aaa1c09949c

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 359ea871cdc4fe547e2e458dad71cc31ae8a8cdec9d79e763ae67b25864e0a37
MD5 b419f2bb2d29a0caad6c76f86a760ec3
BLAKE2b-256 6ee93a09ff15d09c38331299ab5977c2f69dcf889aead9dc1399c6d1ab39fe08

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89e7aaaca6792a45ecb8366b6a4b1dfaf0d16d3ca11e7b83f892d77380f3dbc9
MD5 7963f9280a3ede69d128628bcf469453
BLAKE2b-256 39155a8505159735f3af2704cfcbcd0b431d5760e02dbc7774b173da5bdd8fdf

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4fe9431f607faef9c84f6c6939f880e2095c282e5727a3d16826bcf8c4e9af3a
MD5 dc7e9053cbf7d4dc00fa1349e7560bc5
BLAKE2b-256 9465636602836096485bb2a652e6e9fbf73bc8f89842035a81e5203262fb1b92

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a3b1943733cdc444cc3e9225c9b68920bf12b3d1b613b16545a06034ce041ad
MD5 d6934c2bb2f4c1cb1061124eb294bfb0
BLAKE2b-256 6db37920353df2170fd6d1b0754c5b10c04138ac5ec8ca134c39f8e4df0f9ae8

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62f8140fe21f918b1b191a27a464d163b9588e40146a5efe4e4c9b1641c61a06
MD5 098d81e6b837d33715b5c59daad52a64
BLAKE2b-256 49a26ca63a36b3e47408b637b5800c74b009e29a1414c5326e27ba8eef68060f

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62d81f6cfe2076088db4abd89c9d002f699154a4e237ad9dac7c3032f23e90c7
MD5 fc345ed2f528f05f7aaa311292286702
BLAKE2b-256 9105da278af6b667a6d92e6c8c680cbb24fcf93759ca77dbe2f2fd9365ee7511

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16e7ef3e49000c7822290854577a4b154fd43fa1a630c3299f43d9a8489ef146
MD5 9a57e0de970b020b132f3b3be2011a99
BLAKE2b-256 2fb252eae04c397467ecc5b16ee374b4aae62c951abafc93a275b492cd9aa358

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e33a8c49a05aca86e13c8cd70ddee880ec91a90641e36b3757f27e621dea79d
MD5 6b710f46713e429b588fbbe6cfef37c9
BLAKE2b-256 d3894fa92360149b97138e5439f60aa166b22741ed2e207f0803534fdf4fcce0

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 13f8e295b344726170a3b5775fa3819583500ae99d33823f828cf4540ee48e78
MD5 1e883ec62165f4aff577e1f502ba0197
BLAKE2b-256 36cf0289b89095675aab76c690396084dbfdd2c7f79e67439c83b05833447416

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47619b7bd3ec8ff6cb1e781c81e92616cacbaf4bb51908eebeb424425733546b
MD5 c036878a417ea8ea1cbfbcfaafcadc10
BLAKE2b-256 93b38ecb4a8d2735d8ca266034444891ddf289eafae9edb8f447d38fb17d6e54

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2430a484fe25d4b845b10f33a7d682186be8fbe2946eb86dc1d9fe23ab1b82b8
MD5 2b546f540a91f8a982aed544076163c3
BLAKE2b-256 2218e199c98a611bc038268f9b4cae7cfb391d7bbac1bc2dee46e8b5723318c1

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53549eaedb89173a2fbb97625ea0fc413d44c3a07351b3586bcd1beb4328d718
MD5 aa798a467c108243bdc35bf6a41b43e5
BLAKE2b-256 50f7320ba45041bcd0136df59069593c268c9e8968a3fc513d110980471ac42f

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7149a2f87f7527abad8a3c0680c6a6fea6fd9e8a216214b0b38fdd8cd8dd8552
MD5 6eb952d55b46ddf6e5b3980ab1e4135e
BLAKE2b-256 681dba6833d6e388b7dab7a81ddcce1c4caa58ceeab87e90c9204e928d644be2

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7331090588aea91ec5fb8af274ebcc28013cda007a99f9cc6f98d2df5dad52a
MD5 e2d7122d1433a9f4c9feead13d622d11
BLAKE2b-256 27a30cdc7f4e0883c46c8f261f876aae56f130e7a4d0e50b08a28011be4854ea

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d95b0dfd3932daa755cf0880d2394d27c9a3b54838ce7189d14d1c795b97297
MD5 86d1c13c535b0ee13a680103dca0b65d
BLAKE2b-256 0121a8d3d4aae13ade7062a23ea54967759078cb21b1f47829a52b953eaf57a4

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79146b645d9cecaeb2552c0d1717c738d04e59becb6b5b5683f0620f1a56c852
MD5 cc13de69f46f9d83201935bc47c4634e
BLAKE2b-256 804c41bf38bc7a18890ab5e243875cf244d28e059a2a46da70cb9528cb074d2e

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b11c8f7b97765e840d1cab8afb9613eb445fdd6cc89484a3e9a88491b1712950
MD5 aaec02cf83001e0ed4a97ce4a2df0d80
BLAKE2b-256 b341862f67d1cecd02972446d579e4fce4bfae2dbf8e2ae5a85aeff3afc8b6ad

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 797d21971ab1400d88a787f5321bb3c28a35ed30b967ff5fb5146a40a00a443d
MD5 5dc6d3fd92386a1c24e05da6630bb374
BLAKE2b-256 92a1f44ceab8fd4380ee83134406a47bc2998aa2fa07cf0032ae7758e9600427

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 87a0af53090140109e8fac5b25a075f688838c8dc63c5e4c6cbda15da07ad889
MD5 ebe113af8e3d70b0dbb53faa6a55a702
BLAKE2b-256 2f61ae13852862c05c809fcdf16494f804fcb2bb28111f434c2690916ec50922

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64988cd3c02d8aa1e5d50debfd888339decba559704013e494f4e586c8258922
MD5 e142d9e3cf17bc6bf2a4a4af417f896f
BLAKE2b-256 c16ff886d50e5af36d2cc213529bb7de279c88ea8266b08a591d6271e9f9a2b9

See more details on using hashes here.

File details

Details for the file zelll-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zelll-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0ef1b6bf5e124a3c5a757fab6592406b64e485a46f0aca2bfdf755cdc721edb3
MD5 c18cb43dde0ad6fc92f3b9bd722faa04
BLAKE2b-256 6efb9e8c22b951d66353ad32b93eb595ab0b8af528488776f51af256f2e050e6

See more details on using hashes here.

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