Skip to main content

Performant operations on array & pointcloud data, written in Rust

Project description

OxVox - Oxidised Voxelised Operations on Arrays

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

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

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

oxvox-0.7.0.tar.gz (22.9 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (676.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxvox-0.7.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (707.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

oxvox-0.7.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (766.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

oxvox-0.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (678.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (505.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (587.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (540.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxvox-0.7.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (676.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxvox-0.7.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (707.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

oxvox-0.7.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (766.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

oxvox-0.7.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (678.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (505.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (587.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (540.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxvox-0.7.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (676.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxvox-0.7.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (707.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

oxvox-0.7.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (766.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

oxvox-0.7.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (678.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxvox-0.7.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (587.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

oxvox-0.7.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

oxvox-0.7.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

oxvox-0.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxvox-0.7.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (676.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxvox-0.7.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (707.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

oxvox-0.7.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (766.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

oxvox-0.7.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (677.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxvox-0.7.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (586.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

oxvox-0.7.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (571.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

oxvox-0.7.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (505.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

oxvox-0.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxvox-0.7.0-cp313-cp313-win_amd64.whl (313.9 kB view details)

Uploaded CPython 3.13Windows x86-64

oxvox-0.7.0-cp313-cp313-win32.whl (295.4 kB view details)

Uploaded CPython 3.13Windows x86

oxvox-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (675.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

oxvox-0.7.0-cp313-cp313-musllinux_1_2_i686.whl (707.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

oxvox-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl (766.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

oxvox-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (677.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

oxvox-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (504.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

oxvox-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (584.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

oxvox-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (571.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

oxvox-0.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (539.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

oxvox-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (503.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

oxvox-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (442.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

oxvox-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl (454.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

oxvox-0.7.0-cp312-cp312-win_amd64.whl (313.9 kB view details)

Uploaded CPython 3.12Windows x86-64

oxvox-0.7.0-cp312-cp312-win32.whl (295.4 kB view details)

Uploaded CPython 3.12Windows x86

oxvox-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (675.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

oxvox-0.7.0-cp312-cp312-musllinux_1_2_i686.whl (707.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

oxvox-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl (766.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

oxvox-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (677.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

oxvox-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (504.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

oxvox-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (584.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

oxvox-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (571.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

oxvox-0.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (539.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

oxvox-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (503.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

oxvox-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (442.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

oxvox-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl (454.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

oxvox-0.7.0-cp311-cp311-win_amd64.whl (313.7 kB view details)

Uploaded CPython 3.11Windows x86-64

oxvox-0.7.0-cp311-cp311-win32.whl (295.6 kB view details)

Uploaded CPython 3.11Windows x86

oxvox-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (675.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

oxvox-0.7.0-cp311-cp311-musllinux_1_2_i686.whl (707.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

oxvox-0.7.0-cp311-cp311-musllinux_1_2_armv7l.whl (766.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

oxvox-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (677.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

oxvox-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (504.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

oxvox-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (584.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

oxvox-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (571.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

oxvox-0.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (538.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

oxvox-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

oxvox-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (442.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

oxvox-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl (454.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

oxvox-0.7.0-cp310-cp310-win_amd64.whl (313.7 kB view details)

Uploaded CPython 3.10Windows x86-64

oxvox-0.7.0-cp310-cp310-win32.whl (295.6 kB view details)

Uploaded CPython 3.10Windows x86

oxvox-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (675.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

oxvox-0.7.0-cp310-cp310-musllinux_1_2_i686.whl (707.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

oxvox-0.7.0-cp310-cp310-musllinux_1_2_armv7l.whl (766.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

oxvox-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (677.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

oxvox-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (504.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

oxvox-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (584.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

oxvox-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (571.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

oxvox-0.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (538.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

oxvox-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

oxvox-0.7.0-cp39-cp39-win_amd64.whl (314.0 kB view details)

Uploaded CPython 3.9Windows x86-64

oxvox-0.7.0-cp39-cp39-win32.whl (295.9 kB view details)

Uploaded CPython 3.9Windows x86

oxvox-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl (675.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

oxvox-0.7.0-cp39-cp39-musllinux_1_2_i686.whl (708.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

oxvox-0.7.0-cp39-cp39-musllinux_1_2_armv7l.whl (766.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

oxvox-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (504.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

oxvox-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (585.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

oxvox-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (571.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

oxvox-0.7.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (539.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

oxvox-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

oxvox-0.7.0-cp38-cp38-win_amd64.whl (313.7 kB view details)

Uploaded CPython 3.8Windows x86-64

oxvox-0.7.0-cp38-cp38-win32.whl (295.4 kB view details)

Uploaded CPython 3.8Windows x86

oxvox-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl (676.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

oxvox-0.7.0-cp38-cp38-musllinux_1_2_i686.whl (706.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

oxvox-0.7.0-cp38-cp38-musllinux_1_2_armv7l.whl (767.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

oxvox-0.7.0-cp38-cp38-musllinux_1_2_aarch64.whl (677.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

oxvox-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (505.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

oxvox-0.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (585.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

oxvox-0.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

oxvox-0.7.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (538.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

oxvox-0.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

oxvox-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for oxvox-0.7.0.tar.gz
Algorithm Hash digest
SHA256 bebe11d601b8fd69040add6b31fe6a0deb0035985fe1390e63abd452a1e114ba
MD5 932647055dff6a40215dfd0d145be8d9
BLAKE2b-256 7a3e572b7d73063d6703116f9f8db4e3731e8627786960bdc9d36432833a9378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eebdc235517aed425217413e68d58aa11da050c868af4f384652198d3516cd58
MD5 85b1f8553b80263b3a3f9f369c43ca3b
BLAKE2b-256 e9829bb5054868f469ddfc9b540aab27e5305e59c8aec7948130975ee2019ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a293fc63f46de3fb55b4effd8dada84e3cd4dcc4564236972e62c2957012fa6c
MD5 0c215a5fc7f698d16ab1058a9c4c5174
BLAKE2b-256 7b1376926e463d3631239c8a2a7b3434ea1d5dc43f258a761053db22efa9b3a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1efdd46e1ab8ee5dac3d2745ef5a4ad5b45625c8e8f0cd46ab3cee654fda480
MD5 c352e4e9d7a69796c533f9298f508250
BLAKE2b-256 f199557ff0746f2170365545fe4c69a57863fac4e73c98aefbe6586b8df5b943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b09afb641904f0a02c4c2372d75697022974ff2f0069024111245fb91fe9bd23
MD5 d97f1e6b30774482d4dd7a3ecc528e1b
BLAKE2b-256 49d1068973916998d44eb17ab6dd693793a0306194107cf19e9551406a99433e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4982dcc1f92a96733f9c71eb1df843d986417a029940c8206cf72e943ab405d
MD5 d96cbb4fadfc35766e7c99145d453255
BLAKE2b-256 375ccfc7aa6f10274b6fa85f005732ba671542bd0624b89d30b4557fd7472134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf4e8027dce74b09ff183b41c20ea1d49c41d6a7abbbb3b102a9aded0f8d29bb
MD5 34b34c9225632889ff5f5034d4e0b300
BLAKE2b-256 f2c1af502e37aebb5950effde1fede31dc5a18985fa941622c8beafd17dd5036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84dfba99e4af1f0d131abdbcc259d74e4c14f0af15cc4bb0a683ed8fcce8f045
MD5 2f6e351260f572961cc067d8560a6791
BLAKE2b-256 01327b98b29dbf9e5fae271ba8b52224d2a08e63e791f15dbf348c63fdbb2fc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8341bf181bf38b6de5c445190076534d0dd4df8954765dc8fe23a917d85f31d
MD5 6958a96ff6cfdc1a4b1ebb5cdda5ef55
BLAKE2b-256 3be37f1a043e3de8e73b8bb3a0902f029b5dd424e27b479fc3ceaba68e1b25b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ac15aa5833fe9b9317c94324efe12a5c77298f1e1bba9fc00a1f09b1aae713b
MD5 d828859e5d0a2d15327b6aa11a59cc67
BLAKE2b-256 c3efeb52eef994df9ccc631274b3600a878bc63d820a52079a1c9496b396b00e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a40e5e0084fda5fed57a1c700fdab3b529cb7259ec5950412a02afd5da5d3af9
MD5 dd28022a116a24d3b949f0340e1daf9a
BLAKE2b-256 5295fbabc11f62a6cdb874dd9c77811ceaf1b1d4854224b47a6a9013cf0d2e15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff4599b6d6127eabc64435e6d58f2c2e013f9413d2ee69c7f60be3b4733572e5
MD5 0be458f76f5516ffb9894b81b295f05b
BLAKE2b-256 e016e37dfd6cebfd0d92dbb5f081f1ebf37ed6b3f775cd1ef35c71873cf05c5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6aeec8ee880eb619f54c1d41d0433855dcdb8f20459b3c1bb97504be798027b
MD5 e264e019713fc22475e00445247581b9
BLAKE2b-256 c82ce3c030cf9932b478d18f49e77fe67dd5e77e0bb27ef96cec4e78a20744ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b8d5a38cfa606c994cd3cf35684c54e70c68f710e0f86d62660a2e76fba44640
MD5 66e151d6c0cca2149893c1c51e7e87ac
BLAKE2b-256 3cd4730fc770c8d15b2785c479057022d8a6dbe4f1d265d5d208d19850ab246e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e012b239fb747fb7dddeb5c185c793db23ea24274b33edb11aae8d90fb661d68
MD5 8dc71cf27d54d80484eb4e6868b22260
BLAKE2b-256 0fbbd34638d66290793d1f40f65b62dc42ea3de7a39aa461b5b5c965fae1cee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 063ef7b33e29a80ea58ceb9a6c57180f32c71582c22679e411d2fef7d39a868b
MD5 2b60cd209e1d663c17188cfcb5938245
BLAKE2b-256 83caf75b786ad780046c94338c9f4b8c0138b3f2c9590d61a571b526e6040346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7363b60f6e9626ebbf2b53eda1d2ad8235654e997c8f73590668d65ef2d809b0
MD5 b9fed0e10bf3a3a6170bca9888d72b4d
BLAKE2b-256 ad153943fd9b261a8baa4238b8e08ac36b07b1626b6b62cbab5f28e261e9b535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8747d426bdbb773d9d1ba1a4c5f9a688dfd6b6d193204f4c535190c6f759735a
MD5 92bb6fe9cb63fedfed8e517f02d6a56a
BLAKE2b-256 b8eb87dc4a914d49d9a9920515b1a342389b86c566f35be7d7f3d4e7f8cc669a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5bba9eec1795b2a67220c9e14e130922ee9fc52304a5b709edc86a5e3cfba7e0
MD5 533d7dc1ba9a08c1de70ce8cfe0be1d8
BLAKE2b-256 f3a568e4fa459e49d80f3291b9bc28a337a2c077210364d2ac07cf1f4c78ba0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50a3d88ea1ca12bc32a824b52923285ea543f714cdfaab7ff7246a9a5f3d9d68
MD5 1a4a84b7f05b8fb859b300d28f8fda63
BLAKE2b-256 c8ec218442be90ad1f3ab5fd9353bed3947e087e0032c84944ed58923d047a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02feb1994303ffde7e9ee8c1ce22ef8d6da00e8edb1aa131426f4fcfd698a368
MD5 992cc7c1b691ac67aef691343aea8721
BLAKE2b-256 c9ae0d6ec959c3f525d43db1f41f0cd46a298202ca0774c63720adcf43a45c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e90305875ef17140b5508f711bbc3a14581c672e35b78e337fc60d02522bf61
MD5 88e931acdbc47a8029490a5b54d3c91f
BLAKE2b-256 2b155aa4d9d361a5fc3cbed1954e472647cb2b998bcd4b331154a264b53e5300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fac6a4fb02854c01623600943b9b6391e15bcc5e665f27a60cec257fdd1739d3
MD5 796b33da8d1e31a43ec3744c4e3a0a8b
BLAKE2b-256 73b64139f58ad12e1428bced567b8c7115f769f16205ccef30964f3281cf67ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96ea64ed663e06e40d20f964460ba2b8e3fe33b72a750cd3b9961c66d44b205e
MD5 ea9812bdcf752348730226f0f59e9b98
BLAKE2b-256 f9eeb997572fd2dc231e59e0c22078fff6e8e512e34f25c1bf2994b7b5601631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3ebe8e05128ec733ed8763ed0c5ec1f080cba11e5ee290d930630c5021c86c0
MD5 da5f656ad4ec74b58b3231a76c91ca19
BLAKE2b-256 d5b7c3f4c9a80fb67d858372253025ce026bd3c7c664f2585a1808d2e3cbb881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89afe9709651f2b0b1ecebd1071a6aa0dfcc3cf830962c0081ac28a345a261f1
MD5 647ed336e984b3953b2370d137fd98ef
BLAKE2b-256 e6e54d13a087f9ecddb2859502e4298b33555d7ba7f4c1d0c300ed14bf8486d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 41e0586957f1440ab81fe55ed94dfbd9727d33c4503762565a2a3813acf87815
MD5 8b26d4b3653cef448cda5d6bad5fe713
BLAKE2b-256 81e02864a14fa89636f8ef5266d59dd90623eb3c63966e49742bcc0ffe178db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12d21308bee8a079a53ffa8a7a0f88af001abc87ab73029c35013b68f32aea2b
MD5 6833f33bf6ce8e9b2ae9184f54af40bb
BLAKE2b-256 b2b95e2db08abfa3758e65fe7ec3ff95ddb005e3ede71b0c24aa0a2ba61131d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ebf4fd0edd760511d38e97d59dc4c365060d71b22d18d5067e941d15226b79e
MD5 0238d521c5062c55dc645e653d26e33c
BLAKE2b-256 dbce45c8fadb4c230782efa0f70e79087154409081501dd2fa4206994945d150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94673b6c1b79fa9fe8cdca40053c79de7113d23d01318109811ad221dcac2421
MD5 6c479e768455600472042e27984215d1
BLAKE2b-256 ceb5dbec84c20ac54aad17e3adcb3d14a12656299185ad6e64e0dc9160781210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81af6c15752a494e0724002d1cbc2ba912f03188e9bd5550644334c10d468625
MD5 111c5e6bcca1726cff594d27fc55300a
BLAKE2b-256 498516c0142e360af049e39a3b62315c7671ee6ae908ab893d593a3afb2da46b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d8f83a53cc7e8e18926924984805e7338ef636eb6189e75ed836e9e96773353
MD5 a38ad9c62fcc3036781e81ea491eca09
BLAKE2b-256 b5d34b647ab7b5c6e12b0c518f52e8f432370e03a7536555c53e6e033dd18787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 700476a987c9cf5ce615afecf72f776e44859136d8ae0d64a247b427e636628a
MD5 439ce8f798c8cf4f8a49a4bb869c86f1
BLAKE2b-256 78b4dd18e9e5d63f4f89400dc5a34b2fa8a0a4dfd02d1b68ad7f2929ad1d60b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d86882c523ac266d96245f4b760297523fa57308e2120cd7093bcf4f0bfe18fe
MD5 16299f9af56acd3fb0a20f8c14dadea2
BLAKE2b-256 3c83fbaa65cbd3a5a765450bda0c57ea60607f37285953e63727304b9a1542fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1e32a308989713198aae81f4fa62d7fcaf2acfede983f177755bbed1bc82bad
MD5 ba1ec0ca0bc9933b32f85b9065d854e2
BLAKE2b-256 7dd690fc7f584392146795f8ef68df007c7ac23dcd39d43c91cb4e3c602d8521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8aa116e74f2696a37d6c1d1138186fa62a75d8babdfdac00755f107986e6d249
MD5 2a9a8593aefc7870ecd8d05772a7359e
BLAKE2b-256 25818c760684b8b26c5a9c3db817a173665d93eec57faa5cf67ee13433a513f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d37d468e9025208117413c949173d1a8fe23e07462fe42f2b9e926726205bf3
MD5 2d69b84deae30756fa3b86d4691f0c33
BLAKE2b-256 7b4acfe23001609230d40ce9e9df58e1c3ff9c9487f8608d3dbb2eae25ecd4c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 313.9 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8a62c9881b0ebec1ef9d7c6594abd8b9690a187d1274ee87ed0d99241e396927
MD5 fb45d31cc359f73d17766a8706941c7a
BLAKE2b-256 8bc0ffbdec0b1462d1da3602748cb27c9c411515dbe0b0ec058538db11965b6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 295.4 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c428a0bf13afffbb34f5191f1d40e1d66043a47a7a3f1ea9a00dfa2b8f72a278
MD5 6aed312bb792f0f19b73239097f6e217
BLAKE2b-256 827b1a2e1a70acf7575e54448052c047908aa108c5a718540d11c4fd9c366194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bda19f54d5c27f976d3c0bade83bf79fab7890c38dfb565b859f63cb02eb0e20
MD5 1e392aa28da8d674f4887ca73b6728f7
BLAKE2b-256 3e8caa49ba725ed89a3c96752c658c29bbab96770e22c4de6a98dbaf966bbc82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7521d26710a27aeebba2264b9e7d6a32c7200da795b7680c7e8a562a2a9e0f2d
MD5 973822bcb1d3aca445e6fbbe97c2953f
BLAKE2b-256 e004576d70ee053761ff32cca3cf38ac57ac96888baa9d77d8c2f535a2413f17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e9a3b1b2fa09fb49a1b4ded933b578e4818870ac9a1f0e5947a3c6fb243c978a
MD5 a514e1bedcc9caebeb96d9fdac07af9f
BLAKE2b-256 7b0be576dcfc44396fe7b5bf6723037de8ac0d208cda6456a7fc1a3b57a1c98f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df5b6b19f811c7f9d9a03349972bb8312d32266c6284c290fea0ce902e88b30f
MD5 a2cc6366937ceaa18b0097c5a3950949
BLAKE2b-256 c16d07b608369219e004f972337ed926eaa1811051a3a00b9143801c22492e43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80c819cdcfd579619550eac9d756e15822416a0285cef2404751cc031de10331
MD5 b7104e3a8a89def101e0a111ff79e508
BLAKE2b-256 44eecc73228932b99a02a01e3dedd52b62f9f8a607ebf5f1bd971eecb3410a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea7bdfdd6be3d68a1568aecab8fae775282bf53aa1d7f0150380fbf11f123b3c
MD5 4c88b1387b888e4b8554844748670c9c
BLAKE2b-256 d509ca18ab981ff256887a5483569d022c4e5197dfd4332a368fcd192863fc9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af752b2df881b3c2d9e07bae023f86cbdaa5386c8e64158b564ad701ec41029f
MD5 82b28889834cc1414acd02dd585ee95c
BLAKE2b-256 3042027bac39292eb6977b7bd9d30cd81a26deacc640e11b683e24569dd8f9ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 592e1e36f3842d8aab4149315e485023cbcc5fd7f04aa9c55ca82009a6d4b14f
MD5 47a1b89e1b824b69640df1982251aea6
BLAKE2b-256 b4957d251413e0004162e9bbaabe0bce7ab8406ccad377593fdc4f51c78a075d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0ab664c736d3f460d6c25b7d560c9c78fc2f3084e1d7880b14bf110c2e1cb1c
MD5 4d7307572bb64f031b27fa8aa486de37
BLAKE2b-256 b0317c49888c925a912d08411f34ca6a09ac2b7b4a8f1c64e0289492d231a7a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73c2249dc946f35b80295610277df3ac37c8096e6b0cfac11bb65614547bb67d
MD5 a47b569d49656bda5a6f0cdca71c7256
BLAKE2b-256 d8d9e3a6fde40fb06bf8ebd7d099850b7342919c288d89547302dd8fd4390217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1082035ff55af7eb60e68d219d638235d4f60dddae59559958a57fcea0e5ff6f
MD5 6bea8c1fdd8ba05583e66f3fbdc454e4
BLAKE2b-256 e8e318fc70fd5aa8d2a17259f1ceae3adb274303463ca826f6768b27eece006e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29ec271adfe062c686518c6d389614a95c175077eaaaeb0bb5c1e54e2f5653df
MD5 a02543d3b25db2d53ed6fbcbd0e7a574
BLAKE2b-256 8fd020e881e9989361c0237909ce229577c3331ae54184f01b94cca56e6ebc4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 313.9 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7c6d9ce4f532c5752f545e1a0745d176cc9ddb6936dffe2de2a310cbe75541b6
MD5 3b39ff2ceca555d72dbdf6e6b96d6c17
BLAKE2b-256 4e0f98199710d974044b052826b216ca5ffa2379a8b0f61e8f883c5cc999ba15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 295.4 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f8c854008de415e8117c43161b8dc713e474aeb0b29649fd3ed305980332018c
MD5 3eb30dc1753119beb0acd3e8c976c828
BLAKE2b-256 38fd9016b332da2b755027af554841d892fed4c3207f49a5a213f3db128abd25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56700dbdb3388ef9c66bb85b31e3fda2f83961b755873df27994dbae6ad2b0d2
MD5 4aee0b7cd4383f1e0d2a27f07da5754b
BLAKE2b-256 cc77356ef70ca5e5992c17af9065278aab6c58792db6164847d64d799857642c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8275fae422212390b1c85c929b557ee97b312b93c0066fdd23d3434207a8c37
MD5 d695a306587d46cdb6b65ee374fd924d
BLAKE2b-256 fe359f1ee2b83e8b749afd5596c4fbfa19951850dff3d0ffb6784cd60c63d285

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 386239620652c713947e2b15da214135a13aadbc20f31e2b5f5ebc4230fc7614
MD5 80053eee8585451b149aa10674c31dd2
BLAKE2b-256 b9906f9839e62b9223e4852c5abbe85521a5018ec5f81469e61ce3770c49fa54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86b479c8386c6e3e199a7b36158bf4a7ea13b08bbc0484cb1c5d4a97907804d4
MD5 13372454f740079bb075908f748f5c70
BLAKE2b-256 fcec6c9018c05fd0e783349421c74ac7372087bc5eedf3e7f45e4b0703b24f7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd88d614876d9aa9b9e48aa00f2b8249b843a8536e60db9e55ac90a92707ca3f
MD5 255ad25853666fdc7665912dca7bb4c0
BLAKE2b-256 4789701fc1037414bbe47443f5ecb0d727add62a616b176c57b1bc847df455b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47e6be27a7e1c03073ced5753cbecabe1249f6ef7ca749f9092286bbd1e741dc
MD5 9054a48698f3f06584c938d1616d4d53
BLAKE2b-256 708fe05b54021245f6a78849c5e2bcbb9c0ac43a935a586cbc37c9241283d81b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9aa45812b0a18288cf3d047014480e433d02c5b72d5ed7b07b00d72e5ed90cfe
MD5 9f38c0bbd026f6fac3fbfc2720d78471
BLAKE2b-256 3cefa1f88cc8905fcf0eb0964e82c61a2885140cfcb43c2480a009f893a3046f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07a110c8aaf1a8b33528dffe6d74bc946f60e306942b448f733a9a6b76cf1130
MD5 18f26aa2ecb31d7196781a31bd6c3f1a
BLAKE2b-256 c5ab404c7804f4800188624c106cebedeb05046d7c6c761eb6b21692042dcf89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b858d12a4e7b6d08b46be3ce7fd7e4fcdf44b970bf8eee1645b68eff84e2d02a
MD5 cdc4be49796bc676a2ae01637029efef
BLAKE2b-256 d2387f3c77b02ab50890722b1cfe0bcf15e2dd65581a6135c39d4725426e2aae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fc47c7881b414f4f35559dbe2045b211689a6b637178c14e4fc13a25bcccd51
MD5 206c52949ff63f3f861f22594ec3d6b6
BLAKE2b-256 36052e22f923f5363aedf553daf69f03cfbe60f806ddabb0db694a1d0b2af216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9edc46aeed4c63bef5dc309a934cfa25af68a45982b7d2cadadb21c52838e15
MD5 48e34f57065aacfd27282564760af1e6
BLAKE2b-256 e329370d823bcf70b0ccef3c0622b9094a8b0c760155caaa79fa0801bcd46a7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 163cc15f7da2f8e69cc2414f74ad1447588863212fe47e1b3a58f735a466b7f9
MD5 f498fb1430737388f0e46cde34770740
BLAKE2b-256 651b1123ad47f5292930be8eb71b2c3bdb1bbea8688facf9f8dd49262118146b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 313.7 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 21b3c5130830c9de718d2c75149d0f50904963874a298d980dc0b8e5812c96ff
MD5 c311a5bf49c50e9c75999a464bd2413d
BLAKE2b-256 5513deefa4e11b524950985e9180005b499fda1542b2fbb016e0a2cf6a14ac87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 295.6 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dc75b1a0efa8dde53ce8906a21596c668f0ae854f0252d2ea1465179a4e2c070
MD5 fb3fb19eb7075f74a83893bcb6f88324
BLAKE2b-256 883de6379c3ff26f761e1e51de792c7b62f337c3848c956cd3e8b6c1dceb16c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66822e472d077f68e7dbfdf2bc1bd6831afa1ce20e15fc21d486e48c1db270c6
MD5 0995fd9acb370fdf69f1a3b86b36f978
BLAKE2b-256 f9290bd2b4c014a97c5ab241f70e3a05637d72ebceed7cdb6b0f9b4f03160bd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 83b562deca5d8546e9b77b532b82a9eceb4295345e0cb6b8dcb502c2c850e276
MD5 edb4f58c6d7fb8b0f2887b48ea2a7840
BLAKE2b-256 4c2426d9b01d95035ffe4ce9febef380e46c6a4a95c193a4cbf13d42568dfc7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ffd03b614d0b390a178fdf0237c3768e0873f5a721750ba0c57e5f9679513979
MD5 166725127e06e3f7cf9d581349762405
BLAKE2b-256 30573674f1593b8ad3d1e786111e8479ef41207b91880bec18144596c4127a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2d529fa9d338e343374911de9af3ce55404bebaa7b27b175db7dc7e6f00b5db
MD5 aa407db4ec69689595e3f68887f1bee4
BLAKE2b-256 0a2dd700d21e620df8253106cc19b8d0bb44f55514f8c4ed50bf499fd8ca54ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efd008fc3260a4e112950354bc4bb573fdd7a33d2bf86c05216f345e550f0583
MD5 b1586039538d953dde4f971f96422c47
BLAKE2b-256 8fc9e78d2a06fb2bee7837680604bdfe32e174f02ca42edaae8ad007265ccccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ac2443383538fa2c80683aa083861bd103844269abc191e7fc81440135bc9d2
MD5 d4b6f5cd9826d12ecdbfe095ff750d50
BLAKE2b-256 6e8907a314814e82b4a1c918ba833b319976c5c7d7f839b06dfa30744d21403b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92cd142c6c358e70a37d32ffa0d512aeb069ead5751f63e95a28d7b3c170dedb
MD5 5ec1facf7ff1474847081315e42af008
BLAKE2b-256 5f4ccddebd56a9078b5f2af09ee26f1716c81cd7b5ccb28e1e9c3baaf088d1e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4038d29f89c7825a84c0923c508af361c720511c99cf050d30a580c06f541d1
MD5 4bce73299d4175d6d5bf316d93f7f76a
BLAKE2b-256 f749ef085947cf2ef140eb33ad26ba3d1bc525bdb90b4c539a2a7d6e82da5146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a2095d3787b22204e6eed0312947a5eb70f6fcd45084fb536ff74e043203d4e3
MD5 41b1004d41cdf5a170862868bd541668
BLAKE2b-256 cd7981f9c85013c38390ae98718d3e3ecdae3e6f301f56c0618e1b6bbe76084b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f825d364fa77351543d62c02ff0ecc9f94925af45f29fbc8573bbfadbb96fe3c
MD5 d4a14aafedc93800ca82f7131fdf5e71
BLAKE2b-256 cf050732a984cc09c4836ed83b0d53c346fb644e6a09baa4781ffb45b685944a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb57f255e76d3b42eae70ac3845a64eaad71cd11eec9af8d99a9cc1af58a2978
MD5 681c84e2fdafe70f7a945cd2ec5a736b
BLAKE2b-256 010c6d348a699e728452fe324053137571e482e297d0544217368cca48b63c9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5bcbb769401f75602af4fc526b9c4cd4c2b482bbc1212ef59e7f5917788a85d0
MD5 16c9bad59c2e7e4bc3fc3133631608c2
BLAKE2b-256 7f695a1d2bc014baeb508a3b5bde1f65442655ff95e6274f95236c3af97b7950

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 313.7 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c258be22b527786b771627791400474c15aef1a67f10edeb37184cfe245efc59
MD5 311f3a1aa5ede3e2ee665dacf14a813c
BLAKE2b-256 cf2c0031af79374cdb7f5ab866da42a5a2ec44c7cada500f8489d66e11152fae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 295.6 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 137857fe522f9321080c847f65994e6e12279ba4922caa13b17b6ab60ae343e1
MD5 cd0220dffa379bbb8c72102e31db2958
BLAKE2b-256 7a0f14a90e19f8302b42f00cb9cfb0c762c93334cabdf085220b0d3b4e8a8167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0913932f53a5bd2a97d3ea2bb38481aff64308764dd7675be8653b66b4e1f372
MD5 ed2006a7d50be9ac534986228c396b47
BLAKE2b-256 acca5c97b00fec993c2c8e4f29aefad5775f96ce0184f8be448b3cd16f521564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbc942a94c49e12b6ad419e35003b8362c13fbbf7fde52b444d67b4fd3d34191
MD5 8be0d5426b22fe892432e833ab25c12c
BLAKE2b-256 36986b3830e71236af632331ac59bb23d1713e4322b3262019f891984a67e8c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 21a9d8107725c6bdf2714ae37ea781dd94efeab74b35dd92656808bcac408f09
MD5 b02b81ec7712e0c5cf62bb84e3fef9e3
BLAKE2b-256 e1d022b1100484246b02615518e1ef33ff755c8369ab6ca8282d24bb18c1da6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 810ab9cd3a8bbae62095b2699538a520c4cf0d2c45e4d4bb427c4d8eeff580bc
MD5 1b0994b44a47e0ccd237533dfc33f193
BLAKE2b-256 124c8c4baddfc4e421d5de17649b0b5da6027cd945eb28aa54b50b72e685180b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f67936cadc71c069b715760981c1fa62e285f4f87b6b671ec531bd8e6035bf0
MD5 6402977f48a19689e0bc8550202e971a
BLAKE2b-256 2588e1e28fe2e19d4c15c415aa649c16293883005bae39d7350d57b524721039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd1f67cc3d89513702548049655cb4b2976a68a066954e7bcf48b2640432c41b
MD5 e2319769e706f9f6eaf6698cb762f089
BLAKE2b-256 c934e3d95b7b678ff378c114b89126329da312cd7f629f8ffa3203f4910f0629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7b0218f077cbbce05a2339cab61da231c938e39244e191c489a7e37d1930728
MD5 80b0ce699bed11c9356a5c31e270cec8
BLAKE2b-256 3c9c2e4b8490a8b12d68a75cb58a05b33afeef773caa451091e66d10e2cbfa90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42947203450bae13245e725a8069064005edb96a81a12868bdb6e76bc85ede26
MD5 625725230884f5f5d25fce867adeb2a4
BLAKE2b-256 7f993c5ace19cc0bf7c460d79bd492dee7b9dccc62e6722234a33f4ca8b0eeb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a22715150e3291d234cbe341645c97ec8e55eab4d565df8c901d6cc82d6fbe1
MD5 06e22f3f37fe4f536f265efc377e3602
BLAKE2b-256 7b9cc6daa524bd536ac05319d05896a5e2812b3b57161b845eb4f647527205c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6418c91d67d6f07e3568c5fdac0eda89dbc6dad8c41f3dbed7219f13ea41172
MD5 9f450cdb3a8ac169494b0f2124abf518
BLAKE2b-256 f676845e9a1fb9d583c34da4712375dde9168335295c359828e1f229e66de0d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 314.0 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3e23a31f6f9855a14074e296a5db54cfaebce8f180675897aca97c539b9b0678
MD5 2a9908866ace42f03d25f0c34cef88e6
BLAKE2b-256 0ff6cee1e848e53cb69d73284c320a44bee4421ff6979053c171e97175f3cfcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 295.9 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2901903c08c327c765d5ba11009c3ca50228087e469f813f72f8514b5845fcd0
MD5 b9404b36d4bbb5856519bb2aedbcb389
BLAKE2b-256 7bde3a1e97799289c7c943ffec2dfe4330130a0c31b0f482bbe336743ba6ad8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1a72cbc13b6bd40b9549706841dd09a7d6e51804fd61fa2f547c3e1c841f6b1
MD5 b82cc3da7d23fd6493def3d0be5d5cd9
BLAKE2b-256 d8e3165ddb0a8c9d9dcd8a12c841194414d489b289ccd97eb37ee445c41d8e0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7edfbc50cd1e6c95ece46993268f9f3ee96ae614280c82c34b12fa9a835b6e9f
MD5 6795a377ccc4b95e382fd09c6e86376b
BLAKE2b-256 ef65ae4d643b7e54c34f6d1ffc3103e6f55b0fc3e3ae2f5a4739705e9deca61a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b215eb7a129fd610838515fc1599fff088739b038bef8fecb4c0f437d455bf06
MD5 27f3b55ac966577fc7a583427198439c
BLAKE2b-256 b35a1af14473001cc75003f4c4dfc93736cef2f4e5222c48bddb1c767b40c3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b945a65996358bdcc2d58b3afc0a7bb37053a9502b4b057b8e75db1ba40bd03
MD5 695898901ddeca3d9fa10b3eb37e9a08
BLAKE2b-256 ff60f0f04f156e306ec3ecff5de595b0260f21405659a3295218a6864d00946d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba3b78bf6c5757d9f31cdda5aa13ebf8d4b855eb40d4b2af54a24282bc432765
MD5 07977f6543383bf782aaf09836722530
BLAKE2b-256 f246b2267480c563429b9f5370a389a8d5997f7c7b7df0ea923dc76c44f0a862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f4419b419603bc83865f02f10036007fd0ab8b91830df3d14b81e48af79851e1
MD5 2d926a17a8f066f066f14f8c240c4b10
BLAKE2b-256 df844cf86af0813dccab68921c5f469616da5915f5f9428a8c9e710d08c1686d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62414a68254182b54320f6224b54f2425660d5054486198d76efd08af9f98a5a
MD5 f7ce1e15c850d86bf474c6d862448eac
BLAKE2b-256 d1598b1327f4cf970f84f3312d719a911229ba4a13efc245cc9615b01f9ae430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1aab83e76bae29b2d5ce7f0cdb9d66c9de0f71ecce920ee5b9d5b8a0d32ab9ef
MD5 faf56aeee94e6c3e72c13f7e3cb90ec5
BLAKE2b-256 bf4514cc94b138409d9de5b8df99391b939eda3e0d61f6a61f7e368eca2c3994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46a94c0b75429885c05b12241fcf10bd33333cbc06331a1ed0990ee82433b2a6
MD5 fbe68517ec0465020a5020c1330ebf65
BLAKE2b-256 c068c75923502989b29568aa06dd3b9542875d515241f3a9abd0bdcd893239ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d56be9589f349b85cf82df2437404998da3c6c0e9637ef7cea3f36dabcbb1320
MD5 4f177cd45cb3c6f59aabf9f9b06b5005
BLAKE2b-256 52f6c28b25079646e6650fdfcd5afb32828cabbba2789848698ea25c90f68c3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 313.7 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 06796c91dbfa69fa15df019d29569fb6a0fc77bf312030aa47da33610e17fd60
MD5 488c85449571b0f08fae94fb145abcc5
BLAKE2b-256 d847e711e8b9e503bb5ab80ca99e601e892d895def252904a6fbf9ecfc13971f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxvox-0.7.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 295.4 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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a400d5acfedd42de096da226095134d4022d04e451a8fff4dbc2904d51b65f71
MD5 651fe767f7caca2d55563ed9833cda10
BLAKE2b-256 9ff92fb3f713d1b8f839596f5f64a238d30fb76141377c01cb3bf9a2ca7bff78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b57fb83a555c04efa4fe0541896bebbca9a0df20c0a03da1124ea538d65ce72
MD5 98808c67f993b7346cca97532a6f02d5
BLAKE2b-256 da9d65d4a4f3c03c2d7059e4f0325cee7e3893298442c7d9b9db0a9df623a0a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5af05a89f4877dde21436a4abed1c6a630b395208ee6a7b206f30c2206e1cb4b
MD5 8218dd26249e63f04b371f63ebe53591
BLAKE2b-256 c5f629da62e5a8c2eb144684822e363289e49d2118ed495b2d16cb0e91ee2ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 580727cd4b8dcae4a5c8984ae5b694f2e9e10a92670bc0ae8b8fbc9f6b2a8835
MD5 2a866c17b66b356d94bca6890a5fa69c
BLAKE2b-256 a368589405a57709ccaa6c3ead82f0242fff014af5ba4fec2a62cc1a6271ce2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe1cda8360c58624df3a4030f46b944279065871698ee0ea0b516bfbbe7062ef
MD5 6c132a8af714d86793eefcbe8562f901
BLAKE2b-256 70570ff9148a75c35472fa8d00a817ef84f775936258f6ef5469ed093565fb51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51cb5cdb71aacfa6882b8b9bcd2602f78737174a94e3a25bb615aab1d9a74509
MD5 c55e8f417c88b8601d59e0ad88897cc9
BLAKE2b-256 36f466f458ee2e608c529198497758c7aa9a799c0f16fc013950e7e0c0e35cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4e4525ab52602e738f0218c8e4f108fd298015a587675346010252c5863dc16
MD5 0d0a75f23e6117609a69aa20c91b84eb
BLAKE2b-256 f440e9b90a7ff5cfec3f83c7285c2eb71700eb800c8b676e45d0a0fc2eab1521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0847f3675adc28352d44faad36d792dbe753d95e374e0057415004d0021a7eda
MD5 a5db36babefcee03b83ff1b252b170da
BLAKE2b-256 57686b377827785adc17e892e086150386c274e1ea1b9e12eacb2d298e86267d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29aafd9f24dca8804854ab705bf22277b7798c65aa7f57ab26f2e75fb8469ae4
MD5 5c3642a0a01a088e16767a50bddaeaf6
BLAKE2b-256 fd217b261a349aa215b36f661630cc7dfb084a25dbff773daf435dda9a4ddeff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b392aeae752e79ae9093145918a2a82f08b1b8c89c548a5ac9e310138250b151
MD5 ee2945612dd2316b3f6f96784c1cff51
BLAKE2b-256 35695ad707a4efb236b07ee12fee91808f2689b9de0a739271486af72742172b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oxvox-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1d57b203e6b4d6d02d0dadc8da65fd68f250c81c079b7eb1c65d48337c8cfe5
MD5 9787c0217aed733861e5217685789c4e
BLAKE2b-256 bee1f352002f455dac02e3779252d088801d9d8d18d8b840b0822cc45f003d2a

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