Skip to main content

A hybrid-ish nearest neighbour search implemented in rust using voxels and hashmaps (/dictionaries)

Project description

OxVoxNNS - Oxidised Voxelised Nearest Neighbour Search

PyPI Actions Status

A hybrid-ish nearest neighbour search implemented in rust, tailored towards consistent performance, especially on difficult inputs for KDTrees

Installation

Precompiled (from PyPI, recommended)

pip install ox_vox_nns

Manual

Checkout this repo and enter a virtual environment, then run

maturin develop --release

Usage

Basic usage, query a block of query points in sparse mode:

import numpy as np
from ox_vox_nns.ox_vox_nns import OxVoxNNS

NUM_POINTS = 100_000
TEST_POINTS = np.random.random((NUM_POINTS, 3))

indices, distances = ox_vox_nns.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,
    )

Performance

As a rough heuristic:

  • Open3D will edge out OxVox on easier data, e.g. uniformally distributed points, though OxVox does outperform SciPy and SKLearn's KDTree implementations
  • OxVox in exact mode will outperform even Open3D on harder inputs, e.g. with clusters of very dense points
  • OxVox in sparse mode or with epsilon > 0.0 will dramatically outperform KDTrees too. This is not really a fair comparison, but if you don't strictly need the exact k nearest neighbours it can be very helpful

See performance_test_ox_vox_nns.py for test code.

More thorough tests and interactive visualisations are still being developed to help a prospective user decide quickly if OxVox is worth trying

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

ox_vox_nns-0.6.1.tar.gz (20.0 kB view details)

Uploaded Source

Built Distributions

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

ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (641.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (673.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (739.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (652.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (475.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (553.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (537.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (511.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (476.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (465.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (640.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (673.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (739.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (652.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (475.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (553.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (537.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (511.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (476.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (465.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (641.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (673.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (740.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (652.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (553.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (537.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (476.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (464.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ox_vox_nns-0.6.1-cp312-none-win_amd64.whl (289.3 kB view details)

Uploaded CPython 3.12Windows x86-64

ox_vox_nns-0.6.1-cp312-none-win32.whl (275.6 kB view details)

Uploaded CPython 3.12Windows x86

ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl (641.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_i686.whl (674.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_armv7l.whl (740.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl (652.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (473.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (554.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (536.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (511.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (476.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (465.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ox_vox_nns-0.6.1-cp312-cp312-macosx_11_0_arm64.whl (414.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ox_vox_nns-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl (420.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ox_vox_nns-0.6.1-cp311-none-win_amd64.whl (289.4 kB view details)

Uploaded CPython 3.11Windows x86-64

ox_vox_nns-0.6.1-cp311-none-win32.whl (277.4 kB view details)

Uploaded CPython 3.11Windows x86

ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl (641.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_i686.whl (675.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_armv7l.whl (740.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl (652.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (473.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (554.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (536.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (511.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (477.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (465.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ox_vox_nns-0.6.1-cp311-cp311-macosx_11_0_arm64.whl (414.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ox_vox_nns-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl (420.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ox_vox_nns-0.6.1-cp310-none-win_amd64.whl (289.4 kB view details)

Uploaded CPython 3.10Windows x86-64

ox_vox_nns-0.6.1-cp310-none-win32.whl (277.4 kB view details)

Uploaded CPython 3.10Windows x86

ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl (641.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_i686.whl (675.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_armv7l.whl (740.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl (652.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (473.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (554.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (536.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (511.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (477.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (465.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ox_vox_nns-0.6.1-cp310-cp310-macosx_11_0_arm64.whl (414.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ox_vox_nns-0.6.1-cp39-none-win_amd64.whl (289.8 kB view details)

Uploaded CPython 3.9Windows x86-64

ox_vox_nns-0.6.1-cp39-none-win32.whl (275.7 kB view details)

Uploaded CPython 3.9Windows x86

ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl (641.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_i686.whl (673.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_armv7l.whl (740.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_aarch64.whl (652.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (554.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (537.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (511.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (477.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (465.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ox_vox_nns-0.6.1-cp39-cp39-macosx_11_0_arm64.whl (415.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ox_vox_nns-0.6.1-cp38-none-win_amd64.whl (288.3 kB view details)

Uploaded CPython 3.8Windows x86-64

ox_vox_nns-0.6.1-cp38-none-win32.whl (276.2 kB view details)

Uploaded CPython 3.8Windows x86

ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_x86_64.whl (641.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_i686.whl (674.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_armv7l.whl (739.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_aarch64.whl (652.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (553.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (538.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (512.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (477.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (465.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file ox_vox_nns-0.6.1.tar.gz.

File metadata

  • Download URL: ox_vox_nns-0.6.1.tar.gz
  • Upload date:
  • Size: 20.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for ox_vox_nns-0.6.1.tar.gz
Algorithm Hash digest
SHA256 794a2e906f9089e3760f2741e1d550ec2e55a12399e42958e2b4a4eb344cf389
MD5 6b5671df1ac576cea25185c2b41a17ca
BLAKE2b-256 11ab13715a708bd69c664f63d1f5390405aed5fe480ae702b03c0a659c60ed5e

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1dca55241ee20eef8b8b3e737e05dd5e29d7975a8d164a30b8f3f25df08e2de4
MD5 2780f21863c6c310d744657398a4a575
BLAKE2b-256 c5f5301fee14cd7e84124c5f51ae61c8a8400101be51163134e9b5b317243505

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0d68466270400220efefdd3b2fb51604711a9241a3b1f152362fad5061fb276
MD5 8a8fd1d747ce4274f8ed3776b0e258cc
BLAKE2b-256 286073e3cb17948c6357e7ca4be8622616107641931abd0f512b29f93d014cf6

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75431ada23fa5da8709daacbcc367dee0f30167acec737a0da6ebddc42d842ab
MD5 ca459b42b131544242dfd134fbcd3387
BLAKE2b-256 df0ac4101f10c819c2590a0ce81c566620f4788814c617e484fad9a1fdd44f0b

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aef1fc51799026194deb7608ecb3d33714a416f3778db234756a02e6d73bf529
MD5 1d6b72c9b327401c2ffc7a1f83bb69d2
BLAKE2b-256 3196fea16d25aa0e81bd97e1a5c8451ebec1800b7feb86e05ae0206ef7cfb70f

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4478b14967b638adbe5edfc169cb7d43cceceb9ec37156ee96dfde1f705e8f88
MD5 e8846f0d691251c4985ccc4e7ef235b9
BLAKE2b-256 f7b8b81ffc50df2d786f415a24808e6ff5876411d0a9e6f7f8e1aabef45a593e

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 856b6b7449f91e0ec0d1a9aa6a10aef7b5f0fa4b581cbae9e159342c75f0b25e
MD5 fa7cf1fba46f4d2381d4715a8179c060
BLAKE2b-256 014db64992621fa83ddd4eb4e03ee23837d55e6ee83ef93652167c773b7b5317

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8454e625117a713de283592a6f0dec0feab1f22267c7744671934c99448c22c0
MD5 df989a18985fa326a9ca0c58f100c2fd
BLAKE2b-256 a37341b9e14c0e27f5f0317877a6f1f76f0ca81c232f28dea9cfcae72816574f

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2b97e6a8758b2ca0c3d4d21f822b090be97c5532fd2b616ab415bc59f1db4e65
MD5 4c531144ddac711026a06c60cd31d4d7
BLAKE2b-256 bd553779a4ce0358b7e73126895a7f7ea85dfd4ec0d25d8861b90f14542b459d

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c215e06cb8e9e56786e19cc051ddbcb57315cee28e314216ece25beb2fb664e5
MD5 5079ccd1b958fccd2210fed057f55f37
BLAKE2b-256 1dcb932425f0c3451146b01508bd838076443c6aa87c0b26b4d3e3d2737c3483

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 154a739f078c6cb7d7c8b4215dd6718783b5b3636f6aa8634a6cbdd71fb45298
MD5 75e5c771d07995cace619a8512f2bb94
BLAKE2b-256 06c45388701a3fab84eff117c302e683c2d1ec99e1c0fddc4da008b74f7f4abd

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e95543ac49aa2504302f695d4ab745582f9eecf54bad49624a2dbb6defac6d1
MD5 f1399dc05b5f1cef7f2ccb1634e06286
BLAKE2b-256 13697ab928e4038b3832901f7bca695d12001566581ed89a9ea1d0186366a3bb

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53b46a2e4a82c37a6c636c8cfe77a15fa2f748f276cd14e25e567d0b21415162
MD5 58ed41a982b84a4d25776b7fc6af920c
BLAKE2b-256 abc0172d795d23ec627d777bc7312862a635f105ba06aca2cc16d79b231cbc5a

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 481d92b5dca63fbf726dfa2186409e8d1dd08ab80d147e9d978e10f6d090246a
MD5 9d3600db612925ef0d55f902d7ff59cd
BLAKE2b-256 643b8343ee8856e7e9cdd54921a45fc7e4b2ed3a048192d9fa0294f5d5cbb41a

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3dbd2cdb29f8ee23a621ad4a0f7138a2876dc49b34a6e94429311585a20d4b07
MD5 9688ba9487168dbdb60dd09c1d9ccee7
BLAKE2b-256 a7c74377c6461bec162c4a250043f8457fb86775a2c0e37cc154d106e1f9c8d7

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32a94c789e06ed2478649d0a4ad23d143f3152278249a968b8a36d727f741715
MD5 d42df7b3ddc7da0038b6b9ea9088a472
BLAKE2b-256 87095c3309e8c76f9302c9c29b55eb37da4c2a55b696ccea7f5cbb1ced2ae9b4

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f146136f0b56a17393285e56bb73d09066534b1c7c33a789bcdf4a47492e93b2
MD5 14f88de2967b5616cca6d9dd8c4bdf7b
BLAKE2b-256 e044608f05d6b674ac52e5ab4b7b4646f6747f3f243b088c854ba3f0bc54a11c

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c1d7eea0a6eb6488c56dd394caba8066cd2b7c7301547c804b9d3ecaf761acaf
MD5 ae3c9d9059ccc5f505864827f888ac2f
BLAKE2b-256 544a8b2cddaf144d2de115698b769711395a118bc4c1ff4a82f99d3733f1fc91

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d59ef30e988c424610d80b277ec82f59f763289529fa52b5687f07f0adb6bd07
MD5 6795ea6a148a15741a9b51b9847e5442
BLAKE2b-256 ca760d36932293d6c302525bc6fd7a8a9052aa3372d202aa5d3a775f28370cc9

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 437e79c98647159a9fc9c88f226594a224b87f940987a5c126525c326888b4aa
MD5 8bd73d393be0550e0b19a43f75ccacef
BLAKE2b-256 4bbd9c6f3889c614dc501e6df38add54461c8218997b4160e77abf522808fe11

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15fbce7b614f6af04c0bf4845a22e8c6981dfe4900bc98834a056e45b0a9d0ba
MD5 b652ffa0b89908d773f1d5e2dbd9c4ae
BLAKE2b-256 7b82ce6631f0122c5061279f6334391b92129a0bffc3ba2ea31382182184eed6

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f4fb4cfa38d20a0f6fe539a239045db94d94422ee4ec333823f6bc4f5a2ad72
MD5 479d96aba24955dad4611a799f89c4ca
BLAKE2b-256 dc5981a49f8ff095edcab76a2d2e408702eadfe773b76d52c0177cd89ab70d2f

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f792cc132003ff7cc884c489a81bb079e85c6322e88ad09f0004984de49e877b
MD5 e4d5dc5b605fbfe590986f05fd1a1e17
BLAKE2b-256 ea3c9b382363ce3ddabc24d98e42e4db583c8fbaa6a89b6843bff022bf57d0bc

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc8c5e28eccab720a5ec3785e17b7d9dc3c6dbb6d50e36ba23f2a75701f19780
MD5 897bd4700076ebd502bb80a738433550
BLAKE2b-256 e8c11b0fc661ce855f033ba14c9e0f6959cf3bb3e1ffbdafcae5ef0fe97f8a93

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 feacce3cb3df7033c05b2c684febfac67c8ba121cd1561b6b0461d07d112a9bf
MD5 647b6f2837094ef8bc66b95232f67de5
BLAKE2b-256 7524be9bf4eb1a0b0bdee0575884365fbf48f76234a5a8f28bee04d84fd5b55f

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca532bbe530a2611f5de31a78fb8844df938208a8021a3cd456cddd39e6acf3a
MD5 9289eb6dbf1f86784c1f10b47fb36f1b
BLAKE2b-256 62b870c5fd6908c6845fd37a11a1a719a7f960af2f2156a293ad1f2d13412158

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ae9f18321e8457ab550e9b071466f3c45b95c2fc4cdf8262ac251636631a025
MD5 aebad818576136a0f7cc5114085d0aa9
BLAKE2b-256 d62456e43758cd67c223248b5d438cc26459196f40ec2f0e99fc4d84be85844c

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 005dd7f208f5622e228b8bac3d3dcc3dad42e5c1aef483ea3b04692c010b62da
MD5 83255c7d309fa28172f72e89164fc0e2
BLAKE2b-256 951cf6e223f00753cbcd38c28720e3233a5a792658d4d70172af4c8ea4148d03

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6616b71aaecb79fb86ae08092f52304e8b6136a198b9e52424cfda1ef827bdf
MD5 2a3420160af3c19d206e2c0ba4a7fa74
BLAKE2b-256 88efa0b104204e813367c3ff7b24763568571fa904b264c0b1a42c6f786f853c

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 06ff043b4c5b386297a229bd373a428355324f0e1e21e13f361c4e5264deffe3
MD5 91227633f8d3cc65f371df8046521885
BLAKE2b-256 34caaac750988acc99404fa9a14b18e6c00d159635e95cee60a843159a4d5631

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-none-win32.whl.

File metadata

  • Download URL: ox_vox_nns-0.6.1-cp312-none-win32.whl
  • Upload date:
  • Size: 275.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 26f874ccb5893a6e13b65d52863e7c03d17e55dd829db2bbfb1b93169f94a1fe
MD5 9a1250a6ab245aa52fda97e7f3a49a3a
BLAKE2b-256 a0e6cf3b8e5616ff066ab6045ce4a59c89c9738e065689fa428064905384b4ba

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38cb3e5da7681c77fcd88c4153968e53bee5ec194cd2167408566c36205bfc5c
MD5 b98240b5ff8b03e85cd86b5e2f44380f
BLAKE2b-256 0d9d052db8ed78723b785ca23bca5bddb8a86f6d92517ffc44495f6cd22d8f10

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a10130881cae2f0e5d8b78a1cfcc049c88f9b57bba1d6e8f104755026ab4cd3a
MD5 f6c3aa674aa2560a5c6e7ea93f7e08b2
BLAKE2b-256 379141d0ac19a54031bae76c7937f3bbd2b2f66619ff333a7c0e867c0d2d2ccf

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d739fcfd7d8ae67211c5190ad77274e34720ae511f57a7e966acad38c765851
MD5 967427bd20e7844bcb86020b0421af78
BLAKE2b-256 222446ff1b94426e22f0b91e73372dde0b4faac6acaba6366539d83c63b68f19

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dec6a2612338cc997f8e01cd6d7e82c01f671c02e9dd5ddf66a514f597ea1427
MD5 69a7b8ac45d875584900450c37b4feba
BLAKE2b-256 1fa544055a09c23ef227820602575d1530a29866c3b2e8d8b4f9605743ad2a53

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fa355baa38f20965dc4c674166961ac5f5e03626e8deb0e122e58a0d2594566
MD5 9822084adf58b57c8102c5edb268d601
BLAKE2b-256 c4abc88776e4a29d44933765dadf1b452338a3fc785ffce1c75cd9ab28f298db

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6fac26f4d938544c1b2277084867f2c98d1df46102c77bf4aca5750853c30fb5
MD5 565c9c19f450ec321ac23b677f4e7a72
BLAKE2b-256 46ec033f11959ae43e67682ac2a35821e5620547601722d5d0b9a378f0f8b54a

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0ed1b0ab418dde1782af308c2b5ede2893a2e005ac4f3fff01e63f6eec4e985
MD5 d3742d9f1629b8a052ef5da335e88d49
BLAKE2b-256 fecb8be5314c759e44239fc3bc11f760b8032d819626bc0fe8fd7498f2d9e649

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83fcd9e1c9ee9512dbed588ab7267b52293c000238e01e479a4d54b22a2e99ca
MD5 d1ba6edc5625a3259b08de1664e52507
BLAKE2b-256 e84bb92537ff554b921d900442d16649e8828f86fd1a00e9280cd7ebb9869456

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b5ce6594e75753bed294f5313442f1e3a6c39a3db221d100aae0780d83fc8cd
MD5 ed4bfe51ad3c5bbe44f6149735cd7c42
BLAKE2b-256 fa10735bdce1e3707b8454673f0dfa54c86b2a76efe42836360ffca908bc4f58

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a46783443c456a8fe3bbcc0a339c51bfa69a8340df2a002d90e53d9b2fbbd141
MD5 5832f124eaa29daab9ee652225b46fdf
BLAKE2b-256 25c4efecf68f8070688472310b600c23b43175bc51de51ddec3877e6169c8e7b

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e2d6feb2c1c95536e111fba39a66c987b763a83cc00d2c6cbbb8f4f7aa8ec66
MD5 28ed27ce8de3d3c56c077ee54f2aab9e
BLAKE2b-256 e674f07b7ab5f5944c59b4bc0127500216dd19537cd8691cb70e73313cc157a4

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea51caf95638e3405632a39b37b0684bc0a6ab66c21300f85374e06c8f08a0e9
MD5 fa4886497ce8343f587c48f38f994bff
BLAKE2b-256 9ef59093de67ad3432f729575bd66308f074123a6c1bd4c44b2c36986e90a476

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 85188c666f4bd176391e18f2092c03a7bb69b3c9072595d2aed0b2628d94b296
MD5 c5401f12181a5f6a57b8e322c26ae547
BLAKE2b-256 47a84351289625d36a11bcfb6e644fce696b911457b1a19fde388ddd200b6655

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-none-win32.whl.

File metadata

  • Download URL: ox_vox_nns-0.6.1-cp311-none-win32.whl
  • Upload date:
  • Size: 277.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e5bc17991123cfd5febdd6e202bea4144e10ffc44b49eea66d046f8f23684027
MD5 31a7b76b1e862fbb283a254839398005
BLAKE2b-256 8db1a27048df0dd5107028efd8db73fd04b53675784622d0f509bebb4ee8cdd2

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bf049844b7d0d1518c3b06262580fc2057d003647206d395e3720b27f83586f
MD5 98e29941c10e109edd6ef86543350fe5
BLAKE2b-256 569b31c9c6b813122824e0870d02b06b1e8ee496608c5539f88a74f5962a7c3b

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69d3f5e48e5d532354a694d1671e5e845a3668ca00897441ca1e4d27cccb8363
MD5 b37b28beaf7e1ed5f1dadb5ba64a0e5f
BLAKE2b-256 2202ae0192a614cc44a870a4b5d1e54e808b93505d08b051d1f28d31a27495e4

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2dc4a2372ca3bb570070f155aa1e8308c9ab7816488e2dee68c44e659921c3bf
MD5 a64afa16b8019d4bf46b0a7952aac1fc
BLAKE2b-256 cf1aafdb77ebc6f80e6fe6307abb81f4ce51f90d219fd1f4c30038e5ec37d305

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ae3741cf2a6382d0e0e25d62b3301498cee9561615bd38e10df28fff4dfc9a1
MD5 b3c8c7b21d056cbf77c8411e507f0d41
BLAKE2b-256 0091cbe197d037fa9dbe78dfd474ad314815cd762873bef8e258b09bd82d251d

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e49d192c617a579d8e2aac6ccef9352c955bc2f3f90df8add2e0f201b5b6f174
MD5 84a1a7c1e70f18e3f995801c452be048
BLAKE2b-256 9bd6b28a870eff8d61616f6fcc2f8ad46fb422026f6b00e2981358d9f6c8f8e9

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47e7420d823b5cc7252f3a2b96c20d9ab1d1171766ab3db8ea47df3e1b686afa
MD5 9d5a57d4963cbae1466edd7b32a984ba
BLAKE2b-256 be6df6430091d7f31542a5b1cca1b8a0624eafc320b2b013fccff27266c22e44

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc8aa4dda64f783de996c01eb9cd80db0eb90f6250c5404906ae0b04e6470769
MD5 b99ef05cd431663fccadca1e3670401d
BLAKE2b-256 d6ac3d80bba9b64d71634b0136d290038ff9b09eb92d3487eeed39e331f1d5e9

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 805498657000ac1298f9ddc7075ebf6918b6b6c1f23c1269fd0699cd1d65ccb9
MD5 51a061fa5f24433741e8c8ee9c00fe03
BLAKE2b-256 7b0ac92e35b15e6c342e2eeca6c99f19a88c224b7758cdb86adf478c3fdf027c

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 59d2606afad3da6fbd6e7659b7ad708ba2b43f3d42cc297e297790561930ed5c
MD5 ede8e471d0bf089861123dbd9db88b54
BLAKE2b-256 12e545559228c8c2b186322c68a8fd6bd68333fa9ccee00ebe44c3683f6e0007

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0eca8c4b5b0d305b6a094f72cd9aa393354f88c65de8a10a607fbc687eb1fd35
MD5 f201696d58010b02cce6fad3f93474af
BLAKE2b-256 35d0f7f11c4c1e3bd0adfa489ed1f2836f38c9c4fb31928c34e789f979e3edc4

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ce953723d422ba8e4ce6f68da8953defc86a3e39b974ad9cfc20dfb9c0a84e7
MD5 513f4ae495169577e8d9ca79c4aefd85
BLAKE2b-256 9bc5c03c2e928186dd8433932ea22ad37259235c11ccdbc95a80d52dfee8fe8a

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24ecd3b24254e3a0a902ddf4e6b18bebb0c74f9a602df7d97a51857939ca6017
MD5 8ee44fb18349e4355b3ed0928bb9dcef
BLAKE2b-256 ad729ca0288a906662f5c2d6ea017beae73c509c8757da6bec5030b2f266ed2b

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 6e6984eb0e11bcb78f81c93191a6b9708b026f1d7801431c66d1596e6483033d
MD5 27ee2472dae65c2960709b1f059aa7ae
BLAKE2b-256 bcec04e878b98ef916148e942dfd11fbaf4f7892d59d0a6cbdfbde79e35718d6

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-none-win32.whl.

File metadata

  • Download URL: ox_vox_nns-0.6.1-cp310-none-win32.whl
  • Upload date:
  • Size: 277.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c4f5c88a8ebd44b027c5465b358252d1e3f60cb10fdc79d0288490521c95e815
MD5 c5ecf831c8828cea2ab0e21157ff819a
BLAKE2b-256 08e84c458c20423a17ce97ef07c0b3d932a27279d340cc0661e64efacb561343

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afc0f762cb48783555c870fd867c837396d1a8bf5337613d1618708def2e86bf
MD5 e837ea026f2bca8be98ddd378420058c
BLAKE2b-256 d84a457eeed4750099b14f91bf13b599f05526d9f62e031ee013e971d969d650

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa545ffc32cbe49773d2057524ca5d267d16140210f8ddcac19583f593729feb
MD5 a6f8dbec5ae1dbe3017845775172d78a
BLAKE2b-256 5424e8df994cc85ed37f6a8f0902fc9c30e92315f3d5386e65978e6fac01aec4

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 715aa3c8c6666a69a9e76352e22b58286bfba2f87d9668718bd8609aa7542e5e
MD5 ccd6e748783153ec9cdd79535df35716
BLAKE2b-256 9f9e07c082135ef41dba4d550f526ce682c150755c126ef265ca797fc78eaaa2

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d2f2c2020dab711a58387468bebb7f2ff463dc982098cf8f7a64fd4c58fc0aa
MD5 6545ef0997c48fdab7df1306fac72594
BLAKE2b-256 0cf904fdcee3dd791804f9b30e216528045f5325832bb10d9a9c59a6585829a1

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf610404a30481fcb0ba4d920c43db9ef0013479377b490ce4f2725a67dd74d2
MD5 c0b523d66875794dd72cdbb77a2078f2
BLAKE2b-256 4d146bef5f1996a48da5560db9481f52191e391b1ad156be14de5eaa1bed3489

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbd542667937ea8456542a4a99f7f4f6de5c81190f6adf28d6cc957995cb9c00
MD5 962736a91013adc18b9df88345766a00
BLAKE2b-256 127d7fbe7fa2c37700c03432d6303a61b0d05e5297f726e3944f709d9e3cc7fa

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13adfbfebd4f7b990b0107be52b6c14ecac299b071d006ac6d4f137dcbed77df
MD5 ba204d494a977d064df0a98e2becd1c8
BLAKE2b-256 2a0f66f3c568d3c4c2cf41d931faa8dbb4f27be0ac7bcbd1bce7ae9349435a83

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0205d8c92008449121d757e99ffd36d3cde9aedc2adb341ff59f94e54c875934
MD5 8c96c1ca23d599e9e5a214039f7545a8
BLAKE2b-256 4bf3ede81033b3d9bcc7ff2502c93e29b6c07e4b051e19f348d43e2998674af9

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42579fa73c20dab56fc50882fd3082c00b7f50cd936a250825f23ac677a46717
MD5 cdee7699e8e0c64910a93e7db36337f7
BLAKE2b-256 10ee6d9a5aa3b61c9a14bcec5240dae60b0f0986e6a98023e65a45f3e0c6b4e3

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9f78f40b9f4109895fa73180242b8c5c511f5fe14280377b8f78d0764c3f679
MD5 34fe577ce3b27f51a4abd6609781972c
BLAKE2b-256 5fa7a5d82220b320b63b8d7c2103b7af28c32fa7f68256046db643bb916ce17b

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b06852750fa6a422b655ff99bdfdfe8bbd4f9a7dff7c47b4c2980adb8ff6682a
MD5 024a7573ac5569d29fb68f694b6ca049
BLAKE2b-256 c7298daa210a3774bd13ef98e66691f9a9124236efa7124418da36b08af916a0

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 e3444873f8f05dc07fc76e91836295c83379df28de691fbcf7531a595e99392f
MD5 0b1f2a479679ab72cda384d32e9f151a
BLAKE2b-256 324ac4bd407264df50f22a7378d6fe02d74845ebc74d25ee06fc53fb088d2b85

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-none-win32.whl.

File metadata

  • Download URL: ox_vox_nns-0.6.1-cp39-none-win32.whl
  • Upload date:
  • Size: 275.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 5c820cbda81a07745a1d99fbfde11bb57af523cc3f7091569c10c7addda28136
MD5 7519aeb62443155a5da66a9302deb16a
BLAKE2b-256 2d45885fc175a54af73443b222a74be53f907335eabebcadeac994e7f1b92083

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abc5f172f47d9d8ebee78a38b708499df0088cc25492c15c8ef80f709f7a7b23
MD5 4cbb768cf06a2557d733dc0bec5c0ac0
BLAKE2b-256 9566fc18cea4922644c70bbc1da927ef489335d9e99392b34c2d799ae2a9bf82

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd6bed5a68b802992d7c461c93c5698bd1b2d3f99a2d2a77ea814491c278e216
MD5 587eaf0eb577969fc09aa2b2848ebb86
BLAKE2b-256 b575c82030183418f3191d26b185fd3ca6761964173df874ba49f16c66f29519

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e0257f1ffdde1ca18d1f3a485da3cade48a2095c8e8c0c47c0c350aa72b9de4
MD5 a85815764410f56d5ba93a2c381f43f8
BLAKE2b-256 13a206bdacb34e6b3587666e7a261a524c9174dc4af8176d112697e9617287ac

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4349b9934e31653db469d17612f04d95d33788b9d4646d51dad8ed251cc1b12
MD5 104d4aea52e7628d6c42c0bc92184743
BLAKE2b-256 3e2977edd2039cc9518d70134aa5f94454c314cbf94ce0b03813ff18f48124eb

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66f9e812b6ff423bbe5e80c55cc56c62e253eb2059a9b39996c3cb10e748b54c
MD5 d1deeb3e0fb559a5223d79ff48a13bab
BLAKE2b-256 451a8ad98ffe3eae29b20c85f2a857990c4dab59cd5d4923db66342f8b93dc9c

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dfd0e4e104612bc936c3149f49e1845d613cc98f527e98a1b12b509b2c398696
MD5 6a243eb8cbd03caaab47b106bdbc16ec
BLAKE2b-256 fefb13c7f181e4a0646e3bd05292aff80af6fab24c2a6ed26a895f0b67e52878

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f8ddff2e942743bd74011ce5d735ffd7fdd2c155ac0afb012ad329c2ef866e4b
MD5 ed41a0ca597a4fe452e26b8603519ad3
BLAKE2b-256 5d6bb452f6d1d9484c9bb952ca23abd23fd0fff809b84fe3d3dd8ac3d1dae914

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f95a431407db4b8813950490ff2a6d1b3c657ab32e9e297b11f4eb6a211c3cdf
MD5 267a9fa10545823cab72394e40b5ff1d
BLAKE2b-256 6baf46a720f8ff61fafed4c2d14aa905945023c1014ab00278735ebaa97bbaeb

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56051e7a28021289b80854af00017a289c2b27498e81f209fb3dafa630a4e460
MD5 6bbd7a7524b9093d86de82804076b21d
BLAKE2b-256 5633725b01289a5fc45155a2d6e538142377e9a1d01a84910516c10472cbae62

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af34e2b8ffbf987941e94b46703af3916a82de89c00a9c1713c212df79faa1e6
MD5 5d97810bf44e6ea3cc262bcb314d1f2c
BLAKE2b-256 f771ed45eed9420c07fd556b51c9a3fb71bd1f45a605e84091669b6b58625eab

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4841c8b375f7705d1c56714bc254f544a6d3e01815963a890237a2aea6678e08
MD5 117b157181d5fd8164f60c9304246db7
BLAKE2b-256 9c33ba793bb236de376334762251f5727a3a47f1912127a677bc3756d8ee157a

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 eee483e07e9af72af35833eab3c7fb08c54ecde19414e3e74e43c382edfc2d94
MD5 e3cf078afef975f6738f482789bc8313
BLAKE2b-256 d42a1fb4fe689237ec066b2efcaad56804acc933ade89fb6a438409ea5df5543

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-none-win32.whl.

File metadata

  • Download URL: ox_vox_nns-0.6.1-cp38-none-win32.whl
  • Upload date:
  • Size: 276.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 cdf512751c6ffab9601ce340bc4aad491950bdad9ed3361d207b165d22b3ef4c
MD5 b1560c4d3a1b56c9c07b873a1d71156b
BLAKE2b-256 2e4af239c8fdd6591dd577f3f9c3c21c498380d5c0be3ffffaac3b677d0b28d4

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6494d00ebcc18f0d391d6216715f693092d7dee6fb5288d6c10080e4485fdec
MD5 4270bc26c881803f14ce0188a5a5cb42
BLAKE2b-256 aa1d7e17cdcf6b1e06495417d3aebb4b7392dfb6e42c1971413b7565d82e0e05

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f13c0a2d72880a1c891daea621ed6765ffb8e7058db3a86a47650d6880b8fea
MD5 78c49be0f877f0653377415d6c846c23
BLAKE2b-256 f498812f9a27aedadae8a1e8700e5adaa6930b82f8dcda39f2a3d55fd17ef8d0

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47e75a4384983c95164622a36710bc52eb9d6d7b840918d365f6f922db78ba3a
MD5 f9e111b5fde16fb7c5f8ba62e2ea8ec2
BLAKE2b-256 0174651e012e07ff10d56ba399e01693f9fedbf5243e1ae82cbac1f9590ae831

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f69c1a9120248e0aa707918bc901d5407440bdee2293190ca1505f658c69606
MD5 8a93be1c801a586e0393bdd35020aa03
BLAKE2b-256 4f8d5553c064b673c805d2dd2cc176d86ffa8b60fca4db3cbacf65b5ec67c7ea

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e642ced5329272a442cc471e285d5a52029537dbb477dd0224db73d9d21a053
MD5 7522a23dbaf1eca47e26df9cbc23f1d6
BLAKE2b-256 c9c2a45b7b58229445323b6c1fa4cf028079e80fb086f02fe2083ec4da58457a

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1eee997d0dcc6259977bc759a5bd77867ecf4ec0316b7035a20c2e80c2d7e08c
MD5 16041324645f27580c60ffd9092d86b2
BLAKE2b-256 0faad20687a399bbe57bcaa2cc1543cef16e6f84a929a2957ef1ba9d269061b6

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a63500ae8c0ebe231b0c6ec3e8aa4d00464cd12d8151030203c813d4d85e5fe
MD5 3ed8ba6a12c6db288d7557b574418053
BLAKE2b-256 a85ccfcfb72bba05fb6809cbda9a4f717365644819867cb6079704b56d721842

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c599d633ec15f75e33907f2aa0d2a9d4b4a4755ffb35b080138b776d3e171e4
MD5 f38bd231094d93b55abd7ef191ee0a5e
BLAKE2b-256 5411587325e5235846f165ea25948a07d57e4d2aa525967ca16d1c56903762f6

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37e33c16672c35c62fe9633964360c61406f111c90ef1223a4f6ce170e25b321
MD5 03a0a31548ecccd4d6f6196373c387c6
BLAKE2b-256 2ecb959b1f62cfcbcf053e98b15b38ce709bf86512d5ee17b317211b2deffccf

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c454732cd51185ab152a9bd4fc2a030c4f6d6cbc22360a355aa52bf90152868f
MD5 201c60e62a2d433ac98b75aef830900b
BLAKE2b-256 8c5f95dfa9fc5cd711727f20cf93bc0b20771656c7ff0d28a64384c657ff5ebd

See more details on using hashes here.

Supported by

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