Performant operations on array & pointcloud data, written in Rust
Project description
OxVox - Oxidised Voxelised toolkit
A collection of operations on arrays and pointclouds implemented in Rust
Installation
Precompiled (from PyPI, recommended)
pip install oxvox
Manual
Checkout this repo and enter a virtual environment, then run
maturin develop --release
Usage
Indexing by field
In [7]: from oxvox.indexing import indices_by_field
...:
...: TEST_ARRAY = np.array(
...: [
...: (2, "a"),
...: (3, "b"),
...: (2, "a"),
...: (3, "c"),
...: (4, "a"),
...: (4, "c"),
...: ],
...: dtype=[
...: ("score", np.int32),
...: ("initial", "|O"),
...: ],
...: )
...:
...: for row_values, row_indices in indices_by_field(arr=TEST_ARRAY, fields=["score"]):
...: print(f"Unique value: {row_values.tolist()} at row indices {row_indices}")
...:
Unique value: (2,) at row indices [0 2]
Unique value: (3,) at row indices [1 3]
Unique value: (4,) at row indices [4 5]
Nearest Neighbour Search (NNS)
Basic usage, query a block of query points in sparse mode:
import numpy as np
from oxvox.nns import OxVoxNNS
NUM_POINTS = 100_000
TEST_POINTS = np.random.random((NUM_POINTS, 3))
indices, distances = OxVoxNNS(
search_points=TEST_POINTS,
max_dist=0.05,
).find_neighbours(
query_points=TEST_POINTS,
num_neighbours=1000,
sparse=True,
)
More complex usage, using a single NNS object for multiple exact mode queries (e.g. to distribute the nns object and perform queries in parallel, or to query from a large number of query points in batches/chunks)
# same imports and test data as above
nns = ox_vox_nns.OxVoxNNS(TEST_POINTS, 0.1)
for query_points_chunk in query_points_chunks:
chunk_indices, chunk_distances = nns.find_neighbours(
query_points=query_points_chunk,
num_neighbours=1,
sparse=False,
)
Tests
All test files are executable for spot-testing functionality
To run all tests:
make test
Performance
See performance tests under performance_tests directory
Building & Pushing to PyPI
- Generate CI YAML (still TODO: run tests after building before pushing to PyPI)
maturin generate-ci > .github/workflows/CI.yml
- Update
cargo.toml
[package]
name = "oxvox"
version = "0.7.1"
...
- Tag with version number and push
git commit -am "Push version 0.7.1"
git tag 0.7.1
git push --tags
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 oxvox-0.7.1.tar.gz.
File metadata
- Download URL: oxvox-0.7.1.tar.gz
- Upload date:
- Size: 23.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
706688ed8cc500df4db6543ff8716a8f07f3e6f3066c6b10b52f3252b8ef4f2c
|
|
| MD5 |
5c8c73cb9456b84cffe3f69aae88f397
|
|
| BLAKE2b-256 |
28b108baa419c65ca1b413bc8ff78d9e40c75e67dc4147d8fe755ce8cfa3c3f9
|
File details
Details for the file oxvox-0.7.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 676.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d4c901612595f373723a54f4d57ba7bdce6a8e8be90e8ae45c5530eac3bd8ee
|
|
| MD5 |
1d04b88f025304e48f82e8a8e9dad5f4
|
|
| BLAKE2b-256 |
3c077c1e6f1f234f250e1a37da5e338a07632f0bcb4fdb87f92351d713ca1d8c
|
File details
Details for the file oxvox-0.7.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 707.8 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1500e4e4b658c4abb18ad4f6e1c9520705cccad2da1b3c669d7a2273aeab9d5
|
|
| MD5 |
c95ba2b70e1988b0a37adfb6e6e0326d
|
|
| BLAKE2b-256 |
d6d334baf355550d386a2d6db187f57440a5f944f378c4fee874b44216e6ec8d
|
File details
Details for the file oxvox-0.7.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 766.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bc7d1c3dcc3066d037f150066c300a3815f74c55636f37bdb103eaa26d422bf
|
|
| MD5 |
8cd50d24c1c1914d726be34847942880
|
|
| BLAKE2b-256 |
2226cee3d5f3070b2e5f66f23ac825c36f8d4dd30f515240bc99b119e2b3d89d
|
File details
Details for the file oxvox-0.7.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 678.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0454cd9c0771b3542f88eb2e8b9c0082752aee395f625324fd491b184f75f59
|
|
| MD5 |
4a90f9c2c8bb08925a168e83e0078caf
|
|
| BLAKE2b-256 |
cbd5cba487864f6c862d3d5f17c48d54cc7137ed9f6802d36fcece0366b232c9
|
File details
Details for the file oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 506.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65056ba2b0aa60932d68e09c24babaf955af0f49864818a1259cb8d0b80bd278
|
|
| MD5 |
e630f108d00750360c09133e4da1088b
|
|
| BLAKE2b-256 |
851350981f17b1760d3a3bd98aaf7869ccd985e7de00f95fcb90a0c3306f0d3e
|
File details
Details for the file oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 587.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f17fcf2dd39e6f933ff6984319e57f1cee12f3887222e4e1c66a14bfcc74a51
|
|
| MD5 |
6857d35fdb3d533196ffb2f2f2a65978
|
|
| BLAKE2b-256 |
53579ba363ef3db46be3ee9eeec92170d2dee2fb5c36ffc2cc26790380fc9206
|
File details
Details for the file oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 572.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
120deb1a1ea499905b9c8dd69d8489f95762f12f1cf6f556fa45c4fd6a7427c9
|
|
| MD5 |
5ad871f19577dbadd42d6dadd7380247
|
|
| BLAKE2b-256 |
d419a0786bd399b211c34f85344c771e43dafc62235268459630c01d1aad031f
|
File details
Details for the file oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 539.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ca500b15437c1a0fd351a9667a640a2aa06b42ec34e9ee3ba7384c5340b7962
|
|
| MD5 |
5795718b4ebbd749a261b8e2c8da197d
|
|
| BLAKE2b-256 |
6e948bda6e60ec25ebc48a333fd65bb41c3ec830f878a7e84769d4ff7b97753d
|
File details
Details for the file oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 504.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90a4329d4021d0e0531024dee2b807050e98c137ae212535bff4434d19d27ee9
|
|
| MD5 |
d1d8be40451bd8b6c17164270fe6de90
|
|
| BLAKE2b-256 |
e785f0a1934f05a871789e2bfc83587f22c506f73eaa1badc659706aa620369f
|
File details
Details for the file oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 500.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5137af1b9ae89075c429084eb3bd208edd5887928b821692c12d34efe0d283e
|
|
| MD5 |
032f07220ad00ff9d7447e696529de14
|
|
| BLAKE2b-256 |
d383986ddb51d89a7fb60276efba5228d8d96af34a02e2eb562755796c38bab8
|
File details
Details for the file oxvox-0.7.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 676.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf16a2f958c094fe6eef8ab877a1e4f55fbdd7d56e72c16b01a176d78199b053
|
|
| MD5 |
675d87186f84c1f2621103a9b5b0e80d
|
|
| BLAKE2b-256 |
2ef4ce7167218cf5c04a4389ab407cec05c11016a2742c594fe9cd13e734d7c1
|
File details
Details for the file oxvox-0.7.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 707.8 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c538ba7ae1188b3cce1d6884b32f92286a5604b71e2d91b6804b13d9fd6347ce
|
|
| MD5 |
4a0c12c271a87f49c72dd18d36c263e2
|
|
| BLAKE2b-256 |
eadff6d6807069e533396e2bfb5f565a73a5b311faa62859c98454d601f63f3e
|
File details
Details for the file oxvox-0.7.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 766.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42535c53850c4f6d86aeb5b5262925fa11d0f8afb57f7ab18b891afc2f97a544
|
|
| MD5 |
c4984e5d0ef692f5301eacec7aa866f3
|
|
| BLAKE2b-256 |
ad6f135b5c9710b873d6cfd37dc132ce6c582c57d3d5129441a275ca3e99b5c7
|
File details
Details for the file oxvox-0.7.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 678.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6ab5cbd2787162bf3967ae72ea2b9c8c0dc9e24a388d63975594ed56c7acd92
|
|
| MD5 |
f3428aeb078c3e0e4d8b086cdc3046bc
|
|
| BLAKE2b-256 |
74b78746d4ba1e2603a5ea167a74a05973e444032eafb2942a996010dea5a710
|
File details
Details for the file oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 506.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
932f98003aff1726b1f45aa7e856210858b339587f77993cd00b45e9e95c8ff1
|
|
| MD5 |
ba34ac70bb45cd2e4ae9270d7d8e1c8b
|
|
| BLAKE2b-256 |
7c9345bfc642fb298599bd910cb42ddba678f424ea98a5266d007f92981829cd
|
File details
Details for the file oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 587.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e2ca7389f4a9d24da91878c18588983228da5ed20a1874e884261ee947d064e
|
|
| MD5 |
92acf2cb4c75989cfe7b8b6fb4319f5b
|
|
| BLAKE2b-256 |
87a5965b7b29daeede2aa9877948786dc07696ad4c87f12a78c22a98a97b0167
|
File details
Details for the file oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 572.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c96c16c62ae0796420b6d3809c35182718ae50d3fc22cb653f2fb1ab13c0075a
|
|
| MD5 |
42cd5ce56aa3af149a422d68dbf084e6
|
|
| BLAKE2b-256 |
49eba0da7cdafcb5d1aeb0fec80338e827ab99eb694422398de0b134bc067477
|
File details
Details for the file oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 539.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
037d2cbe795c395efa7631fd45baf35c896fd5265e6261fba4f953eadbf3fb77
|
|
| MD5 |
7ae7833a5ea79dad753012f8dc52340a
|
|
| BLAKE2b-256 |
f13d7c44f0e72411f6b4a7c7b7084d94cda487b033fbda6bf65e3abe875c2c3a
|
File details
Details for the file oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 504.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
073ca4d27adf8c9d4acd2c77771a9e53c6302a806fa64496802a6e28142d7cb1
|
|
| MD5 |
baa138ea5d05745ee9f8b0908df840e8
|
|
| BLAKE2b-256 |
56aa42493c20fd002899faf0c9a51f74098f698ce6b73a4192ac4e8d334584aa
|
File details
Details for the file oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 500.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
818d860b084dc59d1f4c05edd0e2010a51492cb4f34ac6cfe4f222e257723ebf
|
|
| MD5 |
141d19dee0bd31d290ecc6fcbfa190bc
|
|
| BLAKE2b-256 |
0878056900c6493d31cc849906ba1fe76fd8ffbacb34784962aadb30475a7666
|
File details
Details for the file oxvox-0.7.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 676.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66e0758e6a9058f6d5e04482ae173b2156503cc4bf51d2738a40a5684bdc5d22
|
|
| MD5 |
4a95cc6a4bb1d942677ea52b478a6fac
|
|
| BLAKE2b-256 |
542ff53b1eec9bf4c27093d5bdd4b17d4f0dbc9461c4cdc66e787f028a8ce174
|
File details
Details for the file oxvox-0.7.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 707.8 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
313dbb1991026b26c1efb33c4c4330ac977dd8d1a54978e2efdf6b661aab0564
|
|
| MD5 |
7ec3be379752e6544cacf2ed4542bb90
|
|
| BLAKE2b-256 |
2293db5277d535f23ba2fa286ff561646c3857e091366ebc7c6f3fd5e0eb87e1
|
File details
Details for the file oxvox-0.7.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 766.8 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f827f2fb6dd0ff63015d34a1523491fea5215012b7afbd16c849efecf8693c98
|
|
| MD5 |
c61d009b4c184dfdf20d155c4e26dc1c
|
|
| BLAKE2b-256 |
e5b643b8ca854bf6eccb9de55880722062665c7ee9f2a33ce44b403f123d877c
|
File details
Details for the file oxvox-0.7.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 678.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
070284b51e4e43baf9f671b8b671e8746c5f1020bd0258b74724b83652955020
|
|
| MD5 |
6c4a883ef7351cbc5ae6e091f8e901b4
|
|
| BLAKE2b-256 |
fbef744e4face6dde68d54512214e0d723e14972d2ba4eb6bc32cee90a0c0962
|
File details
Details for the file oxvox-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: oxvox-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 587.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d29970807ced45ce0b1818a6e6532a383d3b16ae7c555abaed8a2588f721d8e8
|
|
| MD5 |
98c4ed0686720f7198a07d2713be80fa
|
|
| BLAKE2b-256 |
205fd8cd9fb37305062f33c2dc20bade3b5dfe6ca87594d05813e61f449dc02e
|
File details
Details for the file oxvox-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: oxvox-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 572.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f80a78037630870f79c9a800a38ded6abc4b51d6c53af74e15eb1ddce103cb45
|
|
| MD5 |
7e3e4d451faf22e3ccbdebe44a5a97d3
|
|
| BLAKE2b-256 |
f5d4d9c911db9f5b829b1030e279152d310482c437053f060605508d70417bb5
|
File details
Details for the file oxvox-0.7.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 504.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec2ae7249ab722a528bff374c617770ba9b363630650a56f0d7a1d0fc20c7818
|
|
| MD5 |
a56581e965136b0dff1d5ddb57b04dbc
|
|
| BLAKE2b-256 |
a38de6561dcfee77c7aabc7e272868ddd7b9865277a8933901062bf855a5251a
|
File details
Details for the file oxvox-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 500.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecdb10cee0466b162d20827330ee085c685c424d915abe91dac068801b344751
|
|
| MD5 |
b42b684d1ad67f8a60772d4170f78e6a
|
|
| BLAKE2b-256 |
85c1f47d755bf598b27a3c576883a1931a7dcb16df698b6421218aa521722dab
|
File details
Details for the file oxvox-0.7.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 676.0 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dab3ef2820bb0bf326bc76cb78df95c5ccb757d7e3e3ffacacf8b0bc321e2725
|
|
| MD5 |
e2ca19b292a7dbe2fe87514a6e745253
|
|
| BLAKE2b-256 |
34a5b80e4055bb203d8cdf059d310ecdba4009c9e4387e486884c4baf6acb7f7
|
File details
Details for the file oxvox-0.7.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 707.3 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e105ab175b709e0d7b3bff9c74508e211c732181bcb6fd980426c56091d9cdd
|
|
| MD5 |
a865d142200b83e46c348e6b8d5e7af9
|
|
| BLAKE2b-256 |
742cb73d55f2f9c4a12c7a6828b7350841ed28d20c09dae817b6b7e181c36e0b
|
File details
Details for the file oxvox-0.7.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 767.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e6477d453efabf0d72110be7d914e67476af05af6da89a2e3b7afa0cf3b3847
|
|
| MD5 |
b2b0b8376a3e7f5d8d840fb01d965977
|
|
| BLAKE2b-256 |
e74e24f7ddd694346f4d08644fbb39e4b2434b1954f223790ad4717b4fd56cf3
|
File details
Details for the file oxvox-0.7.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 677.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8182f8b3e17485a804729407fa44f35efabad7e3303b8265ac975f35d262f47
|
|
| MD5 |
47a54d2c8a22af3258bdcb260a2be64b
|
|
| BLAKE2b-256 |
e35dca22794c0e1048455e2220839e71eed394850c6e0549e5a2b88d50975c80
|
File details
Details for the file oxvox-0.7.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: oxvox-0.7.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 586.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eafbad56327cee759a7b574256f1337b70f1da3fe97ca0e739f89a7050747041
|
|
| MD5 |
2b521358c2304caeb974fa9820a7a048
|
|
| BLAKE2b-256 |
faadf43862d84eeb87407a5645384f277ca17db1cdb25a18c57e996f02a94102
|
File details
Details for the file oxvox-0.7.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: oxvox-0.7.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 571.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c838914a858dc2d505927ce89f5e3330d0b678331819628a8c4c1fe35005bdf
|
|
| MD5 |
9c59b890e94a3d235b9308486a67137c
|
|
| BLAKE2b-256 |
d3572bca02443a569ad2d82468a68e898026e3f3d08ff09d2e0eaf704be642fe
|
File details
Details for the file oxvox-0.7.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 504.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
492afa4a794bf921a9513acc2ec7a6eb0b0264eed035610f2afab930a337218e
|
|
| MD5 |
4919fc35499ebda50c57dc4be06bd50a
|
|
| BLAKE2b-256 |
cba83b3ae0be910094fbd7a97ca8200aaffac0c43dccecc1478bcba1c34cc216
|
File details
Details for the file oxvox-0.7.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 500.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b36435bc94ca8b4b84170384f1214976c9b2089b35eedbe2026f8ab1a799d6d2
|
|
| MD5 |
c45d418b3551ef4c5854e5e99bffbd4a
|
|
| BLAKE2b-256 |
c1a480a6f89098f823e93c3ec30340c32328d4ec3dcc77bc8c5ca34acdd08119
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 314.1 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84f4cc180e1326efc0d70ea8412c18af081135dcaa049c0eac67db9443a57a18
|
|
| MD5 |
cb243b832a15fb4dc40ab5346fb25b01
|
|
| BLAKE2b-256 |
ab519902c65b368cc5286f6f912c6835c5390fbcab322785921d8c0d4f971801
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-win32.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-win32.whl
- Upload date:
- Size: 295.6 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfce2ffc7f0b93806be9f1738c9075e1509cd98e7f19593af355002343095239
|
|
| MD5 |
de8d73837eaf974ea29ab9e961f76490
|
|
| BLAKE2b-256 |
bd2860d4835825444d270ebbad4b76332caaee2f7688ed2ce82ce446fdd8506c
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 675.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63108c4cb6733ecb754d3564e2eb305d5b51aaa53dcfc56cb47a62cee2ecc1e8
|
|
| MD5 |
3d1b9d442c953d40544e0f2d146695cc
|
|
| BLAKE2b-256 |
0ba135c8c5a860d26d2841518361f2401b638cfb0aaf4fe136774c6b723c9fb5
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 706.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5f031f969dbff80a621a5d2d3b3e8997c94b23b69e665ce2e90c816ddd0c72e
|
|
| MD5 |
7e0d2b8c7fa592733da1173ffe478f38
|
|
| BLAKE2b-256 |
5db1f141d2675fc0ac603e139daaee0d93d9c59bbf9afc065b4a03f53b260252
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 766.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
085d51f05ff50971f2d3514b853a7562092cf0a01443db7d5c6853861dccd485
|
|
| MD5 |
f865a367faf875ef89cb15e904b095cb
|
|
| BLAKE2b-256 |
bceb129ffa9a5f0deb857aae86d84edf151eee9fc21ab5b26a6d6ae3e7de9bdd
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 677.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07db626add860aa9b9b0d0f866bf8b5f49e6838959a75f8eb095c0011e19f9bd
|
|
| MD5 |
d3702a49e32391ff8233af082f9b3ad5
|
|
| BLAKE2b-256 |
5f1dc82d4436f7c74face90c0f9d46add2825f2a38e015347cc09106c098f15d
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 505.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24a66e5c6a2605a4fba9df7038b6b88b9a6f43094f631774ee1f1c6694c3f0d1
|
|
| MD5 |
f42c18f27ca271f320fcbde3d0a07100
|
|
| BLAKE2b-256 |
1c0700989382f0de81fdfd5fb8d10e6166d9b5828be154f92cc7e14b29f6ce21
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 584.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbf02e128c93f6fc9c1a6c04289ab078be0ef8b522c3763e76e5ecba7e71aae3
|
|
| MD5 |
666ce6177183a2fd0fc2dfac5b712ab7
|
|
| BLAKE2b-256 |
3182b0f262eade545f29109bba09cfad71bac658de0d845ce3c1f1097a564aca
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 572.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f33fb2fbb560fdacbf9041ea27b16b16705b536b158c6f58e2873362906b7cf
|
|
| MD5 |
0efeef9fb9c8d5fdea9f09fb6bb56a3b
|
|
| BLAKE2b-256 |
9f3a5e9ab8a35692438b656e501082be115e96937a5b8d80b5fee1ad1e7b390c
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 539.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30565a11290b34ac14315187bac8cd3b33f765213b0cb9d852818a7b9f90d492
|
|
| MD5 |
c13c49bda5a00f46e2e38bdcda0f5aa0
|
|
| BLAKE2b-256 |
1a9743b872aebc2b79c24c2efd460fd475e6e440143fa41dc4b9c97cd376a13a
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 504.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ed1b15cfc168fc5be0b8c550eb4fdc4a1b9d7f51e67ced87473af9b01ac0b62
|
|
| MD5 |
f87f69e967189ac264c7f6bfbe04d9e4
|
|
| BLAKE2b-256 |
dd711052caf467424cdeca25b97b844adb47f5ccbb533e2aee531e4b8c367f7d
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 499.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c5b6f5f5151e976b7441b86feeed0858067f97999fb0c64b9549f844bddd8d1
|
|
| MD5 |
382cccc23fedd0505a4eaf90dd747d49
|
|
| BLAKE2b-256 |
39eef2e028455b1c22cca0f5c72c0bf8b9b533512e90d32882219d2edfb51de3
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 442.5 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
042541442338f3a9147f2693ba2c816727026eaf976a150b1d78748e1565f2f4
|
|
| MD5 |
5767a089e21fc2da34303b7472d3924c
|
|
| BLAKE2b-256 |
69c311e1bb74f32858cd5193c5260d074efbc05ea21e0d35dac0d312bce969e6
|
File details
Details for the file oxvox-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 454.3 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f22b1ae214b0d41406e98d23603ccb05e3dc53b4eb49e0dc439fc68bb39df33b
|
|
| MD5 |
566ae85f80c1aeeb7055f23cac4d378e
|
|
| BLAKE2b-256 |
79406fbb5b4f8b4654b0e8bc051bbcd316b91d57ddb376ae0438df2c4496dc06
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 314.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f181bb153b9e88de698589ab885015fced698ca73791e91ff7b4ef9a7492e3af
|
|
| MD5 |
62c8f080409e1e997c8f8618da32cc89
|
|
| BLAKE2b-256 |
ae2270f38416c0c42b82ebc542a93989fd32f6fdc05b6144a7e010014d125c91
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-win32.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-win32.whl
- Upload date:
- Size: 295.6 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94b0ccc7b69fddb1515067be0881cddfc411f19047938ffb5f8b78bd20a3f724
|
|
| MD5 |
a40b02fbddab1034a8ff8d96d049d36a
|
|
| BLAKE2b-256 |
1e4733aeadf95a818c1579c093891a91a0d9c56e87475ee27805b098deb76e49
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 675.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b77431c8d7a3f78f8b862c38fc5110f49b9e29b6b7edc1b4dfa742089650faec
|
|
| MD5 |
0246fed1539537e24215864a81185987
|
|
| BLAKE2b-256 |
40c1c58e2f712cf545faa76f3bd6e862d2216d34f2f6c872b195d4e29191c2a5
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 706.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5638701f56b3ac05149cf42e52b5090728366d701086adff987870de9fb1b815
|
|
| MD5 |
4bacf915827b149d44c19538f811814e
|
|
| BLAKE2b-256 |
bccfb5ba2060cbb2bd32bab56f51f367af9d8c95d4298a95973dc1fb455d3375
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 766.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d794a7eda2075fde0f618354fc29a7ee2da92256f41d8099befe10859a7139fd
|
|
| MD5 |
fe7818424b49d2f525b161a1e5916a3a
|
|
| BLAKE2b-256 |
c2a70ceee8ebbc0df7ca398e0d48e63ef49766db5c39eaef87fbd3722ce19d85
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 677.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7d293ee2284866a221f64dad97bdbf62ced909e2c9989401777044dab8580f3
|
|
| MD5 |
382cff369de076643e0d605482c7cc08
|
|
| BLAKE2b-256 |
b77e1745a146012cf1a781b3386fbbf151b77bd33130bef98d990af2e8b4d427
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 505.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90b063b22a1fcb497bc28c44ceb24bf62188e1dd9c0b09c991d403254c7b05e4
|
|
| MD5 |
e174eb7e75c67132ffee9aa5da8984cf
|
|
| BLAKE2b-256 |
e7e0047a2d42477ba65024e79519f0ab96469caf38e65c3962d238a9a8e7bbfe
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 584.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f97556046368de615b264dd0d7e885d8001ddc95aba40456e975676177ab5cfd
|
|
| MD5 |
28ecf9a01b93fa9ed3b2bd7a5df99811
|
|
| BLAKE2b-256 |
007b71b785bd76859a60d700efc3eef77a32f4395f3c120644ffb5c42402b9a7
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 572.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bad0bb79644705520174e2c9ae7507349ed60b77b36fed97ed84a849725c73d2
|
|
| MD5 |
f67b3d491dee031237ef644a1c5213ea
|
|
| BLAKE2b-256 |
63809b69319ea8b8c5e0b726916db0daacb55d53f5f7407ce4b1192c51085d0f
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 539.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edd4def5d5d08aa324e95b741dc1ef05d5e9e9829b96211c9d35471f3218bad9
|
|
| MD5 |
2eb9408d0d06c1912a3319d5e6f3c936
|
|
| BLAKE2b-256 |
19613604def2d855a25f01e66ef787b7d36992be1e02d73d1d70420eaaff6387
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 504.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2009f07cf3c58e3c1ee602b7b130035d507bcefca9fba1f6bccb8fdf046f60b1
|
|
| MD5 |
978a4a6699ab32ed837a33ac8b4f36ff
|
|
| BLAKE2b-256 |
95ef218dda79d27996e94c8ab7ff1467c93414561853106a9c259062ea2065b9
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 499.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39e07f71cf49841f30bf65c89955af18a151566d6eeb2bebbca42777dce2b1ea
|
|
| MD5 |
db4061964f63187f9326d8abdd051108
|
|
| BLAKE2b-256 |
87039a7c2704a48731ed43ad5c59a9a1812d2697efc0258cfa941d4e642b7624
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 442.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71e06980228c36172f8435d19f58616e163d378214d5d0cfd1b8c7071bec75aa
|
|
| MD5 |
a5aaedb8ea23a2eef4cbd5e4ad83315c
|
|
| BLAKE2b-256 |
b28b5b77a7201aaad239fce8a901ce0ebaf35c04412a6e8dc1e7ae2a53e0fe8c
|
File details
Details for the file oxvox-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 454.3 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1775891fd39ea49389628db586bb155759b36c9db135eb00d474c0f3f79e7257
|
|
| MD5 |
92ea0912eee2023b884bcb83fda07a71
|
|
| BLAKE2b-256 |
52093d818f1a04e106fe7e9f3f5d88456194706ac3f552dc16e792257048b0f6
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 314.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
471b87323712007ef7b0da1230627cffea27abd5495a5b9b1099f124687881ab
|
|
| MD5 |
8bf3d7a9b5dd12a6c69a8d2ef1beb42e
|
|
| BLAKE2b-256 |
e2827ac8da78a4be5dabfacc835c88c92a8087357759a24079343dea19ab04ea
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-win32.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-win32.whl
- Upload date:
- Size: 295.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf33dfbf951574c13735de68de9afa996022379b4858555cf05712052ea15ab1
|
|
| MD5 |
6ab2951dadbe9ab15151870e5547f1a3
|
|
| BLAKE2b-256 |
0cbd3c345a12a568a39466d79ec2d1019b6d28c86bf30b724392b2d27166b725
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 675.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2355ad9efb5791b4cb96d2f47bc619645c9686d92cec63f6fa4039add5865845
|
|
| MD5 |
132515eb0a812ef9d286b0fcfcd99b69
|
|
| BLAKE2b-256 |
3349a9fc02c102f21bc9b09bbd4e287ce9a1f306ad3ac9614c5052a44b9c44a5
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 707.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c51988e6101eac87b6cffbc6ae1c2d7307d047e044c4981834ec124093c851a1
|
|
| MD5 |
62bfb462f4254ceefebcedf8093ffe18
|
|
| BLAKE2b-256 |
11f976b08666f21719927f0bdf64db46fe7e27d1cc3dc959571703f854f5a252
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 766.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e54a77a473c468af558fca7bfd1f7e76065942b0ebce2c2f96c6212e6bc7b0b9
|
|
| MD5 |
99a9b6597f77c56e9e82cd84293f811d
|
|
| BLAKE2b-256 |
95bb8253e8e4bbd4803d30f64565c1ae3ec44177b22c36e349cad264329c5ef6
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 677.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e13bae131dce6120e6572a806c62a0b8964308e5a807b9dafb5db9960a6a7638
|
|
| MD5 |
11f8e182a4e3a2d66d5a2fbe75e706e5
|
|
| BLAKE2b-256 |
6bc9a05765b27f8d21b355d455bf4cdc07f475335b33dffc515676430d64c479
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 505.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5dc1acf9bd4acdca3b0c553186f58d8092e0e8818b72f2f20cb692e7026629df
|
|
| MD5 |
e092d670528c5bd4660984d271c40fae
|
|
| BLAKE2b-256 |
2a33620cfa74d5aead2fec2b2d1a58018071c86bc6a1f1ea1010264b582dab8a
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 584.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e545177d3bf9e94160260b91f7fe2b3549138cc9ecebac5d6a8de441551d291e
|
|
| MD5 |
31968eb7a86be1893a00db9d90d306c0
|
|
| BLAKE2b-256 |
4c66e6fb8c3911149208a61a8976133d97dfc2609413b0de5348fdc3c48b0164
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 572.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f190d894225c952068a7f011c5ef1d6985654be6822170864ee22ec0c6f45dc
|
|
| MD5 |
257304a30eb15843f59863f38acddf86
|
|
| BLAKE2b-256 |
b56f896db1d10071fb7ca6a51e8b73ec552f087449a4989cde658e3bbb65c566
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 539.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23de446253db7f819213cb833a8dc2f9dd4e2d524ff77d4cb8b11b5f56372b32
|
|
| MD5 |
9c287535b93704d96d6138f8446da401
|
|
| BLAKE2b-256 |
529195b8b4563c343f39f43ce8cf1ea1d555dcc7fe6c5b5d423c3c35cf5248b5
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 504.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
328a5d8e04d07b656b2a9111a6b6f3c8b2be0f32d1c26668f313e82aaed2f7fe
|
|
| MD5 |
d9cdaac277cb5c0108e3aed65d3e5d4a
|
|
| BLAKE2b-256 |
24462146d47eabd3181e59382e612246387a448ae6f5c445ff85a7f8197a6d0d
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 500.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0a00dcd1240312e57271eff19ff56fa646ba178e4e69880b21c115f62631701
|
|
| MD5 |
95c097921ebb4878c709dc88d0d944b4
|
|
| BLAKE2b-256 |
7b916635e43e62323fed7a536f446c44c0b8345f213ffc6dc02b578409e560ef
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 442.5 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f205cf6e90d8e22b16609aaa6ab6f33789af853f2a9aca9723ed0ba0323054f
|
|
| MD5 |
6eb7218b7dc09ef7880c14f64956c7f0
|
|
| BLAKE2b-256 |
a2d495dc3d133f8a60f900b84406a9a91367066a8b2f96fe72f3fcb652adaf01
|
File details
Details for the file oxvox-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 454.5 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38b4f3c6b5edc0d48945b8ccbd8cfa1a5fc8e6176d45fcfe92f0733630cf2c52
|
|
| MD5 |
acbfb1c12ca75a29763589b774dfeac6
|
|
| BLAKE2b-256 |
71b5126cd2be737890956ef21b216f5856def307495d700112466e76aca568aa
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 314.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
306f8abd04b48eeed91c68cb7ec704f57ad830ced1d51c0a0caca2f951292d6a
|
|
| MD5 |
7b50df253536caa42b7f20f828227314
|
|
| BLAKE2b-256 |
920360d56599b96ef165fd585d289b99c276417da130fa9401fa12ab1d27862b
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-win32.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-win32.whl
- Upload date:
- Size: 295.8 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97a1b3d1288600e2ac547e54f7d6e524bed17b004960993959609864d638ec90
|
|
| MD5 |
0c3cd1444a117f35a19fcda092745629
|
|
| BLAKE2b-256 |
b8b2e09f7abc4b4fddbd101b63d84118078d61aff06a6346c105383f551baa59
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 675.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39ab07b20062f5bf317bd76e4bc7a0e2af86a2029517e31ea4872b4e8302b846
|
|
| MD5 |
f482a28b8e067f69b80edc6cff1dd434
|
|
| BLAKE2b-256 |
34b56a87a80a12e6ec81c5af29e1c81ccdc11c6e12a642a00d353b0cc5d4416d
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 707.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05f04e8ae7651345a1f2e1abb4e30f9f6d3c40628bd36789757b4fa1d96c7d8e
|
|
| MD5 |
200b2ab8cabf9e05db876b3ac1d6b396
|
|
| BLAKE2b-256 |
af2dac37c212d69c80e0d1713375172d2cd52dfbaf546a5b12de7941bf8d3209
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 766.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16b5b2c739cf9344ff3aab3c70e6edbca87b1eed55b8ab7b14c2eb4e7654972e
|
|
| MD5 |
67052da48626e6f18d6648fb01fed925
|
|
| BLAKE2b-256 |
f2e6105c83ad1a0451a057b95e4f2436fc4f680fffe845e3e908b0304cb10a6e
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 677.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21fa96734ab66298d71560d50b5ae37666e65488ca0c55c9f0b14f65876e20a9
|
|
| MD5 |
7403da63e7f7634e0d55cf44c0428166
|
|
| BLAKE2b-256 |
625cac35a7c224eb9997c1b7a7899fe67a644bccaa31f10439e57c1c54aace62
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 505.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
039ea3d9ad42a61664cdd6d0e55f0b7ca968c0f6ff5369cf1c0fbed81904c773
|
|
| MD5 |
3a6daea9af82df138f4a68f08dd8b66b
|
|
| BLAKE2b-256 |
04728a4357c16cb30522e9cd5a962b5a2b97656a7893019e154362bbf4a4f1c0
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 584.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e3631f80794e9f7e1eb81519b6f8a0f643e1350945cba5b9fa7bb01bead3025
|
|
| MD5 |
f123e3b3e564623e4bc52d42b69a3d8f
|
|
| BLAKE2b-256 |
62e4c0ef2b3d411d235df59c9ba30c92095c1deea14079c379340c9166c2b43e
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 572.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65e63c40114b14b22a6c64246a525a90492e052424416feed11a80e973130b4e
|
|
| MD5 |
d9de84997f5f8e142479ac822663d201
|
|
| BLAKE2b-256 |
bdf266a8348d4cebb6cd1544b106bdef58ac20b4ef81c970cce7339a4b89d732
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 539.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21005ba0d80e72a89a221cd5f34969ab2d2e74b1bf1c844ab8d8dfc3816d2d63
|
|
| MD5 |
71d0124e340350257eb87ed1a0419889
|
|
| BLAKE2b-256 |
0ddf4f69f3ce2dc9b4a9313f409dba20f9bb12107520077c2b5891663e3d53cd
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 504.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce1bedc8b1d6fd49d5a33b800e7cf94f4df4215fac9dadc2e424f0ce9cdc08f3
|
|
| MD5 |
78a0574e7203017655c731533fab1cbc
|
|
| BLAKE2b-256 |
870b8580ba56b85eecfa8c78e4c0ac289ab4ffca8f6dac7b0d2d8c0f318f7ab0
|
File details
Details for the file oxvox-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 500.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19730721796c791317f65ccdd02f133b9304f15a38e197bdd3ebb400a3e99e95
|
|
| MD5 |
25a6ff36728aab22c938f2eb84e9dcc9
|
|
| BLAKE2b-256 |
8e55f84384f5dab024887d092b150290aba2543d9fd99a763fe8333e025b7397
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 314.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
651b2d5f28b79b7dde9f00127488e3d3cec9e022a484583e8ca2bef2ac3c77e8
|
|
| MD5 |
a3a83979a74465b6f19b96c0517020a6
|
|
| BLAKE2b-256 |
f7dba057f6bce8e6b6f994fb99364837acfdbb73177fdf0b0478c8160cf25660
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-win32.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-win32.whl
- Upload date:
- Size: 296.1 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f2c58006914f227d2e851665e11e768c84e0df75e6beb1b38d4989a3b1574ef
|
|
| MD5 |
f475dbd021fc91e045ba09f4342f68bb
|
|
| BLAKE2b-256 |
5065c4ce4d189d07a578bf9fbb1876cf8366508c69d89eab3b5d91898179eb15
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 675.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e1acc75652bfb1c7f726e3d5477548c05467ad8fa45e9ecbc9b2e2b6e5f12da
|
|
| MD5 |
0c97596fbccb5bca5d3bf413b8562e42
|
|
| BLAKE2b-256 |
ceb03aa3fcfbdd10bab01d3d7f02c73938b1bb680b7d2ca10a83590a0e75fb1e
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 707.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7e77826c42525f89f047a71cc37165861f0619ee81b5547f1a159442c35262d
|
|
| MD5 |
694c6284acc7c01109f508f1e9dbfb6c
|
|
| BLAKE2b-256 |
b5a1d6232ec48d44d8b029942237f1494a4fddc6367c7b8deb6c6146cdd144ec
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 766.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
610bfcbab27062a42b850634780ff3d311b52cacc4dcff18a15d3a57c4ac478b
|
|
| MD5 |
850627c1b948b9d27b5ab960d90cd51c
|
|
| BLAKE2b-256 |
ca9d3c0f24e4dbb7687dd9673c8fa935c04bcbb05c7a1cc791979a4ed8591ece
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 678.1 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08963c941a2ad3a421ad449c50976861eb7e1682cbc389aa0aa7261b06640329
|
|
| MD5 |
a3194569ba21a5be8a6ddf6308beec68
|
|
| BLAKE2b-256 |
7097c8b412aa725d0f00ff93feeb9a98b7a523b795cc619e622d6f0b3ea4f35f
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 505.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1f588a7f4d9645a5b610c9b4bbc7016621fe55062de6b70dbc449de8f2678a9
|
|
| MD5 |
ea0fc3889ed5635747d57fc50a6cf958
|
|
| BLAKE2b-256 |
c2eb937dda20a3dca907a305825cdd47b658532290a1ff7ffb81cc09d6025f6f
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 585.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d91a1c54c463b02623b04dac6a08eeb0cade2e7644a94c391610f9963b4c9bbe
|
|
| MD5 |
0c2e3877df90f021b6417e940a4ea839
|
|
| BLAKE2b-256 |
c06929c4d3566fae24f079b85cd5e34074aed862c5b654d1f6ddb6c3d1e2b12f
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 572.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02b1f11b6e5785a31ff9e79388caf74ebf92b71d72dcc984495186f7899a8c1b
|
|
| MD5 |
41ec22be6288f572b0d4c3074e9d9c79
|
|
| BLAKE2b-256 |
7f7e529db643fbf54e85e663bda0537f2fec16e658e45f7dd180916c364069fc
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 540.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02284774703182f214075a90dbab6081b31fb1eb5836953849564953eddb2dab
|
|
| MD5 |
a088aa1f30d096af8b3681889d10e79b
|
|
| BLAKE2b-256 |
83751d06c696a877d7c1b60894e65127d5893392bfae4ddd72d65dbae78dbb3b
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 505.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c9ee76c3ae31dcd5b287d013b38b3684ce8a1aa7738a6072fb1ad4cec7a908c
|
|
| MD5 |
a1884b5dde47196ac9de806228d4b0ad
|
|
| BLAKE2b-256 |
242502b767684445eafc4b662c116f3f1e3af4ff13c623d053cba526295c5e24
|
File details
Details for the file oxvox-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 500.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72f9d8370405194e36c71e7343f0331feb531c953c749089c2a7baeeab1fc974
|
|
| MD5 |
cd424f230bc7e33196b13e710c94bb6c
|
|
| BLAKE2b-256 |
020bd6448f376c38ac334fda7450b4cd74975c2b0d81fa7382faf896d8302b57
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 313.9 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75eae8d361930d529fde7b805a87fbf1416e6f63f10eef0088b292376bb7865f
|
|
| MD5 |
c0dfca6444a3e6a1460a2c7c89a8e94c
|
|
| BLAKE2b-256 |
c73e90ba7a433b1b0c001d270aa295aeb9e733a09e67c795ae17a259bf95e35a
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-win32.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-win32.whl
- Upload date:
- Size: 295.5 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
661c0e54cf763760566157ab5d2c7df38ab25f8a0e400feec28ab901466b0bed
|
|
| MD5 |
650c85d1f619bcf4bc05e11908cfcace
|
|
| BLAKE2b-256 |
8637feb2a0e535043cf44cda4ec7a482d36161f0c1fc57fc04b1746ba19ee8de
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 676.7 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13a872a503b35e70b7447d82a30e2426117d46e1a47d0b412af6435fe20c24e7
|
|
| MD5 |
a7f73226088fd4e4a79288587e32b648
|
|
| BLAKE2b-256 |
6c2482a638372620ebc70007f039a7066e4de18d95180c7ac98414db5b2c23a1
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 706.9 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fed016b45367ec2f2fddafac28174b9fd29d5e51406a659f83de9d055503e9b4
|
|
| MD5 |
6d6669a4c6bf30021439d39f008ea70a
|
|
| BLAKE2b-256 |
bc904ce2d17b3588dcb0618188eba595fbc1a492f0f842798776638d2c46d70b
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 767.3 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3a93940e3e6796d29258d6bd61b93da44ee196cb1b3aba163aaa0025cd22bab
|
|
| MD5 |
684a179010eb29d7c5c39323a2e3929a
|
|
| BLAKE2b-256 |
46895b1a9c1da88b6cc28713ddd89012d467cd24e276fe17c3afe0bcacbf4939
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 676.9 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03fea4e34ac37d0462f10c41757ace99bd9938ba39c663d9c1a29a484b92344d
|
|
| MD5 |
b96c80f96d820fb00f105b1ed3ba3e13
|
|
| BLAKE2b-256 |
848d768c42ec087ee920cd9ed0e518c88ce79417a5ed6f2190250b47c3f8f4ec
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 506.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d1c347998b463a08e5d46569164999deae1dc11fcb689865d7d365bdfdbeb3a
|
|
| MD5 |
e5bfff723bf6a20005fa05521ee3b26f
|
|
| BLAKE2b-256 |
9a3505b20d3e3fc50afe3a9b01116e09e9ec0b8fd262e4f54a92162a59fcc641
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 584.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77e138aa7b489bb616d4156f70bf5d9dc53e7b1bb89cae9806888f4310cc6c05
|
|
| MD5 |
ab504fc7ea87da03f1a7f5372b543f2b
|
|
| BLAKE2b-256 |
d1f527ead9dfd8fd1fa390d390116c6944fdfb278418abfd07eab0a1603f817a
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 572.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2b5d6a34bc15f0624144ee18c046d5817bc787631ee71db5bf131b7937f6f48
|
|
| MD5 |
286dc84242223301e8d30d85443a7f71
|
|
| BLAKE2b-256 |
dcef88a695cffa4e2d0204952e8de79ec9b0450f0491587d3a96921bb605bc50
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 539.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
919e0ad6133d8c55675f44d716561f7912183ce53eea61b591a88030d2071b58
|
|
| MD5 |
2f72f4dee40f840aa6282cb6b7c02ebe
|
|
| BLAKE2b-256 |
57521d0d5e57a881b579f61810d921a60f1adfdbf738be23990df62384714cdc
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 505.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e01a426d075f33d5e6945073272660160b3f99ec57181cdd194d88a379d6241b
|
|
| MD5 |
d48d35897d32f53df548d13d2a4fed7c
|
|
| BLAKE2b-256 |
ac57d7e76e16e1a529329ba5f2eba57b383ce94a0906e5c16120e4675c644554
|
File details
Details for the file oxvox-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: oxvox-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 499.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad4f5bbf172c0aafa6ca1e5e574f5602d4f09491eecb0c7f2de5e1d7b189aeda
|
|
| MD5 |
f07e7d7fca408ee5c0ed6b99a0b62f47
|
|
| BLAKE2b-256 |
71a1476dc28a591ec963ff7399640068ff67b3a72d4627fb1f75ad26ec779ee9
|