Skip to main content

A lightweight library for nearest neighbor search in Rust.

Project description

NilVec Logo

Overview

NilVec is a high-performance, memory-efficient vector search library designed to handle both embeddings and associated metadata without compromising query accuracy or speed. By decoupling metadata from the core embedding data during distance calculations, NilVec ensures that search accuracy remains high while keeping memory overhead minimal.

In our benchmarks, NilVec achieved a 95.5% improvement on query latency compared to leading solutions like Chroma, making it an excellent choice for real-time applications and large-scale search deployments.

Key Features

  • Memory Efficiency: NilVec stores vectors in a contiguous block of memory and tracks metadata separately, avoiding unnecessary duplication and overhead.

  • High Performance: Benchmarked to deliver a 95.5% improvement in query latency over comparable systems, ensuring rapid search responses.

  • Flexible and Ergonomic API: Built in Rust with a Python interface, NilVec supports simple operations for inserting vectors, searching, and bulk index creation—all while handling metadata seamlessly.

How It Works

NilVec separates the embedding components from metadata so that only the core vector elements contribute to distance calculations. Metadata is stored in parallel and associated via a schema that maps attribute names (as Strings) to their corresponding positions in the metadata array. This design guarantees that metadata does not interfere with the accuracy of nearest neighbor searches.

Benchmarks

Our benchmarks compare NilVec with Chroma using the following setup:

  • Configuration:
    • Dimension: 10
    • Number of insertions: 100 vectors
    • Number of queries: 10 queries with metadata filtering
  • Results:
    • NilVec demonstrated a 95.5% improvement on query latency compared to Chroma.
    • Insertion latency is also highly optimized, ensuring minimal overhead during data ingestion.

Below is an excerpt from our benchmark script:

import time
import random
import numpy as np
import nilvec
import chromadb

# Configuration
dim = 10
num_inserts = 100
num_queries = 10
categories = ["news", "blog", "report"]

# --- Chroma Benchmark ---
chroma_query_times = []
for i in range(num_queries):
    query = [random.random() for _ in range(dim)]
    filter_category = random.choice(categories)
    start_time = time.perf_counter()
    # Execute query on Chroma...
    elapsed = time.perf_counter() - start_time
    chroma_query_times.append(elapsed)

# --- NilVec Benchmark ---
nilvec_query_times = []
hnsw = nilvec.PyHNSW(dim, None, None, None, None, "inner_product", ["category"])
for i in range(num_queries):
    query = [random.random() for _ in range(dim)]
    filter_category = random.choice(categories)
    start_time = time.perf_counter()
    results = hnsw.search(query, 5, ("category", filter_category))
    elapsed = time.perf_counter() - start_time
    nilvec_query_times.append(elapsed)

Usage

Installation

NilVec is distributed as a Python package via its PyO3 bindings. You can install it using pip:

pip install nilvec

To build NilVec from source, follow these steps:

  1. Clone the repository:

    git clone https://github.com/cldrake01/nilvec.git
    cd nilvec
    
  2. Build the project:

    matruin develop --release
    

Examples

Below is a quick example of how to use NilVec in your Python project:

import nilvec

# Create an index with dimension 128 using inner product as the metric.
# Optionally, you can provide a schema for metadata.
index = nilvec.PyHNSW(128, None, None, None, None, "inner_product", ["color", "size"])

# Insert a vector with associated metadata.
vector = [0.1] * 128
metadata = [("color", "blue"), ("size", 42)]
index.insert(vector, metadata)

# Perform a search query with metadata filtering.
query = [0.1] * 128
results = index.search(query, k=5, filter=("color", "blue"))
for distance, vector in results:
    print("Distance:", distance, "Vector:", vector)

# Alternatively, bulk-create an index from a list of vectors.
vectors = [
    [0.1] * 128,
    [0.2] * 128,
    [0.3] * 128
]
index.create(vectors)

Testing

To run the NilVec test suite, execute:

cargo test

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

nilvec-0.1.6.tar.gz (493.3 kB view details)

Uploaded Source

Built Distributions

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

nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (476.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl (499.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (570.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (478.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (350.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (312.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (308.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (328.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (476.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl (500.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (569.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (478.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (349.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (312.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (307.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

nilvec-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl (475.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

nilvec-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl (498.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

nilvec-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl (569.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

nilvec-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl (477.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

nilvec-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (345.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

nilvec-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

nilvec-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (311.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

nilvec-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

nilvec-0.1.6-cp313-cp313-win_amd64.whl (168.1 kB view details)

Uploaded CPython 3.13Windows x86-64

nilvec-0.1.6-cp313-cp313-win32.whl (156.6 kB view details)

Uploaded CPython 3.13Windows x86

nilvec-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl (475.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nilvec-0.1.6-cp313-cp313-musllinux_1_2_i686.whl (497.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

nilvec-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl (569.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

nilvec-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl (478.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

nilvec-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

nilvec-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (346.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

nilvec-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

nilvec-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (312.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

nilvec-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

nilvec-0.1.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (327.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

nilvec-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (270.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nilvec-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl (278.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

nilvec-0.1.6-cp312-cp312-win_amd64.whl (167.8 kB view details)

Uploaded CPython 3.12Windows x86-64

nilvec-0.1.6-cp312-cp312-win32.whl (157.1 kB view details)

Uploaded CPython 3.12Windows x86

nilvec-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (475.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nilvec-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (497.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

nilvec-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl (570.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

nilvec-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (477.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

nilvec-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

nilvec-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (346.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

nilvec-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

nilvec-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (313.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

nilvec-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

nilvec-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (327.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

nilvec-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (271.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nilvec-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (278.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

nilvec-0.1.6-cp311-cp311-win_amd64.whl (167.9 kB view details)

Uploaded CPython 3.11Windows x86-64

nilvec-0.1.6-cp311-cp311-win32.whl (157.0 kB view details)

Uploaded CPython 3.11Windows x86

nilvec-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (477.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nilvec-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (499.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

nilvec-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl (571.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

nilvec-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (478.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

nilvec-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

nilvec-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (349.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

nilvec-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

nilvec-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (313.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

nilvec-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (307.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

nilvec-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (328.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

nilvec-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (274.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nilvec-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (282.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

nilvec-0.1.6-cp310-cp310-win_amd64.whl (167.9 kB view details)

Uploaded CPython 3.10Windows x86-64

nilvec-0.1.6-cp310-cp310-win32.whl (156.9 kB view details)

Uploaded CPython 3.10Windows x86

nilvec-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (477.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nilvec-0.1.6-cp310-cp310-musllinux_1_2_i686.whl (499.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

nilvec-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl (570.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

nilvec-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl (478.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

nilvec-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

nilvec-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (350.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

nilvec-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

nilvec-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (313.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

nilvec-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (307.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

nilvec-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (328.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

nilvec-0.1.6-cp39-cp39-win_amd64.whl (168.1 kB view details)

Uploaded CPython 3.9Windows x86-64

nilvec-0.1.6-cp39-cp39-win32.whl (156.5 kB view details)

Uploaded CPython 3.9Windows x86

nilvec-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl (477.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

nilvec-0.1.6-cp39-cp39-musllinux_1_2_i686.whl (500.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

nilvec-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl (570.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

nilvec-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl (479.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

nilvec-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

nilvec-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (350.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

nilvec-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

nilvec-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (313.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

nilvec-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (308.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

nilvec-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (328.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

nilvec-0.1.6-cp38-cp38-win_amd64.whl (168.1 kB view details)

Uploaded CPython 3.8Windows x86-64

nilvec-0.1.6-cp38-cp38-win32.whl (156.9 kB view details)

Uploaded CPython 3.8Windows x86

nilvec-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl (477.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

nilvec-0.1.6-cp38-cp38-musllinux_1_2_i686.whl (499.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

nilvec-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl (570.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

nilvec-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl (479.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

nilvec-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

nilvec-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (351.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

nilvec-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

nilvec-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (313.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

nilvec-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (308.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

nilvec-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (328.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file nilvec-0.1.6.tar.gz.

File metadata

  • Download URL: nilvec-0.1.6.tar.gz
  • Upload date:
  • Size: 493.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6.tar.gz
Algorithm Hash digest
SHA256 188bdace31a9d7037474c6bb81b5919ce5026e8e18e54d50892d3f1ebe8bd62e
MD5 9554c87f0cf8843415518bc18d9de6e4
BLAKE2b-256 a3c71a6a7eae9adf06c8666e6c3e1d85f65a202219decc5e06d27ecc8c34847e

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa03cf198db3bdd1b6d2d0a775c8b65dcf9243fc3dce1a3834cf361773e260ef
MD5 f52255ccd8d74136b4b81082402c5e47
BLAKE2b-256 e9c1844565c4a1d70493fad5a0d7242c4e3a372a4e2604ceb65da385b896800a

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf26df61427019c253bdd6e00abc612897a2b97cd41be7e1ae1a680b9e829862
MD5 cda67d870ea254aa49ade84c3fc5d9f0
BLAKE2b-256 f72dd478c949b7c438e5e27f3f873319f74e5194be715cb6ada3ba5f641f3cdb

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 047eb27c73c0b9596a8bf873e373800e54493197cb33bde01674608373a786d4
MD5 44b2477dff6dcbf22725737daab00f4d
BLAKE2b-256 f6099bb4700f3447c39d06592815f735abe59752526e2c8c2ddb0d0fea191695

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 523d8c90060d4a766165723f914a631ce476f2f56e3da201191bdfb8c18f1806
MD5 541cba382f730b6329551df188369c00
BLAKE2b-256 6b4686647fdb990b78125faa81c7639b43adad8ebacf3a95e3329551fa561410

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9274b42856ce3e0c3911336e14ceeab3158489119d8185fe61272524916dee75
MD5 f82bd81e739beea1cb6e59f1031f0d70
BLAKE2b-256 45760727282d8361df6428f23c18bf80df27cb125e33bc29899495d347e19b93

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a12609b8430c57f52edd6f21b9e4e49f2d16ef3403d68bbb4d3cf4599447ad18
MD5 af7912c8ec91c8489f072c73124e9647
BLAKE2b-256 894208c90ab5e9f2f96777417aedc416a5aad23820dc40ceca8679d3d4b02ea1

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 653c7c1e1bcebd5fb2b69c3d26f1ed2e82a2dc354ad7da24faeaf94ad697c126
MD5 747d682157584d6e9a6dbad5f198b08e
BLAKE2b-256 ddc0aeb9b51214537ab486962476f192a7cb8a05f1414abfb82dbf96b9530743

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b68e4b52d6da3fa66ee97d2d7e4311bbd73b638afccf8a850c39b053a17676f
MD5 8af8ec791f9ba7755a60204c505b5c67
BLAKE2b-256 1c1b57792655404ebfccef29fe594f25f0d093bcb2077d48ef22cf2368e1b513

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7011b2485b4687651dda205b219b42e3c9542c69791a7706d2cc5596acbbb54e
MD5 e1e5a88575df5e8a772d0c41b8989124
BLAKE2b-256 43e91258f3070c9f9e4784f6d3c5b79f745661102f79f61cd26d8bf025293f19

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b3d3bc37371bbb9f833681046944cdbea5f8abca8980e6d245464ae0984779d
MD5 5de7b7b273ce270714da5947e1eddd83
BLAKE2b-256 5a03d8a3bf0fe0e8b2c510534a6e29fbf94d718d12f58654db71cf95126e2d9a

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 798ef7ef07fc04ffa4ad77645b9e1a8dc55cf13b4e52991f51f66dfdea178df2
MD5 2ebb582fb2a37825c59506489475732c
BLAKE2b-256 3f6d51338aaa97a396a3775c54c0beaced00e25a369b2c9ed6659aa391bd63f8

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ee279fac35fbf3115224117298fd285b30e7314094d7cbac8caa52b2d96f1700
MD5 beaa4d70bef92afc73bfab19181b0730
BLAKE2b-256 451a9e48b6d2c20575e193483500b8f02328067ee712f9923512a8b291738f95

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9430b62a11d7cbc0bc97d169d1e6f4e543c5717e7e3eb66c9e5c1bb2e002857a
MD5 facd2e0dfb9ff3506d7c5c4a5a967130
BLAKE2b-256 a40fcea7b8b7cccbfe0b4512622f321cc87359de6ab9dc21cd1da93843376129

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f7ba041d26126e071e26589dd8146e491f0e3b33b38908a7505ab7d45387dff
MD5 b9347897bfd382a6c6c0c6f76ae802f6
BLAKE2b-256 2b3df282be91e0f20f2703411a3ba99df369cc05de16b1b4c2733dabca7ffd31

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e24a0a0585e22cd0b99d4f751fb6907195b8fc41f58398f8a91c57dd54d1f9df
MD5 f7a9512cb6b58cf56aa971d3037a81c1
BLAKE2b-256 1bf114f5590949d8c3d8c0e16fcd2d3cafb08521eae7dc01abbe5bda26f67afe

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c4c4a512e5c179c1f517aa91b4cf7322c595e3942ca55c8e1b7aa83f9eb49e9
MD5 b1e2ce5fa74802733ddedc9654a6097d
BLAKE2b-256 4e7fd7debd73fb24922c78cd18d1d9bcd1e8cddff589972198496164f7a6e613

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66d86f80356b085a0739a1637fb256ed04c7e319dac66f4004148abc8daa29b4
MD5 37fc9bda153b3aa42a09a606474dd585
BLAKE2b-256 4b7b4a6ab18cae11b75dfe7b3330657714845724a317c00ee35d8a73c7dfc974

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9481f554f1c0172c355c486fd1ba7e7a469e58ab04657ecf7add02f5e3f9aef1
MD5 d8e3f4946bc176120438efd738957db4
BLAKE2b-256 be5d8e4427f8ceed504ffb150e5f22c91d4628ab0ae5e89f0250223d17a1dd90

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b6f1a92f07d74fe8fa1cd9bd3cd5973bdc9f210a80fd4cd3ee37d7a4f927e8f
MD5 80399db93aebe89f1556d93451599820
BLAKE2b-256 94d265ffcac76528e6a63b67f944fa54e2bc59a08c228b6792a9e6b189dc51b6

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5000ed78ca31e025b120370a16c3ceeabf96d77f60cc8451dc1bfd310501124f
MD5 37a50d9fe582fb6949efa3d9e01084d7
BLAKE2b-256 448f9b5b3a0dc1938ea8c8e92c391f9e9dcc45b6e8d4e60234873c6fd41e6eda

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8aaaf6e0776ae5aadb0fc46cbbe9db3b25e3d7472873e95f92987ec473e47317
MD5 9d7f5f3a74534bbfc8210b57eaa7db99
BLAKE2b-256 3281a3dbf6e4c5e4741157c59e0d4c0c3cb449397a71be1e0590232c61a1aa89

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1efda32e4024138a962d9ab0d8da1f246134ac832da2b45ef1d38cdb1f9b4679
MD5 1e4ddb9fae192be8eb05c4f84750d48a
BLAKE2b-256 245872c7433ee142929cf73c880c92ae0c3c459f7a1f62164e3c811e73f83fe2

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a0e3c4cf17d263191cb019ab852206dd01dd321ddbb64d440382c1c39f002a7
MD5 5e9323bd7976935cb57142c52309f719
BLAKE2b-256 67097f30e02644a1c3ac578fed97b5de401f1eeb661c6c25860e9143396490f7

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f5ab36336ff3685bbdedd754827c3cf087268bf5e449897c90d380715f7bbbd
MD5 746be27ac2f7c46ebe33205c0e20373e
BLAKE2b-256 655e96227d18c1864a999e725108418444b23cec787fff0cffa8150e03ef2fc6

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 448dedf169df486661c373f24959704c6028b1c10d576721145413d6f58f2fc6
MD5 a4ebbf772a44d4dd2361c9c4cf20cbe2
BLAKE2b-256 febb990047f79d8d9b55f1bc7fc66b48e5012779e3995a713c187e0ad8f8180b

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3877dffcddf49fb9cc17d66d50ebbdee1d632168c277595b0fdf036c28fcad8
MD5 d80943279d807faadde3d5b4717de4fa
BLAKE2b-256 a849b269b48176a9cfbd434870e365f61733f6190151f0838dc870bb86f06bc0

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 168.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d80b6ad95577f871ff9c0c78894451ba397173cbfd9586ce76708848474b69dd
MD5 41a49007f604c0e881bf5fb35318d03f
BLAKE2b-256 bf956a014f93b0bdd4442c3224b6836e3bcd29baacacbedb72a0d61495ce68d4

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 156.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ed4c5b33190850ed1c8f0df5e8d2858d2e2f5dd6e6936c82fc4b669303955479
MD5 07cfd2e13082fdeca304eb51b9f08b25
BLAKE2b-256 29cd1e7fc61ff17041074b2d6eed22916a75c7a898b6e65f1ec297cc97f19167

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2d031e52a297a8b466161a723c89df20ebc8ed565e2dd6b58e13dd7214c2c1b
MD5 f8bcdac0db5c889f99cb75fbfdddf245
BLAKE2b-256 b4e96e175b588312ad60f5b05cd111e9b3bcc287a36984c33cd470ec807bcbd1

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ea25cceef4656011959f08b140ec083cd51462d8c4361a33a3054f5e062c563
MD5 d5aa2290eadb8dabbabbf6593f715702
BLAKE2b-256 71ced2bc42c02c5b58e8352396cba1ed9dd65c6b0c573536087d87959af76125

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19b61f5a6e4674243225c846c7faceace16923c31744bd694c9b6564e8c39261
MD5 85a1df53c920ab16a4869fdff7b0556a
BLAKE2b-256 a98d2232dfaf013ffb6debbfce36cdea156a210480350106b839c4895f0dc0f5

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40106ec93ffffcbaa186a11f45b90bebde806418844b70ab54297d0f9137e97b
MD5 bf1e9fa848cd7495cee91871ccdf6796
BLAKE2b-256 e9b297563b181063a3d4f24208b262dccaf2f3dc89e588f82c2ea4f98381fedb

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7e56830daa7d378683201a5be59323229f1c69406d174c4e85d1644ebeab83f
MD5 7bb8c9394243bf6207fe93503390cbd4
BLAKE2b-256 a7833811add5b60199583e3047e8153f51559a3708b3bc218e59029788be773f

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a90aed5c0a8bb374e52a51b40bd346f0a9092c1ef62eb915dcae43c4ff1a6656
MD5 729520ba515caedf0cd1dc4e2442a946
BLAKE2b-256 66adeaa43d09f34e1aaf2f460225668921dc9b2073aece701ba6a25252a9dfb9

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d3222ced29faf5f23bfae8e2ecf1dbaee010545902b7495a8ced4a75ce97e565
MD5 4414610d8dee69b3c97f533f2e12d39f
BLAKE2b-256 6b56254b4f0332f8198e702959b4b5ea67cf3a13daff462beff2b579658d63e2

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 854b5461207c4da6d5d6d7d096be66716a7c6b00966b20ce05b738f8b68e2556
MD5 2f0c582dc2ea24178b1cbcd29ce28219
BLAKE2b-256 24528f291fc1d8c474e85864bc602b73922e5eb75e3ae2e8b282d67d58f6c8d4

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 555ceef1c31c2c8b26713caab57a03851ad6afb63b6711367bbee4d18b4997a9
MD5 1cea88826958a7e582d7e0f618255fad
BLAKE2b-256 df1c6d85271b488458bf5b38e7fe75de93bb622d4152546c080da5043cce9929

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5cb31ef6203ac534a4324bdbdac51c9003c6808d085c8e9d81dff86989077ffb
MD5 99d096cb6f8ef046c5777c86d7e26c72
BLAKE2b-256 4be47d3f09bf3590899c8ccda2b8469d07c08436bc35d63a120506c8ec152aa8

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fb2f7fafb3f82f20262b0dca10d36916387e580ac80cb3a178c5065c75c54b6
MD5 729044518e9ade8bb3fb59c5f0335cf4
BLAKE2b-256 74b0f503b8dc91fd43de1ebab1318aee7cb07197280c6744c1ae4f0f45df89b0

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8d0f08790ea9bbb73bb516d8a987f9d4c30fd0e9b4b94e0fb0ec5d1802236aeb
MD5 5b3fa15de3237f230c1913d28fcd22a0
BLAKE2b-256 ca08d151d205ceebd4ba67bfdce1540fc112bcfafc6de8f373719dd1d3deca41

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 167.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 49bcaa0ac010b2aaedbd833699b5bce538d7de6c62869bfa5550afa2e1d1aacb
MD5 87b1c0bf3f46ead3b8577738e50ce3ab
BLAKE2b-256 d18d389376985387bc4b7188c1b4696d9ac3fe35712396e4e691825c67d4b6af

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 157.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cec9521be06629888b24427366167f914971b7e95de53b1e71f11a975d8fae7b
MD5 3c3eb312edeb79cc32500a9ca18cc606
BLAKE2b-256 984d1a9c4317ff547fe072886e4bb891f4f2c24ca3d79b16e2d5646b78da782b

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c80aed2145a2027cfdff514aac5380cde9ac06f4bdb67d591f020ab1779d6351
MD5 13fbe54634e379bed5e3d2c8a9785a94
BLAKE2b-256 4c345f00d2008ffb1d70ae67cb20b3bbd1835f8ae1a41abe0f32047fd166c4aa

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d5d7ae329d787d1941e68b9b412eaa1d7efc45a4824004e76fc7a3d9e5de182
MD5 d44057f58d939c0ff5666be40837ad52
BLAKE2b-256 be4efe17322ae71eee41e1636435605264033c4134e1a1cddcf90ab6bcfae5b9

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6f477d3624f265094d626ef14f21f96de5551a477ecf94adaeead129f1092b1
MD5 4f0adadc3dc015201dbb801c80a4f914
BLAKE2b-256 5b45022c13bddb44829bac3e16395ee44ac3520b35b699bd4d1fc8d7762c24d4

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d2cefe48984e655297042ecc0e771a0648b4dd07695d1a41e45fecba65e355b
MD5 3c6ac847a55d25066db697d66ceb803f
BLAKE2b-256 2e38ae71759a73f3ea468b6549cc0ace8dfb8e42fad921d24c937512aa66a21e

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4c1127382274898950cc0026a37c9ade622b297a066a70630d6581e1cec35fc
MD5 a943d641435acd9c074b91d459719329
BLAKE2b-256 712539ad9ebdf7894bb946db31481c7e8a751c5f96024060f7505fec9567feee

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bdedd57de48b94be68f086aa39c60376c8544ed868c890bc91fd214dce1f7a2f
MD5 ec8e3080506316f83e0becb250ae0580
BLAKE2b-256 2cdf0d9195cfd3c4fd6cb38cb28e5a7af391757b6bb21782da13ae3086d9968c

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c7620a7490f49946d305f10890a40bb8fcd931e994425acae2573cd898c043b
MD5 0495b508c102ce2410efdd8c061cabd5
BLAKE2b-256 f7cee73743c595ed4c59da449e4e226763aa9a5ed46b0db8b01587a8edb1e246

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1347a6ec1d4a515222a2147c124b90ac931e85f9b2d7730180c9bb5b42cb69a9
MD5 7fea06613d63018ad7a6bfe4df230df1
BLAKE2b-256 6ccf081e4ce0cd19462ad6e977e79da01a7f716b0f787919ba8950090eb8c208

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d58c91ca9acdadc4c133dde409c636bc1c5ebde9857c8f3aff4696af7bc7e743
MD5 485116f2b33a7462812803202a8b8f5f
BLAKE2b-256 63cbafacf4180832b83949172bf82cddb6cf63b035f26a5cda0436c2133ab46e

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8afa582f9af68b5e20045fc1f7cf1aa6cb7abfc7ab20865de4dbbf43395f0f76
MD5 419da1707c2ec954b1ec69da58d83198
BLAKE2b-256 98a49f5bee18aad60f10b3dc62d689ff63acea10fc754aba678a7fc52c00a3ca

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a16cf3a455872ee735b7b6773d795cd5b44e7f9c6b268eaa7bb78f25b9662c8
MD5 641179d906a17c092ff152c845805491
BLAKE2b-256 2737478f20bc9040121e9e104c944a59564f2e66540f33d291944436babe6239

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e20cc009afbbb9c7470bbc82560404f2d78a9cd12e6c115748cb67d54e6ebc64
MD5 d3a435cba018e68f566a98f62a303df4
BLAKE2b-256 db3233f44e8b3bde78ac7b3951f1ec4056e5be8ceb43ddf668cee15560d7b936

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 167.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fa43234119f411b02d0035d24df9f1d47994754ccb17ac4a11c12162e835f8c2
MD5 e3205463716d0f54700f05b20a3522a8
BLAKE2b-256 ccc78cec9eabfb44f1281a949430a45b8c077dff350189f72f75af4689c4f818

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 157.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 29ff597160cb7389bb6bca25abeeb2f63b7c1126a9b47a8871f81eb864d5fbda
MD5 5e6f6a7b4cee9715b979643f652bf79c
BLAKE2b-256 a44a2aae669fcb666446f788f48504614b10d319e3059af8b24411fdb66676f2

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c4ddfa0b6dfbc22056db0136b10e768c02dc24303c1a23035f485a595ab2f11
MD5 0f7ce54693f50b214cc5846f9c03ada2
BLAKE2b-256 3f66bbc45dafb395abc5692caa8cda98cc5f691810979d10d49d311c37e5f6e7

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 75e9b7604e8e71211d5c1dad9f2fd41cdd20b73356252416205b3ed8cd35a726
MD5 f336fc704a72b5c0d519f74d4842f699
BLAKE2b-256 cfafc4e45409ef74e7acde6ccf1ed8cd6dacc6f0491feceba4e6f2bb01e9afb2

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41c40c6e171e8fdc8b10f8ae93c8263f15779197bcf5e92bd404677866decfdf
MD5 259644e4bcc96c7c2fb219bbd028aa04
BLAKE2b-256 519af775c54ffcbedcdaac62985e92193662a717a57a297c6c278f118a7d3cc3

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6092d6d51c8618327fe742d0a0abb828a1570a63894624a77192c6e2997e20e1
MD5 1109c7760cf078333cd493acbed01ddb
BLAKE2b-256 a9a7b3ef3d2adea840a2eb95fa1edf1c21d4f97647221ee74d45b12d8387d841

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 294ddd094b6883ad64449ce8e4a6380dd48c84509cecb91345b1ce96f020b34b
MD5 510cdc5903c9c8fd9126937b0db670c3
BLAKE2b-256 090de6d48474a5ff85d5f0e696e1bd040d3ada6ff38976b6abe4ca0c50b7e1a7

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a064db160595e6d3ec4cc612df3830496c8cacd17fa7121f404351d0b2c392f
MD5 cb732a03d5fcf4b373542027191e5215
BLAKE2b-256 4d2fcfa464a6d09af7bbff9ae78bf6827aa416a51172aa163b6c9a2e18d6490c

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 182cb843ed4b7800d1103bd886655802efcc31e0eedeb2443509354244fd1b6d
MD5 c1600248bef06ad2a85688c358e6271b
BLAKE2b-256 d6d472787c2f01f2957a6275f4e9a014f8e627f0e4fc07403c6325ec849be55e

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 daea1dc0127657a7ce577a1025628ef607b7058add0974dbe13b6dcef66a09d1
MD5 47274e32aa02e1570b5d92991a7b8773
BLAKE2b-256 6155151bca126a3ff0dccfd763bcd75ebbbfb6d24c1c9864a6ccb5f148ac7497

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b986ab3af232ac4fa7fb9a885fde6872069a4dc6c3235764798005b8fe7bf8a
MD5 c9aaa5ef717f996ca949ae4f41c56033
BLAKE2b-256 104dbc96cfacf8497147494d39914a7160b50761b3a9c1ef46c75a46ec6fe51f

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 154a519867f9c8e893536143d8d050cd4242f5fe22993dd777b7396234371266
MD5 7e7e92e448a73e5a35e8551fdbe37d70
BLAKE2b-256 c2d57fca8e6cd4089a669e3e2a93228007df0e7c9bfe14e47a7bd86f0bad863f

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2384f83f33dac3b3749dea906b1a1ea5219ee99043eb750dac9f719e2850cabb
MD5 a6477992b9375b68598bce3a1722d615
BLAKE2b-256 cf2a2333561d37837236a3bbd8c8337a48d238d5add29bc4f54cd7413d19eafb

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb809ec1ba299b585a85456d7d8566f97d9c85b224e33b4d37611f71e0d4cb8f
MD5 e29fd754897c7fe01a2ce112276f9a72
BLAKE2b-256 b9be7cf1ce4570865dda04767b4e98ffa350b5e2118085683ede2399047f4e38

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 167.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b9c76c2cae6b306b0a696e07afab5f0abc6b327c97df6fc7f353f030b50e8785
MD5 50bada02a9563b3b9e340c259d35dc6d
BLAKE2b-256 ac67e89deb37b970536c4ff995122eba228ca7ca6b242eb241bb6a1a036a5cce

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 156.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 58fc8d854ab8cca25a044f46a90f14b5affed53ddae9679754b1838154311bd9
MD5 a8aef849e16bb4fc061a72fe4319c80f
BLAKE2b-256 fe94b6372e8078c41e9e6fa4ee81e0734c6c8d3accde7bf1561cbd6d1dea07c4

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6809ed905091abf0c56baab36fcf3c242a121e44757c4d28f2a8cb61c809b207
MD5 33094355e91b22c44f75d2527caafe04
BLAKE2b-256 790352485192192f330596fbb65a0a3266c6d049355444a0427eb96f27626281

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f00e98860b3d37f432a8679c567a30d4e411cd5c3083848b210891cd51947409
MD5 0a85ba9ce813456f243d96ed2673f2c6
BLAKE2b-256 fdfb07ec6eefb9b53c5f79eb6ea874c59959d7c964fe3f30d6387c4f3925697f

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef698435f6bcdd3d5e6b155f0098e28ae9643d5aa0e47f6f45f186e34f91f2b7
MD5 7f1c5712436c6939994e25dafb0fdb2d
BLAKE2b-256 026424d1d35c2991bcaea42f49babb76f340f4c427d8ba45e815fe7f4bb976ab

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb4e6fa1752ea72a01ae2e31e6aa9d27cb8362d07b1f1396d2c148e7a2aff163
MD5 bf9038ff749b652ef3e22e223f93c5dd
BLAKE2b-256 a52fd1f230c3f23406504ff91ef2ceb86f5a9781c3d42541501a3f41d21de44a

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c16b057d2199dac935c1e77bbc6b6ed21f06c942970ad8d36f2caede4f56b1b5
MD5 301b5c7b1167fc8bc353902420e4afb8
BLAKE2b-256 260abe7760b5f8b763ea278509ca2b6464688f30b4cefad2f5368257a812913d

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d3cab4eb8fea345cfec2276ad344bb2e99db175d66e1f1e415be013b6ac1786
MD5 74f237d2f92059219d7b8006f507d41c
BLAKE2b-256 c50f6f773245acbc831fd708d0aff73792742dd611473cd6599d9fe734e76ccc

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd5649a27a1483dd6d0e7dff7e4c21c81dda0f1803e8e1dcefc4fcf73f230d7b
MD5 6aa49942195059e1f755bcb6914a654f
BLAKE2b-256 f4ac2347e77cd78a75a2f89401e3fde68f2455a33c8cf4668bfbe6a84fdc1275

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a124c60bc1728f0d99eb9e2f5bf59c7c511c03b940b9229ecce039c8192e1b24
MD5 956efc03a122154d37d7b6d709f6c549
BLAKE2b-256 3f6cfe5e031a136e0e9e97db6b390d6a3cfac62be5402550b5875c45f22a80e4

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9271cde7a2257811bd4755c42f24f1c58b3b81131943f54ec73d8ba328a1c4ba
MD5 6b21f02e13c19d8b209a16ff1032a84a
BLAKE2b-256 d6230f221db2ecfc04ffe3c51fc9f4218e0d20bfcafb7d4bb83d4ad6d353b0b5

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8cd21ef07322d6e918054c83941a3b98db7ce698318926f4b6e0a74766604b39
MD5 bb3eede52e3790717556e8d3df07f417
BLAKE2b-256 35392b81ed2ce6da440ee7e41842647b3a31c61955144373cf75c7f1d34cfbbf

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 168.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 526f6555ae0d26f0b03baf89c0f48448c9cafe21f405ada53a3230777adf617f
MD5 05e973a32ef7863c3f70426c5d32da61
BLAKE2b-256 d8d4afe1f1bc44ff6d9ac396869328d350efb9159eed56e7f00ebdffe8ccc819

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 156.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 237fde7b73ded3cde087333fd00e4a214ca70c651f30de8a3563ba406dd67f95
MD5 60b5f420215f355dd768b40190fcc9b4
BLAKE2b-256 31b344426dd5111c4c5293c4e425f46a51eadc193a95c753c77b828aaf775161

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2bb2f3d83d90b7ee5042569376b0d6fd3035cd042e515ad28125e801fc4c051
MD5 306a97ca678989f6b81e53b5b7df3a5c
BLAKE2b-256 e080d338a606667be87fadf98e2abeebb7bfb65ef918a0488cf5d412bc42c5e1

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 88461332cdc5ebc17376e47997fa8915470302fbf4e9f30d53ced0366f1a94ef
MD5 c5d75296927723f7f8753b3eec29a217
BLAKE2b-256 46b7e0ae37bce5006c2f60e85cb2dfaeed8ff7349da18142a8a13a0fb561c2d9

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 994d5346ec456a29ed5c4e82a5e9964723f10a8b534a742ca7faab4e0d56989b
MD5 c535c0d1787fe3830f410568ab10b4d9
BLAKE2b-256 fd7f1d7c01dffe217353f1c5a09da21db0e11c39656c91bc4eaa435b54f18ef9

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f370120f0d255864eb1fe3efd64b912bc6e57819a1917cdaa5c3f2d0c7058f7
MD5 dda9600f332240227f5d97ed8208e7be
BLAKE2b-256 af8779f70c7298f88bece7859b85594ba3b0da94bb98c6fbc68b1b068fc5fef4

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b489634b187d4db3aae26a0375b37a1289dde7918eb16ff66bf79a3d7a1a5b0e
MD5 81e8b0967b0b505b5acedf79015a1261
BLAKE2b-256 8820ee8a1f6f4e095c606094a59e4b61ccd6326b2c0a18f20408fa78a265ff24

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c2f6474958d8766742bf9503c2d08647fb38d488ad957eb73e91078f0b9bbc1
MD5 da0f2bf0f79da95ce0ff249f4db0c8dc
BLAKE2b-256 180f9af321f89be63238a503ff7552aecbf18f38cd9ce59ab8ae0376835c78bb

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0ab087dd77df1cccc2bf03f14b0f4907831ea44a3a30354154c1acf124b0fd8
MD5 d8729810719b4a9f7ff91daaa668b22f
BLAKE2b-256 34fc478291e3f8ca3937dc79a82d56f1e7713344f235a9616d1304268f4f8d9c

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 305f00a48e4a3cd14d3fe42c1a3822ff9e3cee832708eb2c3c5a2f774f34a52a
MD5 fd243f1148d68f0ce9b5554a45cc6c25
BLAKE2b-256 0a6ceb9f5269b90c1e853dfd39c5239db0b973db3c19e31d54af5af1e78eddb8

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78aea277a3ee8c40c81863d28e5654a9e7197a4f06024b8761a8dafcc10ebadf
MD5 edb23ed96220f020a392a9ea707443dd
BLAKE2b-256 3b058e9699644b0324f465ef900353faef864c5a9201775fe7b551c8bcefdbf6

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f5e6edbe3fe8966d86ab6209287cd19274839e541cd72cb22799d4feb983dec
MD5 bcddd4371c84a595be7a28060ea27a7f
BLAKE2b-256 786e43f8ea0d553f3e09fa49965eb0db40f1a4d86610210d6252f86c200b7fbc

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 168.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 13dc3a00951c67a5d81afc4d52481fd0b3d0c95bcc8160411498dc969a90c1ed
MD5 fa4f0f29c1fca3128db7f1814e649041
BLAKE2b-256 a46304f27aad3cf8bece1891e6cc72da092ddf38b63c6b9ffaebfc45a67e5dca

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-win32.whl.

File metadata

  • Download URL: nilvec-0.1.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 156.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 198c14244d03c99fa60e748532723e08303617c838632ab6a4e200e8479ddea5
MD5 c0e8a89581a4a16ea750a751be4774ec
BLAKE2b-256 41c775f87869e7aaaad5ba8fe357a58a88aee4b018ebd927358d55dcb8b0992d

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 041d355f5495bcceafcaa9b7c8837aa209b8f61162284e3fbc223893e69912b2
MD5 6e9cf43b08372d535abc15df36e6710b
BLAKE2b-256 4b1013d1b6f0a248a12a5776c98d7cb3876fce54b202ad933f1bc04b5afc12ed

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f66467035d735b6c935a535813c50f9abff84b439ec94056774e7f293791e0dd
MD5 a77b2fc470d812a145bf325847dec186
BLAKE2b-256 483d28b267481a90449d67297390e41bece0ef75a68005d401635cef14c821ba

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2048f4ae2f4c181e20bfa386bcfc2ce115a975ec13de88c9b5bc0fdd016296db
MD5 5d83001489f6d0a11af18ba39fb7f5a4
BLAKE2b-256 68adef6edf4dc8cca62777dd1d0cd6c3b935bc49a3b7a96dbdc8e2ee1c97e8a8

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06a3a63a48aed2160eca8eae752d998b423ae6157da63538245acb6bb7d3ed9a
MD5 a9bc86589744867fe304d46a2c5ef45b
BLAKE2b-256 4809c1c84eae170b774969d5753bbc1cd4ac7a7ca512eb7cf6d2376de6b5a777

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92caf21060d09bd1d20d7cb27a0199c6c0594d641dba24d4274bfd741ba6980a
MD5 d7d037a59dccb70a2b554ade7ef6a572
BLAKE2b-256 636e8dfb4e6726ecb53dc3c72859988e7f6d30f02ee910db8516a5224750bb74

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b0cce40bec4a5de484ca6b55435a0bef469d4592f1cffa3d1ac4c001f4d7a86
MD5 c00d90410098a6fced20ef516e739193
BLAKE2b-256 44a3f827569e6d32a280685d9e48f0663c6890f8fa69bc94f5230a2a177c4757

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56dfd1dff811527da37c70e14d6581e0dd146666e3d909881dc023191617566d
MD5 b28d81445c7ef9a1e8a51b6f36c2bb01
BLAKE2b-256 5a142875818aea6f91db3e7d1eb9a1f029e11e01f052b081e122768f45750f05

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b65cfe8f57eb8350c9f13127cba2b383a2183e4e346168bf9a2f0b3ebcfab3e
MD5 8869bc1b6acde16ae6e7148fb134ea16
BLAKE2b-256 aceaa5250b959218c933df494d286a6969aa51cf4bae8405568358c75b060d1c

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b794c974cbb2b4067a78eeb96226cfb699930587ca916974516ad487a820f23c
MD5 5dbf7af6e27efcc2ba12489392f24dd0
BLAKE2b-256 ca794483f81f5545cf82542ca3b891c3677a19c115550e9fbe6f54f574180094

See more details on using hashes here.

File details

Details for the file nilvec-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nilvec-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 23e1182204207f3353bb9ef3d3cf73f52ed825a837744f4cb42dd4d456905e9b
MD5 6972f3c3b01ecb1ba3cd8d7d5a63c65c
BLAKE2b-256 f05cc0edca03895283e7f9433f4c567a9430a39eb546770196be8f386d5a4346

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