Skip to main content

Performant operations on array & pointcloud data, written in Rust

Project description

OxVox - Oxidised Voxelised toolkit

PyPI Actions Status

A collection of operations on arrays and pointclouds implemented in Rust

Installation

Precompiled (from PyPI, recommended)

pip install oxvox

Manual

Checkout this repo and enter a virtual environment, then run

maturin develop --release

Usage

Indexing by field

In [7]: from oxvox.indexing import indices_by_field
   ...: 
   ...: TEST_ARRAY = np.array(
   ...:     [
   ...:         (2, "a"),
   ...:         (3, "b"),
   ...:         (2, "a"),
   ...:         (3, "c"),
   ...:         (4, "a"),
   ...:         (4, "c"),
   ...:     ],
   ...:     dtype=[
   ...:         ("score", np.int32),
   ...:         ("initial", "|O"),
   ...:     ],
   ...: )
   ...: 
   ...: for row_values, row_indices in indices_by_field(arr=TEST_ARRAY, fields=["score"]):
   ...:     print(f"Unique value: {row_values.tolist()} at row indices {row_indices}")
   ...: 
Unique value: (2,) at row indices [0 2]
Unique value: (3,) at row indices [1 3]
Unique value: (4,) at row indices [4 5]

Nearest Neighbour Search (NNS)

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

import numpy as np
from oxvox.nns import OxVoxNNS

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

indices, distances = OxVoxNNS(
    search_points=TEST_POINTS,
    max_dist=0.05,
).find_neighbours(
    query_points=TEST_POINTS,
    num_neighbours=1000,
    sparse=True,
)

More complex usage, using a single NNS object for multiple exact mode queries (e.g. to distribute the nns object and perform queries in parallel, or to query from a large number of query points in batches/chunks)

# same imports and test data as above

nns = ox_vox_nns.OxVoxNNS(TEST_POINTS, 0.1)

for query_points_chunk in query_points_chunks:
    chunk_indices, chunk_distances = nns.find_neighbours(
        query_points=query_points_chunk,
        num_neighbours=1,
        sparse=False,
    )

Tests

All test files are executable for spot-testing functionality

To run all tests:

make test

Performance

See performance tests under performance_tests directory

Building & Pushing to PyPI

  1. Get modifications made to existing workflow
diff .github/workflow{_templates,s}/CI.yml > /tmp/CI.patch
  1. Generate updated CI YAML
maturin generate-ci github > .github/workflows/CI.yml
  1. Apply changes to CI YAML (do manually if application of patch fails)
patch .github/workflows/CI.yml /tmp/CI.patch
  1. Update cargo.toml
[package]
name = "oxvox"
version = "0.7.1"
...
  1. Tag with version number and push
git commit -am "Push version 0.7.1"
git tag 0.7.1
git push --tags

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oxvox-0.7.2.tar.gz (23.8 kB view details)

Uploaded Source

Built Distributions

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

oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (677.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (708.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (767.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (678.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (506.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (588.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (540.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (505.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (677.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (708.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (767.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (678.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (506.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (588.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (540.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (505.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (677.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (708.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (767.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (678.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (588.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (505.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (676.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (707.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (767.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (677.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (586.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (505.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxvox-0.7.2-cp313-cp313-win_amd64.whl (314.6 kB view details)

Uploaded CPython 3.13Windows x86-64

oxvox-0.7.2-cp313-cp313-win32.whl (296.2 kB view details)

Uploaded CPython 3.13Windows x86

oxvox-0.7.2-cp313-cp313-musllinux_1_2_x86_64.whl (675.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

oxvox-0.7.2-cp313-cp313-musllinux_1_2_i686.whl (707.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

oxvox-0.7.2-cp313-cp313-musllinux_1_2_armv7l.whl (767.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

oxvox-0.7.2-cp313-cp313-musllinux_1_2_aarch64.whl (677.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

oxvox-0.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (505.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

oxvox-0.7.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (584.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

oxvox-0.7.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

oxvox-0.7.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (539.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

oxvox-0.7.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

oxvox-0.7.2-cp313-cp313-macosx_11_0_arm64.whl (445.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

oxvox-0.7.2-cp313-cp313-macosx_10_12_x86_64.whl (454.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

oxvox-0.7.2-cp312-cp312-win_amd64.whl (314.6 kB view details)

Uploaded CPython 3.12Windows x86-64

oxvox-0.7.2-cp312-cp312-win32.whl (296.2 kB view details)

Uploaded CPython 3.12Windows x86

oxvox-0.7.2-cp312-cp312-musllinux_1_2_x86_64.whl (675.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

oxvox-0.7.2-cp312-cp312-musllinux_1_2_i686.whl (707.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

oxvox-0.7.2-cp312-cp312-musllinux_1_2_armv7l.whl (767.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

oxvox-0.7.2-cp312-cp312-musllinux_1_2_aarch64.whl (677.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

oxvox-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (505.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

oxvox-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (584.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

oxvox-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

oxvox-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (539.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

oxvox-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

oxvox-0.7.2-cp312-cp312-macosx_11_0_arm64.whl (445.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

oxvox-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl (454.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

oxvox-0.7.2-cp311-cp311-win_amd64.whl (314.5 kB view details)

Uploaded CPython 3.11Windows x86-64

oxvox-0.7.2-cp311-cp311-win32.whl (296.4 kB view details)

Uploaded CPython 3.11Windows x86

oxvox-0.7.2-cp311-cp311-musllinux_1_2_x86_64.whl (675.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

oxvox-0.7.2-cp311-cp311-musllinux_1_2_i686.whl (707.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

oxvox-0.7.2-cp311-cp311-musllinux_1_2_armv7l.whl (767.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

oxvox-0.7.2-cp311-cp311-musllinux_1_2_aarch64.whl (677.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

oxvox-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (505.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

oxvox-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (584.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

oxvox-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

oxvox-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (539.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

oxvox-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

oxvox-0.7.2-cp311-cp311-macosx_11_0_arm64.whl (445.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

oxvox-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl (455.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

oxvox-0.7.2-cp310-cp310-win_amd64.whl (314.4 kB view details)

Uploaded CPython 3.10Windows x86-64

oxvox-0.7.2-cp310-cp310-win32.whl (296.4 kB view details)

Uploaded CPython 3.10Windows x86

oxvox-0.7.2-cp310-cp310-musllinux_1_2_x86_64.whl (675.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

oxvox-0.7.2-cp310-cp310-musllinux_1_2_i686.whl (707.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

oxvox-0.7.2-cp310-cp310-musllinux_1_2_armv7l.whl (767.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

oxvox-0.7.2-cp310-cp310-musllinux_1_2_aarch64.whl (677.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

oxvox-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (505.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

oxvox-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (584.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

oxvox-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

oxvox-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (539.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

oxvox-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

oxvox-0.7.2-cp39-cp39-win_amd64.whl (314.6 kB view details)

Uploaded CPython 3.9Windows x86-64

oxvox-0.7.2-cp39-cp39-win32.whl (296.7 kB view details)

Uploaded CPython 3.9Windows x86

oxvox-0.7.2-cp39-cp39-musllinux_1_2_x86_64.whl (676.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

oxvox-0.7.2-cp39-cp39-musllinux_1_2_i686.whl (708.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

oxvox-0.7.2-cp39-cp39-musllinux_1_2_armv7l.whl (767.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

oxvox-0.7.2-cp39-cp39-musllinux_1_2_aarch64.whl (678.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

oxvox-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (505.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

oxvox-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (586.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

oxvox-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

oxvox-0.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (540.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

oxvox-0.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (505.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

oxvox-0.7.2-cp38-cp38-win_amd64.whl (314.4 kB view details)

Uploaded CPython 3.8Windows x86-64

oxvox-0.7.2-cp38-cp38-win32.whl (295.5 kB view details)

Uploaded CPython 3.8Windows x86

oxvox-0.7.2-cp38-cp38-musllinux_1_2_x86_64.whl (677.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

oxvox-0.7.2-cp38-cp38-musllinux_1_2_i686.whl (707.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

oxvox-0.7.2-cp38-cp38-musllinux_1_2_armv7l.whl (768.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

oxvox-0.7.2-cp38-cp38-musllinux_1_2_aarch64.whl (677.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

oxvox-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (506.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

oxvox-0.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (585.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

oxvox-0.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

oxvox-0.7.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (540.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

oxvox-0.7.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (505.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file oxvox-0.7.2.tar.gz.

File metadata

  • Download URL: oxvox-0.7.2.tar.gz
  • Upload date:
  • Size: 23.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2.tar.gz
Algorithm Hash digest
SHA256 e6693ffc12d0c0ce77a305fe2947f7dfaf09bda815734b3b09f3a73be109e2c5
MD5 0f416de7150e6c76f0cac4da0c86db7c
BLAKE2b-256 9b25a736d23820ca0b531c3dfca5fe21b9962948b781f7545751631465e10ec9

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cdf9002b4f6c0d05158b4ffbfad758918fc59bfaeb75df6962330410b82a5af
MD5 a1857b11be9d81a897c0e7b93a2e6177
BLAKE2b-256 4aa27ef0f2615f5e07423230262eba8c5751fcc61f14d192d848cdec6a148896

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38e4be5c2f38d9bfde9c3ea7ec6de71841887f18b494ad066f4476b354cedc26
MD5 a172d4630d6292ff8be205f3683ee329
BLAKE2b-256 ca30e317657ccafdb2bbd8bd76338e29ebd2ed52163e0a4442bc6a2431741ab0

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 613e8031dc35e0f7f38825129e2827c3f3f75c77947c10fee8e66f49f263d1a9
MD5 b3cf5535a668d406343a69929631e455
BLAKE2b-256 4c4b9acf600059760ae9e3bcb2444585ae124ed98be3ad3d1ad7c5e3fb109b9b

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83c91e46e01c281303b22197acbe70cd4d5a7a1c37709e9ab6c13084d3d19e01
MD5 65a150150c01d2608acd39ea128f92a8
BLAKE2b-256 100e212368196a16e9b7d3e90685c9f04d286c54726c12ac58dacfe9cf7c107f

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca8490d3edb03fcb4e2c9c7bfbefcbbbccc8e9ea867b93a87c3b8e1b739821f6
MD5 92601a32b2ad1b7d24e7a12159ceceb4
BLAKE2b-256 56628b22e3d49929d41757bbca2daee2e789a08abfedb4635ea7025fa1c96701

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ea8285775328d2f131164be688f8e31485e19f236f52f2835496cc75e48915d
MD5 5b49a343b16175d6e78529e81446126e
BLAKE2b-256 160c49402d3ffbe3c2d7978c44b95d8ca9b0a3b514faecec1f5cbcb2a3473599

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4335e07692921341222c0c3686daee76c7868569decd7838d8c1f0aa3902d8fe
MD5 77a4126159a8c449f0bc38a90e50dd91
BLAKE2b-256 a1baf1218b535d9ad31533ae93064fd3e5628a9c642ec0db84f97b7b66f224d6

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d0e3522eae76db2bb7f934b66efc3f337166a806db4ebcd254b24c3692605a9
MD5 36376b3b1df80134249c574c5cafbce4
BLAKE2b-256 eeb46f979acf8f5762502930e2b942fe55755afef13f69ded1f3297a74524277

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 daedffa4c4cb7ef87181702e2a2b0876fa413bfb2088125bfa073c5e7f9e9c6e
MD5 71f2f8ca0d68bc5ec706f6dbd319bd25
BLAKE2b-256 ebbf594514339c357d4dfaeb23e282f8adc04a7803616a48b85e84f88eaaa50e

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 765049cf95d3a09c14746e018778e7e60e222a366ca5f1e44f9127301bfdf48a
MD5 396cbc68359895542f1517bb289fcb04
BLAKE2b-256 6676768386d598dafe7466f5953d81628c8262ace80313e67f07e69f4b0ece01

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc93917d7efaf16a390b308d4a452e223b3f6374c3c465b53f86e90c754b1131
MD5 53b5f9baeb59242754d4c3a927bda0d8
BLAKE2b-256 7967183d0a4debfd1cb6d08c4ad77a07c32176bcd5141613f71b3d31762eb8fc

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ea6b1cfd8e9561258501cc94b4da970ae97e0ac57c341058d267935ff3ac7ce
MD5 dd4e6827e21493588750f3495d87b24e
BLAKE2b-256 c6a7b5af0b83b18f4596c9e7e6bd4ae59f10f0a0c6e59f6eacd0baef45b4fd1f

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ddc626dee1eced4fe911324a0833fce7c90878935147a4c9e221b0e979bc6b09
MD5 6e021379514f9a6570f8f45e066311c5
BLAKE2b-256 3d92964e33ae0c343d5934e5c003c354e7399e83822d35fd1cece98b61f97da5

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3449f73ffcb00bdcb3ffa10abb23ff2dab4edd478b652e956077f3deb70788bc
MD5 6d62bf1b03f7a3cd30523a4606f4a9fe
BLAKE2b-256 4814a01cbfe4adce8225e624a19527b1c3ec8eecd71e544ce6840242f96fd30f

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57c0fa7817304835d4a14456d63447b5e4160ae3ce7e8f30a91d170fdb6c545f
MD5 18c6e61f87af81107025e5a914ea4798
BLAKE2b-256 92477d9ea4b92ab6c35cb6fe6ba11084e41c24f47e74024f89d888e3e6122227

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f21940642115572e35ae700c2f434100c1324de6fb9264687d32125f064b2ec
MD5 bb7b9d36b7e67399da1da0a01c9a1d13
BLAKE2b-256 192294cd68e8ddcf9506035afb4dbccd066f7d842c728b2b2188f4e013664717

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6034d7155e5f73bd326784b6916d7a6369094a7f89f76ef1c6c03137d5d492e
MD5 fd2d5d6e58b86b9a03e898d80cd6d694
BLAKE2b-256 3ac96db6674fa0136ccb17c0f75691a65d0fd1a78714fc3d27515ec52a0382ec

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f69419ad13e16559f817cf85836e7d3a76143faaea48e553a2bd597935444d58
MD5 e52f1bf09092d6710b1cf5ded0655bd4
BLAKE2b-256 35c254ae96b45c8fa85e0c303d77010d9388e95ebe22bd63e112280b4a195968

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc96ae1f78acd34145c3a0a19ad448cdb251ed580f8fe39f88e7afe7468765be
MD5 adf117b95d6c5bb6b9a67fa4e3611f70
BLAKE2b-256 498396e65c8a692beac8ef80eb152ce64a38780542a5b9ad7f538ad9aa42c6ee

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8afb8d09b879242b1af13f260fe60766b553451d80e7f0db91e0fa36af4ba90
MD5 431fbac73db37047491da9c91dc99ecd
BLAKE2b-256 0e6c3e85eda8d5dcea90f0ccf519d7d69c9fd08ceea7cc0463404ebddb1721e6

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c3d9a1557f443f894f699e63e16588579eca79044aae0ff80694f83e712a4b8
MD5 9a9734a9936de0bb47b48b0d118ef2a7
BLAKE2b-256 c2683fe6cf9d51a96ef8277329420526b01c2c1716d1e6082a0f3baac984fa70

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d5f8fc1f5814b39c80cc86a7e8c2868ce8f27d6d3bffb423390b0d5a05ec2be
MD5 339d8fffc43d2e7a47976aef34598944
BLAKE2b-256 2dd9e0459ec885b1a287d7c8ee88549a3d44a61e0d29e1f07efd510f7c8e0c99

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a408c07dee9357f4d5ff59f79b2ae5a3291088ef1fdfef9da977658f8a02228
MD5 910ecafa27c039298fa108a98991c250
BLAKE2b-256 8ec7793ba81256bd1925b469a8f600f3c1d65ce2976ad058ba93b378f4435213

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 477d7101821d5c4c73635b211f6a6f81f5a030a85740baafdc9d827614517f06
MD5 c79b39ee4fef4bace384fc4143f22618
BLAKE2b-256 3443af8c07bd63c6099b389927ae89c8dca69005bfb387bae055a4ee91e932bf

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1319209f71696df18b30d3b4dea05a7e403f170d50de1b1390c68f29be4a8ec0
MD5 be6903748af4fa5f355c5e56880c0f2a
BLAKE2b-256 30bf9f7176bd71b7b94d0411d1fa2009618f6f30d69992f23575e460959dbff0

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 214579b74731b638bf31f41816c798a4b6dd6ae2cb2ec3a927ebd59fb13fa1a3
MD5 542466f5a9fff0556917b87c25259475
BLAKE2b-256 9f0ee81d17eb12e40c475f84f4558d0e86576b6e3dc614a21ad818a9589aa9f7

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d7cb5f655b32b6bb9a06e5ccbe37de4d91e2fbfdb973c8f46b22ad156ac07bf
MD5 ae2ef9a69975799b6e63defc96126ad7
BLAKE2b-256 bdc582f984e1585b2b508ee5c971f0d3a2f0a738d1b802643c78c8440151f587

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3bdd432011a0daf1cc87582af0bcf89fd969b9ab4be4b01d148dcedfe6ddfec
MD5 eb4ed4ce01ca1175fb17248999d808e1
BLAKE2b-256 e5d906445d93e5a386bb9ea5661fe61ec39ba69f0bc3f9c39ba5d980ed8d225f

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0e6e39bbd9db597758318722b67eaf0e95d02256e70ec522699a9577c63abd5
MD5 3ae5e171b6724c32f28208c1eccdc50d
BLAKE2b-256 81abf349e14246b376753b88b8f87bc1116e2d1076ac81abee0c4c624d14fbfb

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c199eea2448c6c67e977f7dec26df9c074c43f66ab4a57efa44eca05f9b3d2e6
MD5 4e07538322166a1dd9ab18e5113217f3
BLAKE2b-256 a132f2912b48fdc7d1857dd845b8e52c726cf0f08f76b7e9c0cbcff195aeb88a

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4cf502a59dffe7676c3158d9b24a1e611c8ae874f3ef50815adb42652ea40c1d
MD5 d5ef90412d54aac15cb843d8a0c0e792
BLAKE2b-256 f1219f1f7d782609e7c40adbe9e401e15e79266a37b67f5cbb99fd5845c80400

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3835c480645805d8779900ea5ea6f6c6a70fc3efc5444513ae7ac1d6d4c3f68
MD5 491ae5d944dd224cca4f19d3cd4d4912
BLAKE2b-256 f921e434516b1a7f91b8be4956e2b12039adf0ac645607d752ff8b7bc120a901

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f9768da2b802392cdc8e9e0735d32bc8160f9a0f78370b930fd8b6e25c05fac
MD5 682e07aa5ffb8bf4f9ea051eba6ef908
BLAKE2b-256 78ccbd4b690ce96ae9421536157403f49cf44a7dc7cd669ceb69503ec21af066

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 403de027ce1e35bed72f7a095c00e1b0b175ec145fa5857c663f6ada4367e48c
MD5 cc01984e22b61a0399cca929af3de47d
BLAKE2b-256 60d13d1e9fe4b1b309876af59cd4c3ff0b44f8ecebcd9825d1c8889b04e31303

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95a077338b9054e8fb69b63d615799d5ea0b1a5ec329204e728d28c9beb8ae57
MD5 5d06174f363204eff5e8adfcf77c3fbd
BLAKE2b-256 0aa9670e0318726f1455a843a492c45334d81564e9fd76e589b4c578b2a42d36

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d4e3fc625bac20b9124b8690a662b8271c2383f5ecf9111faf243f6342f693d
MD5 1c042c33ed1f2ec732f56880685b7f32
BLAKE2b-256 7a034ffe582d1c2fedc4540e87c0c2620135a4a6b7c48509925864d70f0c62f9

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 314.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 04648952a8e85f31c3d8424ac8c35e42bf37cc8d5dfa29ae317e4ff90b25b088
MD5 2ee9e361ed89bde742ff9575f37ba25e
BLAKE2b-256 62353c75d21833099f2ae66f9fcd03f304e51acfaccb207ef27b30b727d78fbb

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 296.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 359ff3626df49468f341d80d1e50af6184cf7eae72cb788aca77d495e3421f27
MD5 feeaa06fa1563f774aa92a47f680bf61
BLAKE2b-256 2b11353daada97f9a469b8b62b050d5b3673d2616f5311a14d3c135d42747869

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c4888febea48885a7275ec5e2e6a91b093dac302de4161476063ba776b3d8f4
MD5 07e5f10e3973ce4163bdd4e59d8f1c87
BLAKE2b-256 e867d864f875953914da78ce11c343ba66b1926654a08654fe23ba93dd3342e9

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 694d027b9a33c6244707355ad7f485bb7ab2a669e7ce2f3c551ccd7c67a6c865
MD5 a4d4c6e6c296b06216b2b5619f27cdb8
BLAKE2b-256 eee2dbb7b232956e62308b6b61616af3efa1dd34c9b28fbe57beed4c72ddafc7

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 295a99e2cf910f07b5bb8db542d346ea4090b02ec9def5840064c8b809b1ec9c
MD5 4d96dc9edb73715ee47bde1eebc56efb
BLAKE2b-256 5290bc33ec76d396ecf62c74ab35f78827cb79a59ba14f73bd552dd610791fe7

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f61c606b3772a69b062f35824bff2bb8ecfe1b05ca6a3272b094c97e6da561c
MD5 69eaf43ec568b80329ccf1a27f629a0c
BLAKE2b-256 c768fb0d596829d8d1cf938c504be5e6a682b8f0ef400222971ac1134456521e

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a488996d32efcb61638930ce6fe7a0f657561faa6a298f181ec1851dc76392d6
MD5 fe40ed4177d01c9ab24dba4a9f51d150
BLAKE2b-256 984fefc0fcae72616c7fe4411e3b564522b2a928b5d671ab30500fcef23f5cbd

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f59b4ba8211eb46466ed3395fe04ee7f6924b93fdc98c9c51e8c3e69c0105f6
MD5 67bda0a3d3648440cf45a98a0280d35d
BLAKE2b-256 bf468b9b8106caf27748e0919f95bd6195d612c478eae8d735810b5a3f04fe5c

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14ef32214448baee77032f7520fdc751c6032682097863c809cc174b836dd656
MD5 9d27657457315bed72b45cbe79296576
BLAKE2b-256 14ce2cbbdfe3412f99374e74d05103a6387937529addbce51629dc6a695cf96f

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4e5ee34b665771b19d58165de815e759eb9c1d8c35fba7f29c98175557f6cce
MD5 8908145896a84713d59bd00f45fad628
BLAKE2b-256 e987174a8b7285aca85aaaf5edcfb207dac4643e0f3c9f78667f6c2cdae043a8

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 198c63466a1e1584072834ee2d37c043aea3c92689e543b6079ea2f8aba7dd09
MD5 e85d752b48370ae1940b5233f33396c2
BLAKE2b-256 b92e6bdfba1a2cf64adf2e4e088d02ef4bb3a62ee93f453dfa83ddc75b6a00a2

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e8c578ed75d65875fe4945d33f42c0b178aa2e8d2d6936621f246fa65265a65
MD5 a3479787cb8da4309b33e7118cf0e268
BLAKE2b-256 d8589d68d9606f93792df8c3465cf30b285d13a5a9d0c3b96bbfc35db0a75c00

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 982a037c80db6c9ee429104571409f831d4e1696e8f5b6d7b88188d506b7bce8
MD5 deb0412b843ba56f86cfeb924dd0cdd8
BLAKE2b-256 5294acedf2828f66c5089ecf6ccca786e8721f3c4c8a159ad1d793ff67b8397d

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68a78ea1a62e1ff1b6949f4386d5890c82d0591d76143deca866e78b56d819e5
MD5 d028f79e5634159fa2569216b1d2c671
BLAKE2b-256 4f0daf9cf29f0c1d1a98b81923e13edf6794764e3b5f1d5a4edfc90dbfbb7541

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 314.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f848a9aa2cc7f186266b77d627bbad3cd41083f7f26ad216efe29bdd31099de0
MD5 3d186bbe5abd3467c4ff62f6efcdb127
BLAKE2b-256 433d6b21c5ff1bf4e67ae39661d2ce8b8de0aabbe783941c0a5ec6d8605afec7

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 296.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2054b4a60a9c18a176f7115a29a217f437fd1cfe90a59d6933af833eb904e3df
MD5 5bc98720948c1a64b9959f469229d8aa
BLAKE2b-256 83709b813845f396db4b2b42f7093a6f092585db2b5f016f2f313b1f12e570de

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35607a96755c98149a7cf09ecd7d4ce06d834be8351731a8debed354f2b8bb7f
MD5 9a2797c49bb6cc0a8445378c5f4f7dd3
BLAKE2b-256 7433d1603e702af0fa1bcc7e39ffae97991dcf8c923a4f3a7c9ca4a8ec6a08df

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 073f206542c16c972407278fc5ea0327a7ecaddb0709bce72d1b4728bdcd4421
MD5 ceffa9daa984b65260b5334255a5621e
BLAKE2b-256 e8d9fea3d70888d0b042afd087a9a8cb719ca92a77149968ba8141977f25c3cf

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a92d3854cb80a460c6b187a1a28bbdaf79aaaffc6825242de80d116cc9318bc
MD5 837dd8294f56ec82407aa34ba3b30e3f
BLAKE2b-256 5eb6f46cec30472a4a7b931f2da44192af17dca4907e972770ab2c6222e1add0

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce999e9063431162ffd91fd06d6564d48507fc1b2451cd4c8357bf99d2ec8182
MD5 fef7e4c798e7e333ece402aa6fc63060
BLAKE2b-256 2c8f112a890399fcc6851577eae2cc9c428e7d59c5aebef814a1a9ed33b22a51

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a80970fd12f3e696aa727423a97e4e814178135286e4d42f38d7b184fd673727
MD5 2156656238ecb01a7a210a09a54478ba
BLAKE2b-256 7af3c00b6016619b9549c3a6288484fd5b572e38ad6919f22c270ec2f48fff97

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90bb43bb5528a3ab9b23e62120943554f2d510959cb84804f712c02149077e16
MD5 e5a280f8b74bf423c3d00b77e096d3d6
BLAKE2b-256 3150f5944c20817d6ac0c6b729d98a959539bfbee53e398a35332976ad8186e6

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e80c65dde45c8ab464d0178f4a2ce4e4482407a198009aed1a0cae5a7a1b231
MD5 ad247f6d76eac321996067c9f5da574b
BLAKE2b-256 dceb86bd1c57716330f18a1f63f547f638d72f620c1005874392f45391fe68f2

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7218d2dd744fd43d1a69cad99c8fd569d93a462a3fb7c1f68f4619b3f4b4c45
MD5 5190fcaefb4f0fbf27656f42161cbae9
BLAKE2b-256 c3dea5e44244605675d8b45506f907b64108c829a8e114f822d90a0e751b437b

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9cd951fad8553fa0f5a9c4acb42b8d61a1033671aceac945045afa58beb31257
MD5 1adb1db4587f7ba55bbeee8a16e114fc
BLAKE2b-256 9287868ca2869a17a972443df3cf8901d4b54116efca938f29679d6d5e85d02a

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b41f9959aee051bcf4b8955681d61b733dd81caeb30a6f4833d050d8c66698c
MD5 aea4908bae0a0b241e948f91beba88e9
BLAKE2b-256 f6eccad537cd96e567d57178391b1863fb47e8a4e76fff023ac7e899f677b0cd

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d19c709c3c62ca8b284c18ffd42ca0e4fed5809f98decb586f644ec306f78a0e
MD5 12ac5d1ec19bd1796e195f9fb1d3f788
BLAKE2b-256 82446dd7bdda6fa2990c6e40cf433d3230f8bead9f2173964abc4494be24d9d7

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5fa22013a4bdeb78ba67bba2a7cafbe5e7f58729cba7ec28ef3c8f70ae816f30
MD5 71b00cfbcad4d2618085c720626f98a8
BLAKE2b-256 e592aec81e8051e4279df3273f7a16ce2b962149f0b7b3234721e7845db53af1

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 314.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5eee736e5753643495054a0506a613e4f8cfa2688243a6726d35e4053c951dd2
MD5 29fe60deb277b345274ff3d429fea3c3
BLAKE2b-256 cd59963e1724d84858b9a3877b7f0e8c71680bae648a0c7fcda43a6825e7a46f

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 296.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a675ecb48b525e1c3fb702fc492b39dbec07715b1172b165bd5d721b0128c25f
MD5 3d1c0a1a28b73353bc82996b146baff9
BLAKE2b-256 da38ffb8e90e8ce580523567c6c4db934d7fcc0c8b5e00b0a56dd42846fe1ef5

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d18d50afdf6f06582de52a2cd631c35e1aef537bf28e934f6b9b0b2d17444d9
MD5 e0b0c31a083ed89ae8e8e6c0bcfa14a0
BLAKE2b-256 1726d8c953addac46a0a5339200e0f232af1ab40b7ba0a149f56f26c566aca50

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71a60844eead2b3780ec493624b1cec493ecd34dcecff210ab2c1d2c613333e0
MD5 7df0ada60e2ddb9c81d1f445cd0f10e9
BLAKE2b-256 80e025b09156ff1a85e9bbb19b191fff3ba442256e83c7940c3733bc8e729f7c

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1fcce9c6b01f22c953265d55f05ea608f4c96e64f6cd5494e9d9813f7fcd0794
MD5 9b992219f916a2b5cc70582057c8bd73
BLAKE2b-256 6e227f3764d8779b21c94f7d33100aabdd7f8a54255d137935f1e3dc55651b8b

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a700d832d751c1c208cdf0a245645df7860096dfda5b97af62e6087a43c3ddbd
MD5 a2cb43803f26c3b059b0312f81b82fcd
BLAKE2b-256 d29b6cf3b574cc03e85504fe5a23b3e4c898b95aeed1c063bd6271088574c0a9

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c25f8750ad311aadb5707fd4a6e78cc6790f29563c67ec915d373bb0835edb96
MD5 7a4ce69314121bf4d731f935ef1f4b7a
BLAKE2b-256 dd752e1939e205e79ed52a5615aa3ca77404cce42bd90f5d785bd6d16d4d3d14

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1dff627b479b7b101b215531dc3691086a03e5994b43e9d7c5e12767f0cbb92d
MD5 f19f3ff1d022971bdb57b16decdc4e80
BLAKE2b-256 786511587618c645d05448d0940945f9700fe1fc76bf458a613ab047ae466157

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21d27d96a8ea326b4356b630a8dd668e66aed226031b557eb29979e87b3d25f0
MD5 9bd1b1c6797fb8198dcd1bb45ea32523
BLAKE2b-256 157b67b22fe2c52809b641e9520f9eb1f2f48080a804f566cf70afbdbd28a9b7

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c5bf4db53dbd980fe89ef239932bc1dccf35d1332eb86c501be0f48312066ca
MD5 bf937155ec2929eb8cd929ba1fad6e47
BLAKE2b-256 7f8398ba9ae1aad5181d916b5a6b7e441d10526a2e27011bf4656e02adbe915f

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a61b35c46f4dbd4afef77982fc8a32d5cb720c94e4b323c5966a37f59bbc21a
MD5 4a3a9b1ba7f9e46c3da23a8625179398
BLAKE2b-256 2204592d22df3bbb5fcbf96015d1a970b5825fcc4e2ecfb98b275b76dc6e323b

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ee28c5f9e37ae51ce7dd03862d7e9a27eca37798ced546054c14992667c5e63
MD5 37f4043301097fe8f8123feafe56911c
BLAKE2b-256 ed6dc83dada0983fbe7fcfa804eb110f758e5e2c627a26f66d2ea01942ef2c8f

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e062177c8a3b0d482538bb4e2d68f7613c9966c2f8a17067cff04f561c2f84bf
MD5 2d3a49bc6c5d568e1ba3d62ce32cb82f
BLAKE2b-256 b63ffa1a67a0abb4c1c1149edba7c1f2dfb906f834581dbe79f7f02084bfb15d

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a9cc309382ead42fa75f13f215890bef48b67b15e9225375ea00c39b94e5966
MD5 b8bf897aee24b91b93ef74cf9c5d3a6a
BLAKE2b-256 5b2fae124f121b6bd93c98a0187fc39f00c6a566738cb3c20bac34842d3b6204

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 314.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d4c34837a8d8472376a01bb8c48dbfbad2e3cfb89a273457a75cce21f5e6e00
MD5 3ab7806be3542a9c8a3d12f8fbc33020
BLAKE2b-256 f1966315e874ae73299f245d1e34c3c7e216120637929dd5693a31571d24f2e9

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 296.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 05306e5105e1222d956658ce153ad9001d16ee631b61c3bc38f4b8235ebc84b5
MD5 6840c434fa253ce0a063f504128d7c5e
BLAKE2b-256 46de927b766ecbca14cdb59cba4e99a7098748c8329f1dbdce7dc425733ee2f7

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d593a73f379ad64b27a750adb83f5f78ef77761c3065028e068c680d5e25030
MD5 b348f40ba6eb17519024e2a2a934c4af
BLAKE2b-256 d5d305d365c82e05070ccd115b37f4ce2e1dc97301b4bd7842071e71ed5dde94

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58af460cd9b93b69ee95c30e6d62c1feefb01adcedb89acc908d74f0bd956eed
MD5 1a68cc471574f79c94e9dddcc8ee1804
BLAKE2b-256 362cd0c4461d1fc2a48346ca4d5a951c7ed3814cb9350eeea62540986c24c38b

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 755c95a1dbaadbe08901b1b221cc130d22f15208219c6ddc9041c5e1a7223807
MD5 34374a308cb10c28f1d5ec73e4b96244
BLAKE2b-256 e4da20ff2528d9173847f4ba13c3ad6e082c6930d55e4cfe22f91a99927c2c59

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b396e81f15c94166a984d15bec9329d042d656ba36ac22f078e2205245677f9
MD5 d0bab26852d1b0a66b34ca7be55aeeae
BLAKE2b-256 c7f91c3e6a10fb614cb4f5f65da7a0e39c4d621e6c7538d1f85b4be83a97dc4c

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0df28aface8b8074fba5ab003c1ed90d5c30d634806bd894fa5c0b4d1d45327
MD5 8759550462c893b0a7fb206f78d34232
BLAKE2b-256 faff0877014da2df405e05acd7be9c5db346abd9726ddcad9da76d3adb982671

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea0133e1f327181030599eed54e553a6e2ad87331852583a0fb86f8610033db8
MD5 bea50d4f216138c161ecccf928b1b9fc
BLAKE2b-256 f8cfdde9fe75fc103913edb919db37f37190fb0c44648ce3dce2e6a0d30eb35f

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f7b6401939f9a21c8ec65dabe7518b52eddb30ed27b39a99d3fcc5b74a7f4dc
MD5 a51e79c9ba38f9d73a62bc6dc3c42561
BLAKE2b-256 4ef91df46fdcf5c6c37068d8d8840a985bcbc36a86dd086245c58e60b0618bfc

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 193a7a6dfed80fdb5338d012c2dae521356e587a404e4f9988a28ec0e6ffe184
MD5 f6dd4a5a31235392b36135ee110bec71
BLAKE2b-256 447470405815ec0beecc622e4a2c508a7b41695228320b9c2acccec170c8378d

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01fc9d4dc11ee4c25038218e507cb0e5367e46104ca93669fe5aeef2f9073098
MD5 711a3c3b954a2ea172dede871550d785
BLAKE2b-256 0541f9defd23fb27c5ffb7a3b49b0db2ce9a351061ad6f344f1ff1c2ac9affcc

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4354bad2da761f5ed06e6f23431261fcaee0ae7c291b34453ee404cf39e7587
MD5 dae34a2e2994ea12aa120f67ce7aa3b5
BLAKE2b-256 def93b43a24c6836513b5070baae03018b6c26e4cb18ed5794d0fd87df6eca5a

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 314.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2ca66a797364d65bd6b7934b2842fbc241fdff59893e0c04fe08bffd0c51bae0
MD5 4332e5587f5eb518707a5c81b8f71486
BLAKE2b-256 c0434c9f9678a2e7b02c36dd294ed5354d07d74198d4599a88d35d8b414ee9e9

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 296.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dc0e4fee55c22903437f16a94889b5b964ed024a2bced706c75b95245899ce27
MD5 c91e137c89cc45173678f0853dbb72d9
BLAKE2b-256 11e367890b6bce35c8272c265c7ae5603aa70595b87d3fa0362f6ffc104586d3

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c6e7cff49ed56b6917cf365092ac95ba6f337c3609b7dec145496c2e0b6a701
MD5 76717cf181f74acb5b876bf564dbc6df
BLAKE2b-256 2b7eefa7ebb0915e555a94d5f3878846f856d65683a0bb0498043a4546bfade0

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9adc2c6efe0a554b02f4a8dfb5268645b6870bfdcd96db62d858c878b51ba82b
MD5 575e2ab66553a104dfe75ad4b811a81d
BLAKE2b-256 d840025c33381a03a42922ff746c47443c3d7edf0a069ca572f76d490782d004

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40d2e60e3b9c343f2f84664849879dd0344518803bd4bb86674ff99c37ce702d
MD5 49b6b2841efc05705796d33827ed0018
BLAKE2b-256 fb6a458afe802ab33a2e84c978a56854f4f977ca19cd1d3c625b4538b1e20ead

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbed18c1ef05b7ac1d25b3915f228e5468492876fe4368f175f6ef3f1e58556a
MD5 941af379a86010edd79bae8f48aa3f5b
BLAKE2b-256 e43ec7d745379fa5aca460f6d2c650eb40a2017259bfd1f6cb234d9d264b34c1

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c85fc336a2688a962d1ebbe2396557eaf94d4d6aef0f507acf6dcd6dcfb92c2
MD5 649fc7d9351d9451c5d2093d593beea5
BLAKE2b-256 a872c68358c7e83217f9ff2337e2e9fc3d1f034c9ee784d517f8074c5f3cf553

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d4b806ebb7590c04f3a1300b7d420d0c57580ee009114faf6cb54f9d760e365
MD5 eea75aeac59ca36e2809324361c043cf
BLAKE2b-256 b66c2aa27bdf7015816ef18473d0ff21ebc74ea88625451a1236f266c24c8207

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e12881b701a1756716b217d2fb413e9feb54595ecc8d21c1555a9cef141bcd7f
MD5 01225cc8f3310839995e622fd73bb3a5
BLAKE2b-256 2c93e3d38e4478649e866e53eebe27508943250a333665e327b9bde92cf73ae7

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01369a4b2586f24dab42783ed80446fdd22ee352a207c9906427fa0854a2685e
MD5 d74933d2c76c63b41fa5bb15758e1bfb
BLAKE2b-256 76d756f98a7cc56e42f61ffc75de11f8d3fbea3abdf7c111789fbdd27f1a1145

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8255f973688ad8b46dd32abffd7a4709f8c33a37218cb1a8c9f93319349ce7bb
MD5 711fb28e146074aebfcf4141d568b44f
BLAKE2b-256 51153ff669064f48e8148e41826ea7d90f72a7d720ac7ba49122eb59489de2d6

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a575883e61afe0cb4dd869c2bb00cf3c02b524099e1c5a39c4cfd966ce0bb609
MD5 71a9e271df91f034d9b11c875b3542ab
BLAKE2b-256 4c47792349c4174991c3658acba38459c03f8ba0a64e2296418a708bfa603ad7

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 314.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2439fad869a7884af93c6ce53f7670836c8f20f6cdae26add02d8e190d0a9cb0
MD5 8c43c7b88bcc153df2bcd668afc5b723
BLAKE2b-256 2ffe04b997c9b851997f4c035b815d42f5a2fc6589322f803f23ea217c24e98a

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: oxvox-0.7.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 295.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a9bf4efb07d6fefdf32a6a2f8b0feaa9ee16f2fa6e59fd3ad7946a813ae95462
MD5 0c4b65109e3cd2d0314f3d48172519fd
BLAKE2b-256 bc680251046ef077aff37b558de8224d0c39726b33be7bb01838ba971f7b2101

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 191aedd58ef663b4da0df210dd22547a1006aab19a0d5f3c99fcbb23c1955ab7
MD5 378a8af0730a0ff8744d468354bfcd76
BLAKE2b-256 81b0050770a6466a748a1432635cccecb2201113b4b66f6e4f3b39db0592637a

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7b987967295467ae2f261b8070e60a2c4b50c8d1cf27eb7c0498a7698d2b365
MD5 28b9cb6f74d22e8052bdd1fd136db862
BLAKE2b-256 61807655b9d8b1af6f1288b664255b506e5824b89bd7cb8950e49173c97c03f0

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92ba47d4d198262522a7d5154b9e709cf5ffd6dbe9de1c09f37f4a8a2dee94ec
MD5 eef0b470f8daa4bcd62601a5e519ba21
BLAKE2b-256 3d0552e1947b148247ef2aa7143600ff7870df3daf8c57438d8a0b2704dfeaa7

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9aa7ee5800f23258c2e42660af45d82100032926e2e51925f4bc63231ed5538
MD5 1695c75bb44e910f34303a196cec7370
BLAKE2b-256 bb7acfed9d0b180e97de4fdca6b018cf7f02e6f71e71f77d9ac7cd5e36d7cc85

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43ff386a51e82e2ddc3ed134427a2c3e29d5c2adad74f9dff703c65c76fab58a
MD5 8cccd112e70b7ae1dec1bb9118099a89
BLAKE2b-256 131dac1a5dbbccbb9836184b4fd0d3a1235407b3caaf27d22904524122671694

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecc7c482d927d3abfee9296b49ce1bc2d336673f9499f6d1f68239d66d491fd0
MD5 0337ebff43acb70a8cc0dc33fd0d496c
BLAKE2b-256 31f02b88853688f5a717d00a134ccdfd736144cbe21d82d8228b1e61f594942c

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54dc2dfbda97f8632c6f83101068ac6537879279beab4b737fbb9405b49a14c1
MD5 05423cff9f36bc49efa1306521728c59
BLAKE2b-256 52588e86738674cfef8d7f39da42e6ecc99fce456c598bb8b294b271b7b0d568

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81c97d7ae418e6439c65b27ca54ebfb96c1cd86e9682dd224aeeb30dad4f5006
MD5 9c970236ef1fcf212e0394f5c06e47f2
BLAKE2b-256 b0954b43e5667c1fc641805a1b3cfb3ea1146618b66fa1c6c7a698775c4292a3

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 72095d255b9a4a4a66e0e5e32216560862998b5db0674b617ac2c53f85bdb569
MD5 bc186a0b304783105b42b228c3d22914
BLAKE2b-256 8fbdb4c97aa7bc61e097f9b5129c52d29e736c5b95a98c09e819b3fc3c4f152d

See more details on using hashes here.

File details

Details for the file oxvox-0.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxvox-0.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a73181a9a20705a5f867f1f68e2f1517d35b14171a32969aeba8d4366b342805
MD5 6ddee5a24fd684619dfc26602349bcf5
BLAKE2b-256 bd1fb6d2f87a48d040591e80512cd904693c86e3a63a2050773630062ffa137a

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