No project description provided
Project description
OxVoxNNS - Oxidised Voxelised Nearest Neighbour Search
A hybrid-ish nearest neighbour search implemented in rust, tailored towards consistent performance, especially on difficult inputs
Okay but why?
Suppose we are searching for k neighbours within radius r, OxVox can operate in two different modes depending on desired behaviour and performance (see Performance section below).
Inexact Mode (OxVoxApprox)
Inexact mode is the bread and butter of this module. Instead of finding the k nearest neighbours, OxVoxApprox finds k roughly evenly distributed neighbours within radius r, avoiding a lot of expensive L2 distance computations and neighbour sorting.
Exact Mode
Exact Mode behaves like a conventional nearest neighbour search, with decent performance in many situations, though typically worse than open3d's highly performant NearestNeighbourSearch
Usage
Basic usage, query a block of query points in inexact mode:
from ox_vox_nns.ox_vox_nns import OxVoxNNS
indices, distances = ox_vox_nns.OxVoxNNS(
search_points, # (S, 3) ndarray
max_dist, # float
).find_neighbours(
query_points, # (Q, 3) ndarray
num_neighbours, # int
False, # False => inexact mode
)
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)
from ox_vox_nns.ox_vox_nns import OxVoxNNS
nns = ox_vox_nns.OxVoxNNS(
search_points,
max_dist,
voxel_size,
)
for query_points_chunk in query_points_chunks:
chunk_indices, chunk_distances = nns.find_neighbours(
query_points,
num_neighbours,
True,
)
Installation
Precompiled (from PyPI)
Currently only available for linux x86-64
pip install ox_vox_nns
Manual
Checkout this repo and enter a virtual environment, then run
maturin develop --release
Performance
See performance_test_ox_vox_nns.py for test code.
Rough testing suggests that OxVoxNNS outperforms KDTrees under certain circumstances, particularly with higher numbers of query points. Rigourous testing is a WIP
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 ox_vox_nns-0.2.0.tar.gz.
File metadata
- Download URL: ox_vox_nns-0.2.0.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4005a9d1f43b0a61d6aaeba6b9426d862caa12f1af000ca641d53e54c48912b8
|
|
| MD5 |
27eeecb485d681b76cfc047de68e57b5
|
|
| BLAKE2b-256 |
b3236f45753c3844397235db06df350fe3e1f57676a20c37cc185ab654713327
|
File details
Details for the file ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ba00a5c60fcfd39dd9d24d69626db2b7b8ea995953c6ab1e1a6dec747088950
|
|
| MD5 |
aa9c6a29e76e3f870aeacb02641768e9
|
|
| BLAKE2b-256 |
7e6253310927575be315b3f86be9faac8fe8c6e35c140d099c532550a8786a19
|
File details
Details for the file ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e584cd8e2fd1716bbcdf0bef9bc74c0c83930b891b10c60fff6dfd40d21045c
|
|
| MD5 |
3a9f11c5e383154932860e0a4d3a2449
|
|
| BLAKE2b-256 |
c8d6d701e7bfc6f1a4ef9e9ea941f9399d339e55bfd52ae21c9f85bb83faea01
|
File details
Details for the file ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb4c19b80b5a0cd098b532684b7dad8b82c9fae4db65b383018a3a92048918a2
|
|
| MD5 |
ca45adbcde67e7229446b821bcd2300b
|
|
| BLAKE2b-256 |
bf70dfad665c8f64fece58f81fafb8d4a50f1ee26ec0967f01e5ca5b1fdca3cc
|
File details
Details for the file ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a2704863e2b60472366100aee276522a748ad338d83e56fa85c3ff5a1e4d3fd
|
|
| MD5 |
cfba2309fc3102b60b890d4bb8565e9b
|
|
| BLAKE2b-256 |
9ef7ccba0e9162ec1d7ad71753ed5a0365a5bf25b26c1b60694d318301007306
|
File details
Details for the file ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b267f9a488783d900892e7c8878d8fe3e690c8e2d51083edc8ee65ae3d456df5
|
|
| MD5 |
f1177e58eb95fe09dfdc34343dda0f96
|
|
| BLAKE2b-256 |
d5514372eb22d55a1dd8e2511e1f49c305fc4d12051a6849c7e4ea5c3f445959
|
File details
Details for the file ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20cc275a4f74fd6502ce772c9137d018982574373b1144c3657d77941a0bec70
|
|
| MD5 |
a3ca906419dfbaac1bda65dd800c8a00
|
|
| BLAKE2b-256 |
5e0482cf95b125884d2361a3eb85338a733f8281e3fc3695f73855effd3f6f0e
|
File details
Details for the file ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc88ac5c071ba3590cc80efd1d71d119ae53edcdfe0de4ed9f711222c384bccd
|
|
| MD5 |
078aa3c4508d7d81c91b639cd5b27e14
|
|
| BLAKE2b-256 |
ddaac30ea33398c3c432bc389a45d58250a2055b7621e6ad30d98caa33ca4017
|
File details
Details for the file ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b38abf3ffa5f49f53d3cbddfb328891aaf918cb535f4a0058718d2f499b210c
|
|
| MD5 |
4e0c081cd4d44f703bae2c8d6ab45ce3
|
|
| BLAKE2b-256 |
b4317feb5b39bb0a8a1681460dd027b21ee2fd3300d947bf4b766eeaa80c2c00
|
File details
Details for the file ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b7cd8d390a786ba1388fb8da2dac2c9c8c39dd8e2690395af26ccc43072af53
|
|
| MD5 |
1ec4ca15a314acf8f0669a623107fc0b
|
|
| BLAKE2b-256 |
ee572745b9b1a44260d85bcf26c63cc849e045eebfe926776e2f33c7f526bab4
|
File details
Details for the file ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b34942890da19683bf21307c4c28a765572ee0233023e3eea8c00aa4e3e424b8
|
|
| MD5 |
e839ce19c6cb23b3f2e171885ee72e64
|
|
| BLAKE2b-256 |
141ccca7d26768adf48ce1751598465542f48137d8e17d8e71bda76ecfac1661
|
File details
Details for the file ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f32b95c624d0600c35ab22762fba1e13e1c90118043fb4acd4a66005fe98358
|
|
| MD5 |
bf2084e79414a48044dfd94422fc0805
|
|
| BLAKE2b-256 |
1d203d977e14e00d03297f69709a77bada9435e9d398413b294634c3426605a6
|
File details
Details for the file ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b955348963504815ad230457a86a814612f1652789c1ed73dabdfbbdd7a0ed42
|
|
| MD5 |
4cec680ee2049409c80a5383e08498a5
|
|
| BLAKE2b-256 |
e890d323f4a93b1c6150a427a18c881b648314ac40d611b3bdfa5f40f92f0390
|
File details
Details for the file ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd51b4bfcfa2e22e7a5a1b953a4a0530a0588eac9c54d53e614b5c72268f79c2
|
|
| MD5 |
ed65aee2489e7775aee3a34d6cdc1185
|
|
| BLAKE2b-256 |
a2d85348552c7f22daaa4d404bc8b22e4d6b2bf34f5803476d3b76e0b01b6562
|
File details
Details for the file ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
844fe0a74742b37b325573c6ffbce55058eab7dddc641a53edd8c9673dc8442a
|
|
| MD5 |
477572a288d9e35bdbfd1604cd4d94ba
|
|
| BLAKE2b-256 |
09c4d106f7dd7540fec96d351ff956ec9345264d077ff89f57d885a7742091d7
|
File details
Details for the file ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c526546ff5ddd0f29aa30c12160496351857d77291a581083f84b96533ade73c
|
|
| MD5 |
4634d968db658d10a24ce66c2e2c1fcd
|
|
| BLAKE2b-256 |
6e7574349549b2a80b855188aad559655654c5a4a6253129cc65c3f61d85858e
|
File details
Details for the file ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f2002ab986823375ac428daaf9e33eae3f013c7d011aeed2f74feda51dd3aa2
|
|
| MD5 |
e752e367a8d8de6e6c1e6ea681935659
|
|
| BLAKE2b-256 |
7a88c2669b94fe8343ac9531d38ea40b9069777c1182f4766b236558bb1dd6e7
|
File details
Details for the file ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e6e2d886b430aae9887513362d9e4b1c18626b1889ec8b12fd83071e6b5fff2
|
|
| MD5 |
a9a5545efa69221eb1218545bf52e7a2
|
|
| BLAKE2b-256 |
1a54232904bc1ef6a28fe09540dcd944d71135f5f272c34c10f2b4278575f9f1
|
File details
Details for the file ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24a8490e266192edd9ca7f8bf65cb496919884ca18bb951ca34f3133e530195c
|
|
| MD5 |
fc13d6fbe8cf0d9b7f673907b5ac73d6
|
|
| BLAKE2b-256 |
578882b27c5730c98bbb4613922697f2245e7a4cd514750a2f6e6ea2d62921ea
|
File details
Details for the file ox_vox_nns-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84f47ae2efd07849ac910dd3d9a25e0ff09bce7ef452c1c9adbed8efe130f60e
|
|
| MD5 |
c5f8e2d4826dc97ab5cedea4a2d72527
|
|
| BLAKE2b-256 |
531963182c06ce67603513ca058462faddfd8c82560f5bbfb14cd252cc3f0382
|
File details
Details for the file ox_vox_nns-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c48a26a3ec31fd396916ba5c9becce99d2cdafb86e192def869a25c2b119837
|
|
| MD5 |
aa0f8930dfef60b024c580d5035eadb2
|
|
| BLAKE2b-256 |
fc90bd8bf2c276ac87892b88be08c0407534484eaf1e91b7c10f7f66bf1e362e
|
File details
Details for the file ox_vox_nns-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdacc2532c10a2a817fb732d8bb948159637ae9597bfaf409e03536c0dcb0d6b
|
|
| MD5 |
ca49428a552adb5a5b56e28c4313fe60
|
|
| BLAKE2b-256 |
45eaa65274cf46b46464e84635a8a70546f47b572952f65680d4765817661ea8
|
File details
Details for the file ox_vox_nns-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12efffa9b1c9ccb363925e30293a638d5453ef891ea86148eabf71d25477f106
|
|
| MD5 |
2fe48942427bb7c6eaca42414d1fdfda
|
|
| BLAKE2b-256 |
74a977d29f21c47d8daef7ab902901adf23588cd28a572376b6f695760c8e2fe
|
File details
Details for the file ox_vox_nns-0.2.0-cp312-none-win_amd64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp312-none-win_amd64.whl
- Upload date:
- Size: 234.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
818c6e42b6392ac0e56908afde002744fbc2c55d18d75f03de7e582e59d41606
|
|
| MD5 |
d14166b057c46f11ae0d97d6ac18c2a8
|
|
| BLAKE2b-256 |
3a6e7ee2240bf40638fc4dd0a5a4da437d1460875020d7928ff8010f8a1669ec
|
File details
Details for the file ox_vox_nns-0.2.0-cp312-none-win32.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp312-none-win32.whl
- Upload date:
- Size: 230.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7442e86ca3b0268f9a74bd820f4ef3fcdf86ed071486b3545874c36b20c645d5
|
|
| MD5 |
36ad2bb29355e161f4792642eb66d96c
|
|
| BLAKE2b-256 |
6e9acb541799845e8cc2c8603ce2900c7b2efebba9eba1008629031c7bf0e39a
|
File details
Details for the file ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88b89095e168832f31f80d10913724d9421dcf86861ff4eeb6082bc57962095b
|
|
| MD5 |
3e7f4098a3cdfb938d633618bc67d47f
|
|
| BLAKE2b-256 |
8a37024485a80af88a49efdfb620f58bbf7638d09072eb12d31f3b8d1c46a1bc
|
File details
Details for the file ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44a78318e863dc594a77f083cc1b391cad2eb2fc62cdbe04728902bb656fc80f
|
|
| MD5 |
a97b3b9a7adfc66bc24bac0b1f78a0c8
|
|
| BLAKE2b-256 |
edb904807ba65e7eb2bf4775f04624cb18fe70769f03674d15d130133806e923
|
File details
Details for the file ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
397a105a5ebaebcebe4cca6515262ff44fa86f73b3eeec49af89da17bcb305ea
|
|
| MD5 |
4e79a66d7f1763e1862aff5654cbb5e0
|
|
| BLAKE2b-256 |
ddb852c55ea79173e86aa4e96d9bfa4afce555d55b36c5c800081402109bc631
|
File details
Details for the file ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c63ff3bd90bf9ebf572b1918fac2446f1240b8be2b3d7a9a729dfa0c062d35c0
|
|
| MD5 |
c67a4d72b26582756592f7e85fda7ce8
|
|
| BLAKE2b-256 |
1423944be4788c686b9fef717e99238ec30749501c7c873fb7d6fbee5e422fd0
|
File details
Details for the file ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c024b8a433f9a3a542d77d04fb5353ed8b8c219f6100ce5e9466830cf58516a3
|
|
| MD5 |
aec2a4c66490c266b61ea0494fe3a196
|
|
| BLAKE2b-256 |
1fa40cc3f8943fc2f485f5ca84b52634e5c74a6933790dcb0a8528c9cf722677
|
File details
Details for the file ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
795033aede5df2fc3d89aaddb981c7dcac00cd7f2032397d8a0ff9ae2388ca3a
|
|
| MD5 |
7a18abd0628dd219d2be5030ec804714
|
|
| BLAKE2b-256 |
6b7d1c4308e3eb62cf5d207c86b3c896b37f529afffd76a27bbb159f744a04ab
|
File details
Details for the file ox_vox_nns-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 362.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
764043457ba030123b7aff9087c99471ec1be90377323ecefcb13b900d2b6930
|
|
| MD5 |
8c23e0a7af41be28978bcc660144cca5
|
|
| BLAKE2b-256 |
4c334ebfbb7c0b5c43bcabed6c09f0786e87b96ffcd57e0f5be0e8020a17a817
|
File details
Details for the file ox_vox_nns-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 396.9 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
025c34c76ab268fd9dea73af554c207643a664e61d1b2c2d306c1ab716d39a47
|
|
| MD5 |
a2334f71efdbdebdde43f5e1a57c5b7b
|
|
| BLAKE2b-256 |
d30937bc9cc1953717404056a6e3e6d011ba987075ad852eb95841f157ba4da6
|
File details
Details for the file ox_vox_nns-0.2.0-cp311-none-win_amd64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp311-none-win_amd64.whl
- Upload date:
- Size: 234.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a78e6685c99fa7ffca9c89da80880d707399209026b84f5b7c403750a6cfdb3
|
|
| MD5 |
0531ec294078283cc65a39bdb831fb3c
|
|
| BLAKE2b-256 |
5d9a5e7b98edc7cd5819428ce129ab6d7b898178115bc02893db686451368a6b
|
File details
Details for the file ox_vox_nns-0.2.0-cp311-none-win32.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp311-none-win32.whl
- Upload date:
- Size: 230.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d41693754df7d16da6ecfa3264d451ae0e13a9bda461b088f53fc96c20eae5fa
|
|
| MD5 |
599ce73e14fa61143f1bb451e8c5cb4d
|
|
| BLAKE2b-256 |
95ed6b122f9b05b87e5714846f64dd35a4eacfa7f97833d38eba0be4709e5abf
|
File details
Details for the file ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
701e28da185eb2907fcc462a47db25dafdc020f6352efb63933b06fb491aa1f7
|
|
| MD5 |
70c7118e3625164ce856901d8afa160f
|
|
| BLAKE2b-256 |
84d1e30c4dc37a810df1bbcc49b400c9dbcff8334d0ec78206c6af3d29fe3954
|
File details
Details for the file ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4183c9acff4c0d1a46168cbbc89fca718a5468ab22001d409c647370dfe7247
|
|
| MD5 |
5aba92f21f60be0c753f874a8d5913e3
|
|
| BLAKE2b-256 |
9b9c6f8e472a301ecf7ae8adba516f14cf0429876b8469c533d58ec28e1905db
|
File details
Details for the file ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
431c658f1eda30e417d04cb0f7ef7de1ec83fa12ef1e038ac55961abe4f297ea
|
|
| MD5 |
d9ff1b1cbf08c77b1f7b290aec6fe1b8
|
|
| BLAKE2b-256 |
131af560d1eb7fc890c4d6ca78c0b1482d573e1a47a263fff55977357a535b7b
|
File details
Details for the file ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
971f2e1d832d98759e50bf174ef95108ff22ea24b201d631e22a7cc90b8862a3
|
|
| MD5 |
8174a12ee08dfab86e58c9e94498c767
|
|
| BLAKE2b-256 |
599ae90f4727f48a0637f212e36fb8b043260b02594ff5729b788d92105d5904
|
File details
Details for the file ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
478d7b150c6065a52ceef600ae58aa9eda740218e7519fa5588c5cf6a8858895
|
|
| MD5 |
944b2b83d532249d1613a45f98861af9
|
|
| BLAKE2b-256 |
69751597ccad043b1d1de605ae1a5312855087a93e972b91f9b1ab5ea9b98298
|
File details
Details for the file ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d82ee96add37df25da7cbc40454ffcdd00223c9e278e4e5159a8eace8151347
|
|
| MD5 |
69efce7bf1188aa2c9bf0b3dbacfbb64
|
|
| BLAKE2b-256 |
57b1e5521a2ce751b94bc22bbbd3c7bfa52006e86a1f79a13ec99b3505787fc8
|
File details
Details for the file ox_vox_nns-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 362.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30f0541daf179ef967eeb2085d5ab29a100f042e20cb4c0204dfa5f98417b627
|
|
| MD5 |
02df94537c2b27c123574f71b622d754
|
|
| BLAKE2b-256 |
d914383516c2f7bbf46b20747ef694df9a5a40d7d787b156dccfec926bbdff74
|
File details
Details for the file ox_vox_nns-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 397.1 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adfa146e8ba61783d6121357cbe11f52170d51a0461b18c115b3996cc5fbe2fe
|
|
| MD5 |
16a58cb21c4cb635196244b0026199a6
|
|
| BLAKE2b-256 |
5c1713713e740af1afee90bba1751fa7b05e39d6572d7993b86c8bd3127a5c26
|
File details
Details for the file ox_vox_nns-0.2.0-cp310-none-win_amd64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp310-none-win_amd64.whl
- Upload date:
- Size: 234.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df45e5303a4e3fbfe03be722a6bc05a21294aaffc7500a2ddb9b008fa129d3a3
|
|
| MD5 |
e24c6f9f6597a6d6233fa47d2bb12787
|
|
| BLAKE2b-256 |
86886ffdb37bd01bf4056aae4b5fa1b2073016769f7707a63b92c717ed6c129a
|
File details
Details for the file ox_vox_nns-0.2.0-cp310-none-win32.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp310-none-win32.whl
- Upload date:
- Size: 230.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8e3dcb2be89ba39cdae6afa4adf6959df016756b48fbbe5e5c2f39e7be5d4fd
|
|
| MD5 |
ddb6632ac5114a96dc0e0c18eb634760
|
|
| BLAKE2b-256 |
bbcfd5fe073e94213e763dcb2718f08de56cda60b0980922bd59221d7c678787
|
File details
Details for the file ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90cb4f5726cce23f9a840cecbede14a251dc9b2d20a56ba5266979270988f107
|
|
| MD5 |
c65c6d873c620cdced3477485fc6c653
|
|
| BLAKE2b-256 |
d01bc6009a1500740b7058741d2da29d4e8b0f1762d7d948ba2918f5f11a6298
|
File details
Details for the file ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
862ead6d9f74dbaead9adf1caccd127663d972a18ec20b1ef8c7a8c1db7db220
|
|
| MD5 |
7d98974ef47acd1ada1ab4382ad5a492
|
|
| BLAKE2b-256 |
a19aec8a6e55fd3f43ddd4b906f66611ee0d795cb557ddaf341554ade7f0fb99
|
File details
Details for the file ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7afe010e6475f317200c68c1f042bec5f203c68f4fb9a6c20861367a2508b55
|
|
| MD5 |
d1495d7db1b60dca716ab1f283b835e5
|
|
| BLAKE2b-256 |
1518e737338bf4a637222df5cc37cc7b83c4fad77bec50654b2ad08611205afd
|
File details
Details for the file ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0373ad214beb8c83e7f9071a54512a0b3f22157543314481eda303766f151f6e
|
|
| MD5 |
c81ec888d65f866c6a8168aaf9372d26
|
|
| BLAKE2b-256 |
bd10f26bb882bbdb627b62b4593080acb8f408cbaf59cadfc7cf5ab3be8dac30
|
File details
Details for the file ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b32d4ab8dba798e79f864b97a3144bdcbaa097b055fbe901410108aa60641d0
|
|
| MD5 |
413ff381c0d989c43f876031b3bf00a6
|
|
| BLAKE2b-256 |
4d999557bba76ccaae317beffd2b6542dc8b4382e14da737333f11a7d9d71b1f
|
File details
Details for the file ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b30960e2842e95db97f55fc24498130e466d07db586a73cbfb6142613eac650
|
|
| MD5 |
fc8a62fbb58acc1ce57119eb9ce3fa06
|
|
| BLAKE2b-256 |
7dfcd30fb1b810f837d0cbd98528a89b19269dbdd372e55d33910d9366e1eba8
|
File details
Details for the file ox_vox_nns-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 362.0 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00990e19f87aa73c816495da21d2faf38ae0c63c0424f4f8fcf1901813db47e0
|
|
| MD5 |
22d1c935b7fa3619b7c7f028ff0d9700
|
|
| BLAKE2b-256 |
483a3cf65aa13e3a1656118f3b4e9e4c7fba7b4e93dd641d789462da7620e170
|
File details
Details for the file ox_vox_nns-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 397.1 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b7284f8d942b3a793bcb3aded6edc0308fd3c293a684e3939302743297470d2
|
|
| MD5 |
1827ffcf626efeeb17931d87f5fc5ddb
|
|
| BLAKE2b-256 |
e1fadbeb3b8a793b451e6e56782f39ac8e5fe37fe7dbb00becff5da750324b19
|
File details
Details for the file ox_vox_nns-0.2.0-cp39-none-win_amd64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp39-none-win_amd64.whl
- Upload date:
- Size: 234.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11960613159350b6c8aeca79c8b282f743cad41215585919af90bc587cef3c53
|
|
| MD5 |
53b868026882c6caa01f574b36072a7b
|
|
| BLAKE2b-256 |
dc3b53fc7f0b9c18dae02eef0494382a4cd0112fa2c387312dbdd96723bf77fb
|
File details
Details for the file ox_vox_nns-0.2.0-cp39-none-win32.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp39-none-win32.whl
- Upload date:
- Size: 230.3 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92be456d2903165d3ca8a4bf2402282261cd619d65881beafa3ec871bf5c9669
|
|
| MD5 |
41a33cc90e3a11ba2ec52b91e72a21c9
|
|
| BLAKE2b-256 |
282537837d8a055a1444d8047b5d5f9fc27d1c3ca66080fd4e6d49eb46ea4877
|
File details
Details for the file ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b22e067ac496fb3e20454fbf4287a1defb62ac3b2ca618aa3a66bda606cb60e
|
|
| MD5 |
8823e623430cc2f3a1404b2872dbb1b5
|
|
| BLAKE2b-256 |
1d1a8c7b9a3d4ee5deded5887d088e8e46f41cb9ca6d4c340c5af8c3970cc694
|
File details
Details for the file ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7f018eae78b0ce933bcd1840cd5d83a6a684dc2ad5347127d88c58bac6e9e39
|
|
| MD5 |
5554dddb39d5ec664c9c2d52915c1ce4
|
|
| BLAKE2b-256 |
daf2d46802fad509bb2f7ca22ff19e9442da75c25662cc0aa0dc14d77bfe746c
|
File details
Details for the file ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b463863acaebf34d510f5b5890319021c57ffdc5e336621470975b0f690aa99
|
|
| MD5 |
2fb48aeccfacd779bd00e0dd57b0a4be
|
|
| BLAKE2b-256 |
82989ae40a6db1b8d868f7cfd83454e22bc66e6853c40a401703af79aed8fb26
|
File details
Details for the file ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90efe36f3180bdaad78a20f1c8f687dc25e5c776e21b4bdeacc1edc81b7da712
|
|
| MD5 |
09347d49e300b680d5aa7dfc5f104434
|
|
| BLAKE2b-256 |
f05712c3fa30fecea8f13a199fdc9f649fa62e7a4de5ee02ffa0ab7f4dc3e209
|
File details
Details for the file ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f74d74b5897c03a20abe70b0b64431611d20886c1f3dae6fa9ac2fcedb4f3caa
|
|
| MD5 |
57ae468d295c53f6d18e5b7a821ffdc3
|
|
| BLAKE2b-256 |
57b060e0e9b19ab99d031692287ce8c718c9632419e557d19669edfe2b13d482
|
File details
Details for the file ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
294359d55a312a53cb37237a85f04ed1e9671dea5492095e6aeee407f291fba8
|
|
| MD5 |
3e7d7c233f85b37e375110f5ab357b81
|
|
| BLAKE2b-256 |
b9ec6aa84c15c941b3d21e041f353a79e4ca863b07180b194bf7655b084f350e
|
File details
Details for the file ox_vox_nns-0.2.0-cp38-none-win_amd64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp38-none-win_amd64.whl
- Upload date:
- Size: 234.0 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab0b506611cd2c99ad2741d9f6d971f3fed4a0f01497fe6653b8ee7fb7bca108
|
|
| MD5 |
cf8db9f618dc599e3eccd9e281ebc9bf
|
|
| BLAKE2b-256 |
2d9a96bdaef5fe406e192ad3f504413709f31ca54b4101f9b1e4212005e6661f
|
File details
Details for the file ox_vox_nns-0.2.0-cp38-none-win32.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp38-none-win32.whl
- Upload date:
- Size: 229.3 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa8c6e47136ab45a49a5e2dfe773d7802255816f2bb2c12ee75964e074a5e004
|
|
| MD5 |
99eca8fc64f1627a8b6650b4772ec7c0
|
|
| BLAKE2b-256 |
b82e549a3859d5b87c7032411b253bd941498253de7f01c86c06376244bedb38
|
File details
Details for the file ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fca7f73e88e4b9a08cb4a331b7524859ca207521ce14a1ba452b2eeafe39962
|
|
| MD5 |
c1d8c63e7ca1f09ee51bd5a9018b067d
|
|
| BLAKE2b-256 |
470218b5ac86dad7afab87a2d75afa46c5595c9dd78324ed980592c4b067857d
|
File details
Details for the file ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ffd7b49baf5782722a1fb54e137d466ecd57bc00f7913d0b9dee60c1dedd686
|
|
| MD5 |
8e572c7ee112980c09605efa68120688
|
|
| BLAKE2b-256 |
39ba356964e6ce50e3293e470010554b54b75927b5625903dc0cb105e5771178
|
File details
Details for the file ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c38bfc5df55b06d323a87dd50931232052ea2527cd10a9d832789c096936ce4c
|
|
| MD5 |
9bd1808e8e4dc33faebdb58472f438b7
|
|
| BLAKE2b-256 |
50e1de67f325256c7c6cb3f41bfe83c23ac1a7eac283a1b320603150ad0add6f
|
File details
Details for the file ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
160fcdb3544e4d95586d71d87e2283f8475b2f35dbcf823e0410ee47a75f0de0
|
|
| MD5 |
c25463665324f9f929f94755abcc9863
|
|
| BLAKE2b-256 |
151c4e132616745aaf07217cad8517e314e65989c9f229a525edaad974683303
|
File details
Details for the file ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6687f91afbb9dd3badf0dc1002bc2decdde318457d8771812ee06b5f664c113
|
|
| MD5 |
7970a38ef4420fff087ce4f02d2f793c
|
|
| BLAKE2b-256 |
5cbc48e108abfcfd070cadeff98aa005cf155f9283e2859dc8bc4dcdf31128a0
|
File details
Details for the file ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: ox_vox_nns-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ea0538dd69fa9c72523a43b2efec558a55a221609ac6cdbcf4cdf2bad78590d
|
|
| MD5 |
ace94875e48ba9d45588e560481d8f53
|
|
| BLAKE2b-256 |
7b668653f6ce8e99511002ecd9d103510a9fde5179598f7b09d2008e6afebb23
|