Python bindings for zelll.
Project description
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.
- clone this repository and
cd ./zelll/python/ - install
maturin - create and activate a virtual environment, eg.
python3 -m venv .venv && source .venv/bin/activate - (optionally install
numpyin your environment for testing purposes) - run
maturin develop --releaseto build and install an optimized.whlinto the current virtual environment
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zelll-0.3.0.tar.gz.
File metadata
- Download URL: zelll-0.3.0.tar.gz
- Upload date:
- Size: 51.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0c6cce141acab53c9a7f9e0c7ba53b5edc8174fbb1186fe157d5cf8d2eb5cb3
|
|
| MD5 |
12f9d008f0ad9ebd44d42ef3da7e4aa4
|
|
| BLAKE2b-256 |
de35d6bed179c956a5c035916a7a5ccc60dcbe6f25c2b5d35d481d8ebc97b057
|
File details
Details for the file zelll-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 496.5 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68270c55fba7394c3469209077e4a14f6040f884b2bc125f7c5d9001a688cc89
|
|
| MD5 |
793695d2d52a8753df4517454afb48ee
|
|
| BLAKE2b-256 |
68646c1cfaae09b95189b328479da8a34a50c73b0049f7a4ce595f6b14fae020
|
File details
Details for the file zelll-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: zelll-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 540.2 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
795592c341f3b16be645aa1675324d7a8db7cf1021ff7f86e0f3abc58dfdf9cd
|
|
| MD5 |
1a0729f7da02858212ff29817f01ceb1
|
|
| BLAKE2b-256 |
c7a4e63e0aa47bdd7e5896a483aced53e9ecda4c6a5b46463ee12d242b16da78
|
File details
Details for the file zelll-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 584.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4139da0f5e094f7fb0a8b4d9581cbb1a8f581ee08809acdbcbccec297528602f
|
|
| MD5 |
b30ea1fcd331e138ddffd8d658a6602e
|
|
| BLAKE2b-256 |
f065fb1d91a84b0dcfb7018a0270619d23dbaf84823f30ad0cb53185cdc02a11
|
File details
Details for the file zelll-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 467.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6aa19712c77d3d39ad8ccbb20b731befc757a68067335346bf19a591d7987403
|
|
| MD5 |
d2fd868e02105a4f02003266355e2944
|
|
| BLAKE2b-256 |
fd9c77acabe2b7e0bbf3fed8ab75104bbf8ae0ecdf05dc873a74aae95c34cc41
|
File details
Details for the file zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 285.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
720979f90d82f1e676fb06ea10f31dbe3a3aa760e6e57a1b9b9bb60e69f75879
|
|
| MD5 |
9ecef8f97f2805cd1a47933dba102895
|
|
| BLAKE2b-256 |
328a026b9eb59d16f6d1187619fd1f0c60618a943bec064180de0b654ce2bb60
|
File details
Details for the file zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 322.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acf2b2175140336f48ba13e84099f5a8b755a3afebf7cd95f7107ec32767ee72
|
|
| MD5 |
5bf400efa2661fba4a0682e5683f66cf
|
|
| BLAKE2b-256 |
df86463f0da7661c22496a224de19de46ddee55c0ddefb55b5a358a987a96d02
|
File details
Details for the file zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 315.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44c8ac63a8d68bd72468ac0ce444caebbaa02f92f1c9ece0cca6f41462a3bc35
|
|
| MD5 |
349e25234ad3111c9ddfbbb0d35ff0bf
|
|
| BLAKE2b-256 |
db388e2c1a5c9c3b2442d4389f48718ed78f13d26dd5fe02f77bac6fc408f39e
|
File details
Details for the file zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 313.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b00817fddbf768452c03828cd803e381ac3fc905bb35bc0c179a87f4689201a
|
|
| MD5 |
5bc1a09a03804df6e4f41bf838791507
|
|
| BLAKE2b-256 |
3688fb8769295eeceafce1901e390d4ee66453eaa052d00956b259dc4c37f1c8
|
File details
Details for the file zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 283.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9769b5f382ebe881ef4533ab9ff6f86079ce9c01844bb9dd65b9a59ba8be8777
|
|
| MD5 |
90dd30554aef3bb69a696b200d74c883
|
|
| BLAKE2b-256 |
87b11884d27b5f4fa5f89fc3a002cbf6319e6441dd22d96ab0403c0dc78c0a17
|
File details
Details for the file zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: zelll-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 322.7 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebf67683d3402414eb656bc59909bc2df6a008b16bf01ef9e73d361961f6cec5
|
|
| MD5 |
bc5e3a9e19345fa6f7cd8ce8f41b732d
|
|
| BLAKE2b-256 |
5492f2a8f4e2063be32b8ee7313b97a1562859e7fd99eba6c5573ebc757cb4be
|
File details
Details for the file zelll-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 495.2 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e3ac16002826a599ff752e0f58b7e5b4cf3c60e9c7b8c7368bc2514251897ce
|
|
| MD5 |
aeef8e21e25e8448cd407dd8520f01fe
|
|
| BLAKE2b-256 |
dd83258f83b3fee8971830e35ebb663264c300a34dd1aa20d1ff0a2dc1c3f96f
|
File details
Details for the file zelll-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 537.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15d8ddc9db0e27cfcd323af054302cbe0c5b0c2b2a40bc69f76ef626dea745ac
|
|
| MD5 |
3b46dec8941d409ba8562f628ced274e
|
|
| BLAKE2b-256 |
dc5c12632e4f80a0ae9cfdf45ab46af547c7ab5244aa6f24b7f9d226ad087bfb
|
File details
Details for the file zelll-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 581.9 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a28c8e6410ed6ccdc42050872b8ab82048830dc113c0102a6ca11507dc45a7b6
|
|
| MD5 |
7d028469fd4e9085c2697d0d06e81b6c
|
|
| BLAKE2b-256 |
9c6a902b7745b643a6a42a3b11c7efb02cd169305dbe8150d9537f21e0b245df
|
File details
Details for the file zelll-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 464.6 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf4e40caf826e3e9bfd812244feb78a6cd342162c1bf7d8207db7f1af254a4dd
|
|
| MD5 |
98de2c05e5e7ae2e8d9d7a151549d502
|
|
| BLAKE2b-256 |
5e7163e645cb64064a5801986f5a3d9e593982710b1def87e5d8a452d7769458
|
File details
Details for the file zelll-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 321.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
feb7079ed4ad0b18cb9a568470cdb5e7052ed85645ded69b653692fccfecaa43
|
|
| MD5 |
d1e4659c1995f6b728bc145793e9bba7
|
|
| BLAKE2b-256 |
1d66c822d4f15c54c3d5e633bd804d04b89c9369021889be458599ad78eed6ac
|
File details
Details for the file zelll-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 313.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26819ae6650906e24082bb4175bdaac51a0c0d06ff1626ddbdd16895b610c357
|
|
| MD5 |
138e72cbb936d86ead530b07c058ee95
|
|
| BLAKE2b-256 |
5bad7d712fbe5aa05ff165b0a7f16f349aae7ba8839d2d5f1f19191064d5be9a
|
File details
Details for the file zelll-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 310.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97f4bdc31fa4ae028303c3273b6fcf2b51b440561ae30232bfb1bf0e496c34d5
|
|
| MD5 |
ea0f30c24f726521dc0fa39b27bb1c89
|
|
| BLAKE2b-256 |
bab10ca0e1cad8ee3763546e77c644eae9499c177579479d0de5e791463ae437
|
File details
Details for the file zelll-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 281.1 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c906660afcf0a5bce83b78fe76c19dfa94a285b65365b8306d1d2f38f2de301a
|
|
| MD5 |
eb4535ffc1ee96054e3eb8cc1a75563a
|
|
| BLAKE2b-256 |
a31053b855b77841fa4a1d6dc4ba08549f62264809507b9dea6caf307385e163
|
File details
Details for the file zelll-0.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 165.1 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4537622bdcefce20d70192a9e3a43145c2d7c386f5eb9a60a4ebb395a48ef533
|
|
| MD5 |
cba9df38f261df8e3712a090d50e5674
|
|
| BLAKE2b-256 |
1d421b2bb96c7fdadd1d70d641908e789d5f8e9e737fc9e495073a58b66811cc
|
File details
Details for the file zelll-0.3.0-cp314-cp314-win32.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-win32.whl
- Upload date:
- Size: 173.3 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9277dc90417e0dbeef0f6daef25551a879f5672e77f5724670c45f30b2562b86
|
|
| MD5 |
0fa1ada5dbd7aa774accdecb0c489155
|
|
| BLAKE2b-256 |
c62821586250a118859a290b9999d2dbad46dcc21716383e2a813a8bd51c4c28
|
File details
Details for the file zelll-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 496.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
080862169b9addad01012456cbdfe63b5862f7a895afc4de45f0a9c950986cd3
|
|
| MD5 |
eb10a47c974f822428bb4fe23dbc3829
|
|
| BLAKE2b-256 |
fcaeb3021e6b7800c086a2985c2ca24fdc4acaf12b5eb08c7d64f9612720524d
|
File details
Details for the file zelll-0.3.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 539.7 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46b7ef3c00ea699214e624ea841ca77c16c06e5a81f0e590b42b3595ccac36b5
|
|
| MD5 |
81fed806137f289a1cc48aacf9f73f32
|
|
| BLAKE2b-256 |
acb603aeb24dcce89e4dfc7869ee3c89037b97e6c2b6d126bbb78629655dc633
|
File details
Details for the file zelll-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 583.3 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7423ae2bb620faa3cc5e99b98882f5d972ee84e1f446e131fd750493a0886762
|
|
| MD5 |
bba83b67ee865eb41e554c053ab6d892
|
|
| BLAKE2b-256 |
5de590e47d7dad587218a0300257bf6bf1a402698c8a4f45e673b323e63f94a0
|
File details
Details for the file zelll-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 466.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4dcf05014f09eaa47d69edf04686a0ed3de75b2dd1000d0d0f32143656e4df99
|
|
| MD5 |
01c8d3991e983c034d703720aee5b2c8
|
|
| BLAKE2b-256 |
778d88482b012fdd3d7d6601a338c48d05d46ce74d88f9817a91b759f9ceb5e0
|
File details
Details for the file zelll-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 284.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
966984b2bf73e141ca072d1048fc1c6d113493cea78b5d3c26658becfe838339
|
|
| MD5 |
085e6c472921f6b1b3dd7212f1fbf4f0
|
|
| BLAKE2b-256 |
46e935c497a1eb74649f3f21d7b34ac368242a0f3d9872d85055c8ece087dd06
|
File details
Details for the file zelll-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 324.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f6d02fb64b9607c3d53ca4bb27e02e4b285341219c059eaa844972e568475e9
|
|
| MD5 |
1eef1b09b3f5422135260d32c0dd3432
|
|
| BLAKE2b-256 |
711e6962bb41c0aca6529618beb92ae6f85043dfd13f05cc77fd584dceba7030
|
File details
Details for the file zelll-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 314.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3618db639bdaa7e9620030cd11bf828d972b416f328d67bfc6a512d69004b15c
|
|
| MD5 |
59e8e4c8d6954560bb6f90e941bcc781
|
|
| BLAKE2b-256 |
3947aa56f91e14ebd53c056ce66d0646603b2273f68760ca76c76b6769520767
|
File details
Details for the file zelll-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 312.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5c32bfbd90d462e567a58bfe99781b9fd6abe14a2a89f6934de66dff5d352b3
|
|
| MD5 |
36d3d5ffb5b5df2e17a23afdd96dc4eb
|
|
| BLAKE2b-256 |
e141c6a5869e8e4952c12f27dcecab535713720d93a89a6cea4cf2b090bed7a3
|
File details
Details for the file zelll-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 282.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00f6bffc8bcf3922d65e2f285152f967832fff0e7f00648a9c69c0aeb834b30c
|
|
| MD5 |
c4a3e0115ee54e773226df70505efaf2
|
|
| BLAKE2b-256 |
ad6ba6b8a9d5a42305dd9a3d4a6b89f62425f68117cdad970295d84a72ff1182
|
File details
Details for the file zelll-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 322.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
018e0ca5e226f7d2b40280ee01504a4c0a883a15d97dce7a427f519f211c8e60
|
|
| MD5 |
e680e4c87c5c252b1ced8ca41b004be4
|
|
| BLAKE2b-256 |
56d7c22efa970ef6f676306bda629d0e9d3ccf1f93e78e5e893f4cb19d0f7138
|
File details
Details for the file zelll-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 261.6 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccdacb2a0db76cb35324f44ba587dc2bf788da712f5fc12b42d4907ceac6ff46
|
|
| MD5 |
8b5cc46fcea78186f2f190a549333c4c
|
|
| BLAKE2b-256 |
43245732392a11ac52ff013f2c38b8f506d544c609f5600a3e44e64e0de3ad37
|
File details
Details for the file zelll-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 271.9 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbd5409935cd2bb410a65dcda705a9e2f9d7c2810bd3f64b73b9a4cc1cd3beae
|
|
| MD5 |
98ce9bca003b28c048a860089811193a
|
|
| BLAKE2b-256 |
5154045fa266f209f98c5e77d6d48ede01d8900fe1a6db0f49488424b2c8f2f3
|
File details
Details for the file zelll-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 496.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
840b290e4678f9f8aec92f34dc324d1b8414804f05f6b0c245ce2ec29335bff7
|
|
| MD5 |
f735d60fdf51c03d20bc733778c57039
|
|
| BLAKE2b-256 |
e127e6ad86a1948df241554e23edd5b3bb681b2ad970e1b35cfeeb85112f38c2
|
File details
Details for the file zelll-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 538.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99bb5867fb047817c089a3d3943c596a3c58a442b150f71ef8a5dbddd52eebe9
|
|
| MD5 |
099aa3679e5c287ba71659ff533043d2
|
|
| BLAKE2b-256 |
ae76d8518923cc13fed197c196ac594c641cd6867f37f6dc03448d0ecd20115a
|
File details
Details for the file zelll-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 582.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5accf0b056078fa47685903842b87ef617972daf4041f9eb40020592f894cb7d
|
|
| MD5 |
d0b9fa5232a448fed7c6f3f970cb3bc1
|
|
| BLAKE2b-256 |
a094e37e849af6213bb8d58aa33489120308de4e801b98f0dcc8be874346c215
|
File details
Details for the file zelll-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 465.8 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
feaace79a9b99894e874355dfd171d265a33a516c5f71cdbef6b00c550c88b10
|
|
| MD5 |
2f68e8eaf00bddf222eac92fda62c31c
|
|
| BLAKE2b-256 |
f068b37fd8d1372aa851fbb472537bb89feafb44384580d4a789efd10c045679
|
File details
Details for the file zelll-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 322.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ae933b490427e66516ef2c7b70b3823e2d456af820775c9e7913e8adff8e7eb
|
|
| MD5 |
04e8addef53df79ea54126ad8a02fecc
|
|
| BLAKE2b-256 |
ef994b25bf5d6972277f615a6effc18002dadae2a9c4ea53e0e92e7fe4681914
|
File details
Details for the file zelll-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 313.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8515136bf69755e2eb9e8302fe34bed97c93653398b738d672ccdbd7ec05c345
|
|
| MD5 |
ee972aca6dc754d9a96488780a2b4cc6
|
|
| BLAKE2b-256 |
6bad374831e5752c2e308caa81b6310bca375959b59e077ecae6cd844956d1e4
|
File details
Details for the file zelll-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 311.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52c62a886a31b44b81a1525e6875697f7f18a42a8e07dc6e316d85d90ae68c14
|
|
| MD5 |
20532f0f6a17df3bee3fac5c85fb3bca
|
|
| BLAKE2b-256 |
2e39eb24f899dfa6e9fb1f0dae54f5e5bec4e46baa39991bd8e255127ea2dad3
|
File details
Details for the file zelll-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 282.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68f3e1ea3862719895a79da7248d8e96567366a3a22df471395306d11190417f
|
|
| MD5 |
3b8a1e3edfc955a27722006ea7888ee1
|
|
| BLAKE2b-256 |
d55496d8e25bf698ef94e83b64939bdc0b0715109fb1771c258f72a475182bc5
|
File details
Details for the file zelll-0.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 166.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b014bdd5d70b61ef0bf6d8875d94b0b9f1c6e3bf46a2e5564ea5e448065822be
|
|
| MD5 |
9524673848a53393cf5fea5450544b77
|
|
| BLAKE2b-256 |
bb56300c666af57e6a09fa4a1ad5498451a51c4ecc8b7b5e8461f553620261d6
|
File details
Details for the file zelll-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 497.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8474e1c94d0290d9be85d89b573bf12998be04d6e9806f5ad48e3c89207e9f6
|
|
| MD5 |
ae2a8eac8f442f49ec48431edef018e2
|
|
| BLAKE2b-256 |
0d3e6c6bae070f048aa92a4d2551c35d513b9122ff42c76d8875f129f6eee5f8
|
File details
Details for the file zelll-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 540.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b269068c9611a502709b707658db61ebb9f0a607397ba2f36865331744adaa5
|
|
| MD5 |
1456aaa29b36a3e302835d1769559a2f
|
|
| BLAKE2b-256 |
dc3df1ceb41d8134a6258c984edec4ade962fad54f66b3b75a694609dec36075
|
File details
Details for the file zelll-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 583.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80ba88cd9fc615eaaeed01e25c0b66d4c141d9244a63571cae13494ba98c2802
|
|
| MD5 |
b8583891b90866e9685e7b8523921635
|
|
| BLAKE2b-256 |
e9a1c0e5804c6c6389f5e2b4e23e16a3dd4b8b152338e5509eba5e5fa632dcaf
|
File details
Details for the file zelll-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 467.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21604bbcfdbeab71255fb52cff128473c48405cb524b33e240efa08aeb9da8bf
|
|
| MD5 |
da3d6a70d21600c889f1e0ebaff1e036
|
|
| BLAKE2b-256 |
c68a047064846836f069a5bef5dfb921f45483c20063f38baf5bdbf8a782456a
|
File details
Details for the file zelll-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 286.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3ef0734f69916b2ed676b0c271df20e1321db5ba76ff29a89487631371ac17e
|
|
| MD5 |
9d392693e2837a2712d497090529f7a2
|
|
| BLAKE2b-256 |
47460c9c5d3defd6b311e970af1771eb9b29db36fdabd46ea826632252123d61
|
File details
Details for the file zelll-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 325.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b79b2c209e14afeeb30609224a9749e41b7f66be85b97e2515b19926fcce043
|
|
| MD5 |
96e897b2a0c056bfe15361bf7ef32edf
|
|
| BLAKE2b-256 |
72bb56a805c200e816461a7425f76beb557aa65154f8fdfa7507ff3730a974f4
|
File details
Details for the file zelll-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 315.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ced839cd60ba8f6e20f6cd2ed3a9ce35b2287a1e67f8929060c2851a08601328
|
|
| MD5 |
c440b5d144643f599074e6db5fa56597
|
|
| BLAKE2b-256 |
e35f035c10b27b49861b251e26c077026f0f6b60522468d1c6936da6a4070a5a
|
File details
Details for the file zelll-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 312.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
454a3990d44a0f79a4381032c0d5e7bd50da3c0a50025ef011f49473a3221152
|
|
| MD5 |
1d454dc3050cdabe7c27f20c3ad59f8a
|
|
| BLAKE2b-256 |
1abd70487a86541de1d9f20cbe3a5e6a19e609bbdc725b58435679b4bcd09569
|
File details
Details for the file zelll-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 284.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16d020428cd1aae64523f15471d8d0778e864bd210a7eb0e1b9e9115cc722e41
|
|
| MD5 |
c1280450b556dc9f7aeca3f727cb5d89
|
|
| BLAKE2b-256 |
9f93a0b20f805766b5e4be2b776b8d724197c7e80f16450ff8e2e149b1f82db6
|
File details
Details for the file zelll-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 322.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86a134842deda5d57814c30da037f0d4bf53d6a87578b1ccadbc7c8727c65e2e
|
|
| MD5 |
04e3c799d20fe8ddd49b4aca847866e2
|
|
| BLAKE2b-256 |
d91d0a33ba19b21855a34b4ae8c15040e21292502843acb6b5453203e5ee6cb7
|
File details
Details for the file zelll-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 262.7 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e3bc75afa72dff8c0d954a15d4b531a5b129ef8573d7f8d03f5fb4a9c13c44b
|
|
| MD5 |
bcdb5dcdb57ad4cdda72124f221d14e0
|
|
| BLAKE2b-256 |
4d4b2679f22976dae3460a86685d18bde30532519cc92480bc8375ca4beeda4d
|
File details
Details for the file zelll-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 273.1 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14848a8796fc6ad032ada28bcaea8a9f36a9396a9a67101efed86a0da59df18e
|
|
| MD5 |
36fc6083b45beb6ce1b5e7dafe23be8d
|
|
| BLAKE2b-256 |
df420ea748e2a6db51315ad18e60a9f31137b2e5f9f9e1afa0850e3c18a35cb9
|
File details
Details for the file zelll-0.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 166.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
891d5663d34c09179c5c82db3e40b1cef93d367bb29a460f47bd843fad9e7d81
|
|
| MD5 |
e9259b4278f069221ddac7c9d29811c3
|
|
| BLAKE2b-256 |
13438d45a8fb99b5e1b1de18787712853f8157bbf3b75533fcbfb0c9663af7ca
|
File details
Details for the file zelll-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 497.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61676fce01f1b3ca29e688dcd299b177c01684a741c88bd6e6b399bd5da02535
|
|
| MD5 |
9add8186cf14a57a4e1119ccd51986f0
|
|
| BLAKE2b-256 |
17d75c6de1679a42a217042417cc4651ae55e33203f7c6dca3fd19f5d4044b73
|
File details
Details for the file zelll-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 540.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfecc1bc08177329e8dc372a1e40d65452b8c913cdf452d9a8efb50719d5e23c
|
|
| MD5 |
fd2998cf6dcaa1a819aba523d4861f90
|
|
| BLAKE2b-256 |
ff3a0a10eda1be2585214427e54263ca941dc42dbd6f2d629750966feb3b8b6a
|
File details
Details for the file zelll-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 583.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5b928a85b3d9e1196e27cea0cb92367913fc12a64abb66c52146186b3bf25ae
|
|
| MD5 |
19946e51ceb92cebd41853870b4e0ee9
|
|
| BLAKE2b-256 |
9fba486f0c2790a69d99c9f5a9950a16d3e71f25974a665cf3596b4cc60f3f04
|
File details
Details for the file zelll-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 467.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
534dc841589327ca6dc640a88c4f42613f662590b173bcdc77f0833c3430ffd4
|
|
| MD5 |
20b101ef5d6f4a9aaa5995d52b60047c
|
|
| BLAKE2b-256 |
b0341896c4e2e90821342824ac447a8c1dedf032067752cff273529de2017cec
|
File details
Details for the file zelll-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 286.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
266eaf4209b332e1553eca83959dddf501121df5dd3b45f43495541462ec244a
|
|
| MD5 |
7bba1d0bb43388927940a010738c3011
|
|
| BLAKE2b-256 |
719d0ce71e47fc77da602ce23ceeafeb7df9470ba155eb0985933058b176e7bb
|
File details
Details for the file zelll-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 325.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87fafddc0ceaa1cf4d3c62b5bd0953c249c0a962836eaed172e36210b8d09545
|
|
| MD5 |
e0d8777c0699bb730cc25bd3990bf3f6
|
|
| BLAKE2b-256 |
43db4708375111e6fe9b016525fef99ce4b159a72f400c1bd369b703796ce248
|
File details
Details for the file zelll-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 315.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
717f55146b840226aa0c77bfd1491882a7cc53a63c4e96896dd62dd69c5128e5
|
|
| MD5 |
2a50d129c609dfb23ba8f11f27981781
|
|
| BLAKE2b-256 |
c1b81e1c5f59377a10e5703762add6ba0dcaedf71dc42f97d7135fd2f56c5fac
|
File details
Details for the file zelll-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 312.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0413a187210be8bba729c3c96d23764c6564a81da82bb0697ecb5487027071f
|
|
| MD5 |
4d77046bc3f9baaf7d9257c6800494b4
|
|
| BLAKE2b-256 |
e6aba48591067c463a239061bf24d9b2fbe883b1614dd6c3420594ef70b4d73d
|
File details
Details for the file zelll-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 284.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a846977d6629e56d04134298689550b190b9ad29a69db1309a21024d8424ee4
|
|
| MD5 |
ccc57445a81b020dfc8e7e0e0281d205
|
|
| BLAKE2b-256 |
4b9b6b58087e678149eccb72502766e9bb26ea5ef76fe24088215a5618e34cac
|
File details
Details for the file zelll-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 322.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f1f7eefef338448efe102d5566d9863ae638a0a30f3210ca5eeeed512f4095e
|
|
| MD5 |
f1365dab83dcf5bf528f50b3a8e92586
|
|
| BLAKE2b-256 |
95046903a274f8da036d86633c8a01ad5481e834e377080aeb3923375beb9aaa
|
File details
Details for the file zelll-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 262.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dafb4cab8f74871fb325a5d55f9e71507a0cd739fb3ac530401678f72e50ad7d
|
|
| MD5 |
d2e028731abed4c144bfa9ea277d02f2
|
|
| BLAKE2b-256 |
54c581495a274209fc4feee8172109f7263541a769ff8f8ea1f163f54efd4b96
|
File details
Details for the file zelll-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 272.8 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ddc1afcb88e3517d4034023784176fb4babdb100e3043fa5b4b044867a93329
|
|
| MD5 |
2e12f6b6648022e5ac0287cfce74d547
|
|
| BLAKE2b-256 |
79b8a0136472e6441aac61bbaa72253f2a87edf224fb2773086f71363a27f917
|
File details
Details for the file zelll-0.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 167.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
035cf640b6151f560c2626a481179d911bb0453c180dd6583fdebdbeff72cc94
|
|
| MD5 |
956eae1ec2ce16c9f0d45e6d127bdd81
|
|
| BLAKE2b-256 |
0611843c753b3c0d324e3f58ad2aab51bef9edca12ce5e5907a1f57f332d3335
|
File details
Details for the file zelll-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 497.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fad55b3ffc6e9ae7c19fddae52325207de2383802d4fa1ede2de1f18947ecb96
|
|
| MD5 |
cbb5c6d794bf406fd42d3b8f6c8467fc
|
|
| BLAKE2b-256 |
f40160f47189be62944d79931b9aaafe2d2d7cfbdb9af3c610888cc3068a7c5c
|
File details
Details for the file zelll-0.3.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 540.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfbc62350d2e9795c9efb3a23f840346eb835355a852855c0a5139d38b77e700
|
|
| MD5 |
d8f99d03f2a52958531f01b9b4a83b4f
|
|
| BLAKE2b-256 |
f1152ba4a494c827be7cc6df3b93816ff01ad3696353abb1190e7aab3d2915e8
|
File details
Details for the file zelll-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 584.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09f00b9990c50d58b08b206fa0c0966848a33be2c5fb6a5d9e3f7ade87528ac2
|
|
| MD5 |
249b3e37aa62abc09fc74c38d95e9a88
|
|
| BLAKE2b-256 |
8514654e55e042d150df5d963e8cfdd5588ff181b2724cd1c6bd2bb19d283414
|
File details
Details for the file zelll-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 467.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81633b557579cb7eb27c6ebbdd240c75cec29ff625dd121b97817420ac8a6519
|
|
| MD5 |
53c24b329e96d3f840ea7168118a3b3c
|
|
| BLAKE2b-256 |
57e81dd670b2f567d04d367ca7421d4e06711a79e00dc46791383887a286e46f
|
File details
Details for the file zelll-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 285.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e54acad9bf79132cccd76746e144cb060be1d9ec76ef2293038065b3f8d5edbe
|
|
| MD5 |
d3ee79aee5a8ce984e8c5b70aaddeb21
|
|
| BLAKE2b-256 |
8d4ee353b011af66964092f1b7d81eeb0e7a157dc18d2c2e5c8fd0b2d4333b25
|
File details
Details for the file zelll-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 324.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa3aa6dcd6faab7cd412cea2716925daaff09b6ee4f1738d60523ac50709b094
|
|
| MD5 |
7c76a12b2633db6e211fe720df83636c
|
|
| BLAKE2b-256 |
e5279d1d1934adc21830333b0db6ee72cef2f6c929cd3ba0bace35bec9c3982d
|
File details
Details for the file zelll-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 315.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9948829dcc68e9e9954c640faccf51dd68ad4902c8c95ba97ae78aad4c8aea3
|
|
| MD5 |
43fa69d7be39c7d14728c51935a668f5
|
|
| BLAKE2b-256 |
ec14237a1027761e16443516b3012c0232dbf6491892c37219c629dfe22b94af
|
File details
Details for the file zelll-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 313.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c10a90c7a82d5103567e9aac03724df7ff30ebbe84b6f514777eb03ce3e8e2b
|
|
| MD5 |
b8a780ed256a036dae404d79d696c550
|
|
| BLAKE2b-256 |
e1910ca2e5ef5b2d03d759d2d5defaba79c47a0c12cacd2281def4269b358a49
|
File details
Details for the file zelll-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 283.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a11c8fc4c4b74338df65220bc5a30d9fd1c3e13373cb0d01f5d18c87028af06b
|
|
| MD5 |
02bf74d84f9637956e41144a2e6ea1e9
|
|
| BLAKE2b-256 |
ff658ef696fc22a7b4517624c1eaad0146af2e0656984ea27d0eefeb09c2bd2b
|
File details
Details for the file zelll-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 322.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec4045edd7442d7cdc8f8531747f24d9e01d70943174e358a7b3da48bda266fc
|
|
| MD5 |
cbaa140b4f35a660b66f32682bc57e2d
|
|
| BLAKE2b-256 |
4aeeae7a254e2010e756b317ba24474082b7ad283c46676d7913257634e37f01
|
File details
Details for the file zelll-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 262.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd41c73d9232df4103ab7ff3160c0e6c1c111fb1b576a54005bccca40e5d9fa2
|
|
| MD5 |
d01172bda8f702ecb02d347a07686885
|
|
| BLAKE2b-256 |
d255bd5edb65889109c75422fd505391f441e20c4c2f50d7034c6f881d8c709c
|
File details
Details for the file zelll-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 272.1 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05207a9b4f5665f253ce9e0282827d4c3c9b764bc220319cc77d8f2b7e7c469d
|
|
| MD5 |
190196be883a2f736234ffe8014a8180
|
|
| BLAKE2b-256 |
c060ca61cc0f0f8d3830be738657988dd06add07acd9d10331a04874e3e4e931
|
File details
Details for the file zelll-0.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: zelll-0.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 167.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6122caa2d106d1a87f40635b737c4bc8d5719ce5a0ac1fc0b1931fcec649dd48
|
|
| MD5 |
cb6b5f2ca597b9c9ba808a0022ff416d
|
|
| BLAKE2b-256 |
61a2382d56217113f3ef599e3af0995c41b11ad51ecba1c90726364727d37c11
|
File details
Details for the file zelll-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 497.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94150d882694a29ca378dac86aeddec1670f0a62dc961cda3c117371da705d36
|
|
| MD5 |
25798a19f126be2d44c8f7f5cb146c16
|
|
| BLAKE2b-256 |
36e3ad05eeab79587570b6b9a47f4694e4343ec61fa1d4e0cf1918dea33cb97c
|
File details
Details for the file zelll-0.3.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 540.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6defaaef4014e0e3f7e2eba03612133a5c9ea487dd9621e4fdb6699cf0deab67
|
|
| MD5 |
56e6b3ec100fd991cf23fa772dc0d947
|
|
| BLAKE2b-256 |
9d1dbaad527f3b16c11a2ba54c11520c34f7050a3f9d080ba6127b079c71aaaa
|
File details
Details for the file zelll-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 584.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbfe36cee6c6fdff66d81703cd18e85d1cad4f0ba2e1c160619d31cefaea279d
|
|
| MD5 |
f0ab63d420de2679a5db8c5da4d8127a
|
|
| BLAKE2b-256 |
f477f9759ebfeda50169ff8acd1225ad91be5cd30924f9322e59bd06dcf3217f
|
File details
Details for the file zelll-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 467.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86cddabc81dbd9983d5199803e50502e5038c0175e520c17b2d24e3f5689a544
|
|
| MD5 |
869b5020776eb63db067eb4ab2a59541
|
|
| BLAKE2b-256 |
a278d9a2a86749ef6e0c39d2816ae39abdac428d49572d0fa14d5f19e9f5ecc9
|
File details
Details for the file zelll-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 285.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55a0cb50358347813c3912519243c52cce4864102b0fac318401745eefac16ce
|
|
| MD5 |
fd6a29d503f121f28ba3b95f313c0977
|
|
| BLAKE2b-256 |
112a4ced9c7b0ded398684ab053fe87324b59b03fc167249fb57b8d90951de6e
|
File details
Details for the file zelll-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: zelll-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 325.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad92885222cddfee63bcc4c1beea3670c29b5de306f4a5ae32d477a5b4dcf0fa
|
|
| MD5 |
fbba452877cd68c1c993159e862f8d2e
|
|
| BLAKE2b-256 |
4f6a5b0791b54a46d6d6eb0f17503065c8855279db587591a33bbaa04e97df41
|
File details
Details for the file zelll-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: zelll-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 314.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a76bef4e6cc2929703820403cb4c9ee59e5f547cc1263d844536660b06ed69f6
|
|
| MD5 |
f205aa3fb5dcb212b0634225224af840
|
|
| BLAKE2b-256 |
91ea32e045a0f5c73d660f4d8ce729d29aedb60fbe5f9466ce1fc1ed08625dc4
|
File details
Details for the file zelll-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 313.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38ed57abe9f928549a3717df29ee590a4b39b15b7c958333646eda61c9b39f01
|
|
| MD5 |
ef28e4df76ca9e7167d244d1d0bf7ee8
|
|
| BLAKE2b-256 |
a4538bc5d30029745405351a16860aa130b36bfb18f780aebfc57e118ee1e410
|
File details
Details for the file zelll-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 284.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db199c49ba3801864537eb95fca19af7406bbc32de58ea633e5f4361921b9884
|
|
| MD5 |
6485a2a80e6a55875f6dbd0b2a81d1e9
|
|
| BLAKE2b-256 |
b658f55be31630dd7189f5d1c682eab75951e4e5389d8e6247262e8f2b3c9d45
|
File details
Details for the file zelll-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 322.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69020053e1bb317fd6f29775c20753a47bf48509600725aefa83e7257bd7a4f8
|
|
| MD5 |
5a5851aa7756bcb6a9fd5ffb1e8d968d
|
|
| BLAKE2b-256 |
810ae804570c0d257a4ac94908cbbe9ae92884343c9a074423c37394a9100480
|
File details
Details for the file zelll-0.3.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: zelll-0.3.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 168.8 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
934f12abd5e6b0b8df7cf3ef5d4682011febbb09c0c0765fa3502c1f28e00974
|
|
| MD5 |
099ab5e785f1bb1840cb029bb8758cf7
|
|
| BLAKE2b-256 |
6380e78192de24b9b5b58fe231b504e492faa7605fe90b7698bcb97b89124b46
|
File details
Details for the file zelll-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 498.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18c4ee9a5765ecb821106f9ce8371bf451701cb7504b6414dcc944ad11d97796
|
|
| MD5 |
513736fa896334a2096cd93b141dc1b9
|
|
| BLAKE2b-256 |
64edc543dfc7da4cfb2143ccb53002277efe3f7dc534944fa88a806c284cb207
|
File details
Details for the file zelll-0.3.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 542.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4533545946760d738e8abe5242ad18f34236c97c003105fe2c9d3a0459e76bd
|
|
| MD5 |
ee1d8831e927b96e5a5bcf903f3e8cd7
|
|
| BLAKE2b-256 |
b2d295c2930dd8f4654993543fc0e8765550be15b6810593d201eb3c73e6e21f
|
File details
Details for the file zelll-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 585.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6264daf140beeb239ef945b4a86c83197d8bb79eb8350f87bc0a281f0310fba4
|
|
| MD5 |
9ffc0311290019bdb55e990612ebbd68
|
|
| BLAKE2b-256 |
b04b1e850b6299f896525a0e4ecafea8894969448be0a2302b191d0c4ae5ad4f
|
File details
Details for the file zelll-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 468.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef556b0fca208ef8c2217f5cf1d6f210dc247c07d9bf5de30a80738e6a1fa63f
|
|
| MD5 |
92fd30e874b389652fd6d35ae5b607e2
|
|
| BLAKE2b-256 |
b2f14eb1084d780111ce50ab41023db33da9ac754db7d0abded4425e5b577568
|
File details
Details for the file zelll-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 287.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
326554118c8dbe6749119dcebc7eb7561a006ae15fcb50453cf52e126c931be1
|
|
| MD5 |
4c0b0073ac1fc0c909622913de6b2738
|
|
| BLAKE2b-256 |
91206d2b36ea8a2c57da0097fbb558f0c897bbef0b985ea96b42331f7008e536
|
File details
Details for the file zelll-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: zelll-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 327.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e5c2a78553470d353d7b8885a70de300af0dcb8d4cb18ac14583964ead0be4f
|
|
| MD5 |
5ea83d2d2053af72664367506869b697
|
|
| BLAKE2b-256 |
9a742c6d8a6f55bf816956501aecca7f73dcdb6748988c4bd904f700f53755fb
|
File details
Details for the file zelll-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: zelll-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 317.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10afbd966bc5707fec9b97a6727338a85914a0c2c1b3a585934bbe73f0ada0ac
|
|
| MD5 |
cf8c20459ad561115b8d5a5c504d4f02
|
|
| BLAKE2b-256 |
1cee95ea8a0f9f43262cc94c77d94979f0bc66a3570408a55be900c71bf576c5
|
File details
Details for the file zelll-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 315.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06a76dbf764f7c23e73c3886a5975206bc6db79d130dcccddfa393611406e4c4
|
|
| MD5 |
477b7aad846237ae77a42bb867d0f860
|
|
| BLAKE2b-256 |
46d4df130ea7a8ebe3b6a0d902c907c7ea9931a7408fbeb9a61423ba0d8f10d5
|
File details
Details for the file zelll-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 285.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
243a7656f92df51adfd5ea506e003433b99e44b1dd2b6694a6b3699aed98b679
|
|
| MD5 |
b8c51c80b9f155eee595b0044de11969
|
|
| BLAKE2b-256 |
1140077d3e0d7a025fa7f55078b888836c01d5c99394064c89d85a44551885b1
|
File details
Details for the file zelll-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 323.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f37cf666c0dcd1e1a6509ffad7d88d3d0798585c723d31cb1c5979971cc314df
|
|
| MD5 |
f5c73d7e42fc1cd143fb68ba6fa312a1
|
|
| BLAKE2b-256 |
802128baba3ba7b9557549e49b66421aba963b58a9352db7701f50372480d298
|
File details
Details for the file zelll-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 498.9 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1158abd9a999bf2140688c54e4cc1c84c8fb7cce3a84fb5b6e81c76df4364240
|
|
| MD5 |
6f06926589d26a8016327bf872720132
|
|
| BLAKE2b-256 |
6d6b856fa932d37d890feffb2ff43bda4a7fb99bf9492576e686b26c56088ab4
|
File details
Details for the file zelll-0.3.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 542.2 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b130d0f805c6a8f7fed6220c744ecf8d4d56aa6eaa2234c6bbb9aeafbdaa60a0
|
|
| MD5 |
eb0d3bf969d8a1f7e20189d602ceef47
|
|
| BLAKE2b-256 |
2b18f86665683ca38c8fe754acb58e319f5e2c9bf4af33fa8902b00ba86c17bc
|
File details
Details for the file zelll-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 585.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7e85ab969d0430b7c23378a498e17c5ef5d07b2fa2bbabd017517c29dbb2b6b
|
|
| MD5 |
327e0c534e390819d75de9c402cdc688
|
|
| BLAKE2b-256 |
319c2aaf9c0f93c4d3552a38a5d49ae8b0293269e192e09c991a12358f6ee555
|
File details
Details for the file zelll-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 468.5 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a076f9e81885b60249f19174367f65212fb34c7a3eddc0ffb06f4f7d41cdbb71
|
|
| MD5 |
9a6792117cc18acda73d57fa5e01a7bc
|
|
| BLAKE2b-256 |
91dddc344f4ab749ce19f931d0e8c58a9ab944f1a93c771656f5ceb2ca071773
|
File details
Details for the file zelll-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: zelll-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 287.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ed1806b3559abc252620ec0777326f6772ef5485da12926128a6634bf8f2976
|
|
| MD5 |
9e8af1b439076fab5010f4899c253220
|
|
| BLAKE2b-256 |
4fbeead747d37d099e2e7797877484c78030938dba2920074d24f3b1cc23b109
|
File details
Details for the file zelll-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: zelll-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 326.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09cb94f0e1eef8673f4819bd544e3c70015b5e4b73b8f6d4fabe3b0c01e43a7f
|
|
| MD5 |
4833776b4cf7959c61e1db7bf3bf047b
|
|
| BLAKE2b-256 |
59822632f4065e22e836dfbe6c9e1561369d3088cec730652e58214a587699b3
|
File details
Details for the file zelll-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: zelll-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 317.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edb64c8b36138721f7349190b963eff2028f79355713385a8f15c49de1598806
|
|
| MD5 |
2fa1dfffe681cfb90bc895e253d514d7
|
|
| BLAKE2b-256 |
7b49127c0c5ddfb01bc8a6b531015ddd0eaee91388d89a8ca844dedf17503577
|
File details
Details for the file zelll-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: zelll-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 314.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e9cf1c74da2ce01c5d3b3e438ee9f6db3dc304634c20072a3c8adc3c1883335
|
|
| MD5 |
cde90e9fbac2501499d94d5e33b3a2b2
|
|
| BLAKE2b-256 |
2a813419ee1f6a5c21c61b6e86c0a2bd0d8593575bf35aadac4e3e8e1e171c19
|
File details
Details for the file zelll-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: zelll-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 285.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17a0464de365de81ffdf486a113c3d74ca8f73efaef25a36dd146a1f9a85ce9d
|
|
| MD5 |
2fb45a336648adf17a582eebb6ecebac
|
|
| BLAKE2b-256 |
2f17dab11539be5764bb936055d8456e376933390fb26f3e18ee528b893f42a9
|
File details
Details for the file zelll-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: zelll-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 324.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6422b92a18e086abcf73081f574d8a1e654a7f70c5bc2f8365a97cabe2108fe8
|
|
| MD5 |
67eca0ef9cab5ca65aeaf921072f23e0
|
|
| BLAKE2b-256 |
0330244f834ba7394afdb64ac0b137e21e5678c577914f3837e1a8836a5c61e7
|