Skip to main content

Fast Hierarchical Dart Throwing sampling implemented in Rust for Python.

Project description

HDT Sampling (Hierarchical Dart Throwing)

CI PyPI version

中文说明 (Chinese Readme)

A fast Python library implemented in Rust for generating 2D Poisson Disk point sets using the Hierarchical Dart Throwing (HDT) algorithm. Poisson Disk sampling produces points that are tightly packed but no two points are closer than a specified minimum distance, resulting in a high-quality blue noise distribution.

This implementation is based on the paper:

K. B. White, D. Cline and P. K. Egbert, "Poisson Disk Point Sets by Hierarchical Dart Throwing," 2007 IEEE Symposium on Interactive Ray Tracing, Ulm, Germany, 2007, pp. 129-132, doi: 10.1109/RT.2007.4342600. (Link to paper on BYU ScholarsArchive)

Features

  • Generates 2D Poisson Disk samples within a rectangular domain.
  • Fast implementation in Rust, callable from Python.
  • Produces maximal point sets (fills the space as much as possible according to the minimum distance rule).
  • Simple API.

Performance

On an Apple M3 Max chip, generating approximately 170,000 points in a 10000x10000 domain with a minimum distance of 20.0 takes about 0.78 seconds.

Installation

You can install the package from PyPI:

pip install hdt-sampling

Alternatively, if you have Rust and Maturin installed, you can build from source:

# Clone the repository
git clone https://github.com/Fanzzzd/hdt_sampling.git
cd hdt_sampling

# Install maturin (if you don't have it)
# pip install maturin

# Build and install in your current Python environment
maturin develop --release
# Or build a wheel for distribution
# maturin build --release

Usage

import time
import matplotlib.pyplot as plt
from hdt_sampling import HDTSampler

# --- Parameters ---
width = 1000.0  # Domain width
height = 1000.0 # Domain height
min_dist = 15.0 # Minimum distance between points

# --- Generate Points ---
print("Initializing HDT sampler...")
start_init = time.time()
sampler = HDTSampler(width, height, min_dist)
end_init = time.time()
print(f"Initialization took: {end_init - start_init:.4f} seconds")

print("Generating points...")
start_gen = time.time()
points = sampler.generate() # Returns a list of (x, y) tuples
end_gen = time.time()
print(f"Generation took: {end_gen - start_gen:.4f} seconds")
print(f"Generated {len(points)} points.")

# --- Plotting ---
if points:
    x_coords, y_coords = zip(*points)

    plt.figure(figsize=(8, 8))
    plt.scatter(x_coords, y_coords, s=5, c='blue', alpha=0.7)
    plt.xlim(0, width)
    plt.ylim(0, height)
    plt.xlabel("X")
    plt.ylabel("Y")
    plt.title(f"Poisson Disk Points (r={min_dist}) - {len(points)} points")
    plt.gca().set_aspect('equal', adjustable='box')
    plt.grid(True, linestyle='--', alpha=0.4)
    plt.show()
else:
    print("No points were generated.")

See the example/ex1.py file for a more detailed example including Fourier analysis plots.

License

This project is licensed under the MIT License. See the LICENSE file for details.

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

hdt_sampling-0.1.1.tar.gz (11.9 kB view details)

Uploaded Source

Built Distributions

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

hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (444.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (469.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (539.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (453.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (276.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (289.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (445.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (469.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (539.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (453.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (333.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (276.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (289.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (445.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (470.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (539.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (453.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (276.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (444.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (470.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (539.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (453.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (311.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (276.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.1-cp313-cp313-win_amd64.whl (134.9 kB view details)

Uploaded CPython 3.13Windows x86-64

hdt_sampling-0.1.1-cp313-cp313-win32.whl (126.9 kB view details)

Uploaded CPython 3.13Windows x86

hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (444.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (468.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (538.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (453.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (311.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (333.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (275.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (288.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

hdt_sampling-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (236.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hdt_sampling-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (242.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

hdt_sampling-0.1.1-cp312-cp312-win_amd64.whl (135.0 kB view details)

Uploaded CPython 3.12Windows x86-64

hdt_sampling-0.1.1-cp312-cp312-win32.whl (127.0 kB view details)

Uploaded CPython 3.12Windows x86

hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (444.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (468.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (538.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (452.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (310.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (333.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (275.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (288.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

hdt_sampling-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (236.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hdt_sampling-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (242.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

hdt_sampling-0.1.1-cp311-cp311-win_amd64.whl (134.8 kB view details)

Uploaded CPython 3.11Windows x86-64

hdt_sampling-0.1.1-cp311-cp311-win32.whl (127.2 kB view details)

Uploaded CPython 3.11Windows x86

hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (445.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (470.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (540.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (453.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (290.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

hdt_sampling-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (239.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hdt_sampling-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (246.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

hdt_sampling-0.1.1-cp310-cp310-win_amd64.whl (134.8 kB view details)

Uploaded CPython 3.10Windows x86-64

hdt_sampling-0.1.1-cp310-cp310-win32.whl (127.5 kB view details)

Uploaded CPython 3.10Windows x86

hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (445.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (470.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (540.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (454.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (291.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

hdt_sampling-0.1.1-cp39-cp39-win_amd64.whl (135.3 kB view details)

Uploaded CPython 3.9Windows x86-64

hdt_sampling-0.1.1-cp39-cp39-win32.whl (127.9 kB view details)

Uploaded CPython 3.9Windows x86

hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (446.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (471.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (540.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (454.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (335.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (292.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

hdt_sampling-0.1.1-cp38-cp38-win_amd64.whl (135.3 kB view details)

Uploaded CPython 3.8Windows x86-64

hdt_sampling-0.1.1-cp38-cp38-win32.whl (127.5 kB view details)

Uploaded CPython 3.8Windows x86

hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (445.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (471.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (541.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (454.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (335.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (278.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (292.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file hdt_sampling-0.1.1.tar.gz.

File metadata

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

File hashes

Hashes for hdt_sampling-0.1.1.tar.gz
Algorithm Hash digest
SHA256 cab5aa01db7d68593c5c95b1977cda258471459917cf165acddcde7596471ed2
MD5 976c28afd5e16e9f535e2359c7882063
BLAKE2b-256 7dd387db935158f6a2afa05384018013f6aa498ecabaa1923ae4e521ce0d367b

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c413a41a63b04ed07288c4efbfc4060d1975f8f0b2a1e2aa26b2dcd7ed6a53cb
MD5 ede0ea57e7ceae206fb28ffc74706d6f
BLAKE2b-256 0b4dbd70b287df6d9d18abc86515ed9ff0be2127ea88769fb9101bea6dfab630

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba26ab724f94718ef78baf3613a72d9eaf21c6d3ca22d2055b1f48085522725d
MD5 f166df9606c77b12fa22104e84f1dcff
BLAKE2b-256 5d74c4d36046f67395c0ac8441b0c7e80b9293fbb3d6f8e8df9e32183e0b42cd

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e1d43f0f1f1d698ae0ce1f82f2f15dcea16c1e822f2c5b085922be579a6574d
MD5 e682804b240c00ddcf5ce73f185b6f15
BLAKE2b-256 237ffac5dab8aaebe80a95dac21d5538ea22a455e607adac3557d1c00a910a49

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a09cefb2bc4fa2500d06ffbd0e3cf5564237912ce096f0e85f2fd8f8943da645
MD5 8553525b49e6b111336f510964ae583a
BLAKE2b-256 35847173a6272b6ac03cce162f416d0646af7ccb287f0c6a293e9a363303234d

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e997e2047f62275c322c579cf71d3dc39c4c7ac6558ee9e5c6dd436d4a60796
MD5 3a3e1feb44f6e924ebae8fc39e528341
BLAKE2b-256 ea6ac71b60e397a5d7f5151a53e8bb3a89202152afc98235a6e95b17fb5cf64b

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d5e3472c3f7f15e37ff537976767acf60765a04f3ec234a685429dd5979db76
MD5 0a4928fd2fc4d0498fc111351d7b5e0a
BLAKE2b-256 a57b444e654f1cfb67e523123713936e1b022737fb7a6974e86fd3b474e3cb31

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6842a6ca579c45800f31feae54f9297b5c2bcda80759c40721309c549db7b8cc
MD5 32f4f9ee0145824782452e6c560b61df
BLAKE2b-256 fa52bc27933911d55bdca1cefcc80e02710b2a6cf15a7ddcdf6e96d1165bc5c3

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fde03e2a6ef8bc253c42b5992acce1cd1283ff14b48cf1c44dfee2015c9b9ac7
MD5 2318db9fe9aa6a8704dee79069e66c22
BLAKE2b-256 06a0ab094237ed534a62285943aba65b5e19d93d8d1d86a5df8edcaa1e8cc26c

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b3934cfc347c42cc3a77c774881c9b8f35c2cf3a8af134aee93dd994c5b0457
MD5 f12abf2a0c3c78ecae5d3c8d87d35a90
BLAKE2b-256 977939e84a5f8aa9fe1ef4d31daa1db5fb31854f6ddc75f7c898204118470726

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a14867dceb519f4e629d0ac8a910ba6f02676b9d4fb3e5e427e9381741b1f10
MD5 b5940ce9ae824d1f6a5de08a049e202e
BLAKE2b-256 d68f294bf03615bdcf11918c650bcd724250eb8bbaf46834ce800036529f25bc

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efb912f46a4f62442b1eed18263ab897d254c02937a9c1fb2f676f47fcba9738
MD5 8caedfbedf6772f8d2c9d6fcf92724cb
BLAKE2b-256 831efc681ece082348479ec603b4313024016ce0ef8dc879772fe95cd58ab210

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb0c0d76117c4eeb57023cd3ce0cca19d80b22e5e56b90f55b8602d708ee0d73
MD5 e262d4b995030245ee1de0497b640ec0
BLAKE2b-256 acf36d88d18110d1c58a2c119cfad3f8b0abadfa1f856b26434fe11eb6128b7d

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cfa65de0c0b73080c4e21efeeb9210e2780632ad411b6e2ffef94a77a2f4b8d2
MD5 3ee90761ffbb36d3d48252a4be23e7de
BLAKE2b-256 1168a8fcd6a3c60314053a9f90e04d35a8813c32436655cd65bdae6559f37c26

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c116d93c32898a9be6d705c902f4c85ae97fdf8ecf5e591996980c7171ed72b
MD5 ac7d0061a554cd4a68baaa1e5617f2bf
BLAKE2b-256 e92d171549b2e6e518b9d215781243c228f8e5f52fa44d24065f098bb584b0c6

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2803c0795563b030a46fbd59d81d11ba17fdc25d201ef8a5adcca8d9adc3b575
MD5 7f0cd04858fd358ae181552e53d830b3
BLAKE2b-256 fd0b3e4b2cf4995db43eac8c16f1266f5c2655b4768e58216d4331847f9ada21

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73d8ae0fbc0bbbc2389f3f60d1b07be411685d77e686fc451694a91ddca49ddf
MD5 53409717895a97793650869cc68743e7
BLAKE2b-256 664e7bf59c035dcc44702562bd95abbb929cbc02257e9179b29c0c37606e360a

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74ede5966efd6c64a0baf71563abefa60b9474ef729ce673d2912be5424dbd85
MD5 2d715fa3a2155bf66ab413b84992c6ef
BLAKE2b-256 2225064f78b90ac2055f936236c78713a9db71c7db552d27b5d51d0bab210576

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a490e2a7d52fc9daef9a7b252303f4fd83d98c60667000583c886ae4442744e
MD5 5e40d01a186a82f3942a4b36235ef417
BLAKE2b-256 577057a6331f8e0147dcd5847e42158c0ee0b656bff19070fc951e621a884e17

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8550ac48324b463bbb5a4cc728ca7bcd2e2d72c99113e027253ce94cf40cbda9
MD5 ef43b34aab623a2ace698536f7570f36
BLAKE2b-256 dfbf3405147d8c7628ba4ffdd471015e02f8d5cd6591793847ead83383cb7376

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c35d0463b22b627d6909eb076a5b8a09e4ebe161308fa8500e1cb6d898e246a
MD5 6b16610d601da4bef1866e21f8e102c8
BLAKE2b-256 b4b04d29ba457380361bd595030f106604636571e1f049239180da96cf1bfa50

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9671dda7d587fbacd2f47bd864aa5d5009db19a3789ee662f4ec1c7f0e551db9
MD5 dee0d39ef40e2c7b4f98c826a3901e28
BLAKE2b-256 1e3b25e43275d787ae0bbb9e49b6f06e7c67aac13551eb9af092a0a0003b9378

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 137564c6c9c045e0c09a0d3fe6fe8b9d0baa69f4a0b476fa93813041dc458ecc
MD5 ffdb0e727c77c1b43e71221f23a62fcf
BLAKE2b-256 80d9b9a909b9c904e6482ca87709ddd263995ae550a0a04cdb2091371e4cfdc0

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 24832fa6d670c0b4dcd5f339b0f48c3d7e0cc3cfdd6d703cf75dd69c4aac4fee
MD5 f6c56f5ad8c89803fab35c1104fa1a63
BLAKE2b-256 e4bc0997c5d00336a5466ca341d1698a00fd32453cbdc71ec606686b59f24d07

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f0107382c499ac565347eaa55a5e865e990f301bf9023e997d2200b44b12143
MD5 8e4eddfecd005da862e94679a362d231
BLAKE2b-256 ec25e824c7d0a7e3e7ecb9ab4996b984b71b52546179998c4f1236d38eb6d885

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5eb820038ba91724cc6462706adff22c2cd08f85dee21b11d3923f308a00c11a
MD5 c7506c79c6c7fdb6b2226a8c6974dfd1
BLAKE2b-256 08c317f0ae9c75bddd0e3a7eee64ccd3eae75894c35318fd5916e6a52f81bd29

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 416bef34eab0ae7b574ef0334a26ac2669cc2e6b6a507fc51bbd75e386059339
MD5 0ff5940628737851fb3983ca335aecbe
BLAKE2b-256 4272064b006e86a1bb9b9a4cf5b72a1e1a63d642ad45e8cd6d18d2bd7e624806

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9486a874ca85ed5df0a9ccc71c25e91735a54d3bc6c6397d2260d83681af3a44
MD5 926b51eef3b2d60c8f987558563cacb9
BLAKE2b-256 1ac791df447ea16f929d297a454c1495a5f6d03278ba9e89963825190debf923

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe3e9af2cf59cb0edf8410d0a2ba801183df418f035e3d22f71a51550e929010
MD5 893272154264684c793ddfcd0da05313
BLAKE2b-256 4bf6df784699a873a8d7c1ff529093153d206b3cf3f7e7ae5a1e813158c0c22b

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50d2dc232562cb58952d002c792dd7d4ca9773d8859b8aa0ecd76f31f7966ac4
MD5 0b70697f94b1c0e34353c92c3893be0c
BLAKE2b-256 92be205aa62a46f25f0521d80cf57bd286403d9e593428a0a239295d77db5e92

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c0221509c6bb86e946fda52c58254b2d95ddfc815223c493f2a15997ff8931c
MD5 31fb5ce57a59a56960e33e820142bec9
BLAKE2b-256 d70cf9710c7abea6225e70f7cd1995df7152c86beb7614eb10042aa8a3743636

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aff1c444b8b4a354012c10d1727a2fa228b64d574ede5936fc92a4f0cfe580b9
MD5 badec4a10e254377b0be724573777c24
BLAKE2b-256 2d8aaa01abc2acf285f50c2543fbd88cce4fd1636a32db2fae733ddb8aeb21a4

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b7d6d6f5a74ad4def1156117937cea24bb9d6085e09ae91b34b02e3101588e1
MD5 33b0aa4a3c5563572cd3032cb6b46233
BLAKE2b-256 d2a87a4e3ab5c6091b64229e72a9de3ef5115313e2b277a08f2a34ce7a0cc6b7

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d98bfcd57f9c4f592c44816ebd27786457ae33baf90b53a2c0626a1b40ccad3
MD5 4fb837ba11556c329c39f4e3215c9f8d
BLAKE2b-256 8d98037bdb75ced120a985e23ba8c0ca862d5e8bd2a89c19b12ee4af86d39cfe

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbe2e6f9c3730895f26ea609f532a482fd2affd118e75a09202669e4a0a2b248
MD5 686f3b5a86b6385f48e533ca473cb088
BLAKE2b-256 d3a195a47745020850cdd4780b4605176c55febda9de9b56f52e490ef62ea2dc

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11284ff2c89b8732267702c26efcfa36bde8fbfb6066a2fa5daf3a317d9b2ffd
MD5 a4b6e833b291e65f6d3a45986b566d93
BLAKE2b-256 9e641d3bbeb639b6462e13fa15d2a1f731c414ad811ec511bf991a8df1814c8a

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f0eea7378fee5caf2a394e4a47ba426d211434fc7e6630f06f153a4a706e3a5
MD5 2b379b58a0547ceba5bdf82c1d6a1582
BLAKE2b-256 9e34ab8c2898f90dd88a3c1bd9155bda669e32a486fe5a76b907b813d90dbcec

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2436f2c8ad43a60da492a4a760b25d1d0fe80ac4e113fbc496c692c65d09c26c
MD5 a628662db448a543ae4aee585c0c9f8f
BLAKE2b-256 fa12de16c0a51a96f0739e02a9327777e4ffb77489a2ccacd6c6001e79d1460f

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0309d6b0981ad2636ed417f9ef60fc4e84063005c59bd315bfcf68230f8510b1
MD5 10e69edf4e93cd5b82cdd7a65ac0d216
BLAKE2b-256 4c7a6c3fe1e197effe2f3b2090d2381cd713356a6c5ce8ef92b2f8658d65a2cb

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6ea5a033447a60d3b6bd12a8ac84b5666b53820fa17386b645dd85a8a62dd32
MD5 3395c73685b82834a702e5e079fbb592
BLAKE2b-256 f143c81db3eb9050695914018170a1680fc9bc8b363677d0dbf5bf79f97d57db

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1dc5bc5615476229cbcddfbfe9fc7b833a85161f7e4d28bca2280c75b8a783aa
MD5 9fc96052c2b770d9124fd5aab2793e48
BLAKE2b-256 8dd5363d9e13396367ed6063c4dce2cfe60c25173e08a02e220b6340dd47be09

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c6ccc6dd5c47a5a740de72dcd969aa9782f70bdafd062eb6fe9af222f438789
MD5 66367f41b23889c68433157c68337e9a
BLAKE2b-256 ea11de5ced8ac86fe5dd2761b2117921f35bc80d509474f41b5e66f09e9c1622

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22d3d9bffc917f0a46ac539bf01ade4d05067de14604cf0e2d968ba708e91eea
MD5 15df3271ea00291c67435ad60c33b26b
BLAKE2b-256 8293920e46d0cec0328883c21cb6a2b5b8fae99ecf1341e8930eaf0d4f752316

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa64ffd1f18b7d9187ff714f997bffb59a141dbf02b057c288864fa6ec2758a2
MD5 801abd2dea61bcfd4ff044af346f8f49
BLAKE2b-256 0d1afb6b59cef5ad5f8fba3a5f748b990f6cb7d1570e8e4345b986d5a807d856

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a808159d3a5082c7eae440fd391e9fee8c2c10a1f29aae64bba2f97b340db8a
MD5 67f59363f22d6830deec05c192b10c53
BLAKE2b-256 edc051c86a06e713cc3cfcd84e87893c782e85fb867205061a125d115eb2f54c

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1486514920c9334b74c497baef18dbc5bfa6ead0031b8969e5a60cb302aac63f
MD5 1744a038016744d91b7068bbdfcdef08
BLAKE2b-256 60ce74597ce9e8e2a4349455169836f656f0cd870a23c95875fb1fb6d6f31117

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f0097ccc34e94819f7af3658162ffa16ac8cd757868057cbf917f812213d6cd
MD5 5a2b5c6a1ae04ef310cc3a7ab9b4d875
BLAKE2b-256 540a6ecebf97fb73634d0560eda6cbbe559272e773df461c010326ac9c15c6ee

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00b5ed101da5d93f19016619491d9e9ec6925c97582bd1011faf8a8520e1dab6
MD5 1c03bd929758388daa02f243151ee67c
BLAKE2b-256 11014991ad8cfca5831e0b78e19a8d5411d4730671e87d8640a33a46dcf06444

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc8f09a720619ce1cd7e5222e879bf086d14c593c269074db4a0680f8251e36e
MD5 ff6a009b516500c6240ff3b1cc91ee0b
BLAKE2b-256 81c91f724e0ada150f407b029b5d9a35e0d7b78c7c6cee501c74ca9fb41bbb84

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77343e39af060230e5730b05fe5a6d27a3756bce00beb232d015a87426885a5d
MD5 a2ea3ce2fc8d5bad0b4aa8a81d0b37d6
BLAKE2b-256 65a9009e3b14a1d74f891c0bb74fd9a034cbb42549c24037b573c49d8afbefc2

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b3ec9521103fe2daf654a7b1b0252d12ee05903a28bb28684f75e92ed7c6d2b
MD5 d704639bd749a77f1960da7b381f808c
BLAKE2b-256 998db732b1c763d1c49d31672b2a360f3bcea899a98a6cc12daa017218fa4604

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c9cd77ff6a74dfb54055d57e5b18cde36f6c1271e18e33b510b2f0ddd63c5059
MD5 0c8d320406ce063717170f63c01ae8a4
BLAKE2b-256 8840d1d63724361c736d50b5ebc1c3461b4a27b19d9e8c62515581b19569aaaa

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 af850d9a8bb09e7c43ed84a758d994795a183f5460325fa9ae4898235c52d610
MD5 beafdab49fb09b8c104b57e2d7518a39
BLAKE2b-256 00c1530f263f9035b5b80bd9a4d5dcd1c8ee8baab2c4c10a5ac06b0f9a707d84

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42def997af95912cef77652593a2e5c238c9da95188280e66c2d4d1acf4af046
MD5 24bc018e9a3636a9fe2ad0c9146dec31
BLAKE2b-256 a59a871f7d0a27f99ff5018c407af1fd560ef0b4284fcac3ca4a160e3edacaec

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d45065129905f2dcc86149d714604ca807a742c99bac3aad7696451f14f2592e
MD5 4a6fda789e07d129325a7a81ad86fc52
BLAKE2b-256 f9de084e94159490ed8e3b5f442028b8b796d2d8a551781a774a5d54d2482582

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6abf8b5e72fb48bce16ad20eba49b17107d1733aa2512522cc43046193f9e269
MD5 bd971ca114cd9cf6bde4a5a94fbc3906
BLAKE2b-256 2f385c5cc7fd0a75c76263e54427730a20f4fa4247fd257be35443d9d095b85a

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8804837209c97d9abea800932b1834a6c131c10451dcceb44a1d71f23700038b
MD5 26f642c91ae6a165004652f59405f1d6
BLAKE2b-256 57cf0e521111492dd072cdf83090614c99a3cbcf3a6674790094a857e55b4675

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 565a621ba69ca942c355d00cffa60b1af8cc5f382a02cb2de4716ce0c304ad2b
MD5 093535d7ced0c8db4bd1b8e3ab6a6634
BLAKE2b-256 bdf81ae9f814d88d660f70524a2b174f2cc611f23fb1d8ceb825ae96e5af4e73

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 591ecafa64d815d10ce5e1318499a6254bdf2df3a4f6897d0bbab2c430a10971
MD5 cba1531254b6b2b22ac213d91f4c1304
BLAKE2b-256 9a9b98e5767d2644811542a3162dbc22f3ff4e6a93e0ea0f54a761505d60e3b6

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46dee79e5e5fd448847ad1ecf48a6d839a24a1af304b6accda552e1067510658
MD5 3103c386dc64a276f079fab268e65c91
BLAKE2b-256 df39e81c0a91000b33084a393883cd3763d8de1e03558d72f4b599a60b631144

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c4c9d38090f2c25b4330f005b0c18422fc3995a7cbd64cfd68098401a563001
MD5 539c29ed12120244d023ade54c3a34b7
BLAKE2b-256 44934c667542e30ec37bf84c1728751862f199b89e5931cc02143f783aa403c5

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5de3e0c3680e633c1676eabebb5fb9cb1d75c150f0a7239c692568ca85745670
MD5 5af4eda877bfab8f0468634f121952c0
BLAKE2b-256 9975f04b047bc232aaf30aae1ad37109de250542b6f263ef6c74b77b2efacc3d

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d754c00ad3460e3f226a134e26a01cc6496f4a745d078edd6dba9c918f3fc72
MD5 dffd5922fde06a1f4a4a4948a02fd4eb
BLAKE2b-256 3639c58a64f38046e350b6621bf5020f14774c8caa530ec361b615f2ce0e331e

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 158afef0b483469e692ad451a0eac8a9812550c3a2660c574d75020cb5c2aaa1
MD5 afee98cfb2c72587b31d3e00ae750b3e
BLAKE2b-256 87cda157e38d81a7b017a9681468575b8935876d0030fec4163f392347e02f91

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9c6de04fa7befec1b59282b3906d9de67efdcf8f56a87130fbf567834184306
MD5 614915620ffce13231714feb06c6ef91
BLAKE2b-256 ba90fcb331060be84f242b2a247f36ffecd56b4ac00cd5368b7819f50a98df60

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a459291247ab10a53a2a6b68c0e71660251e2cef2c2d87d5781efa4ef827f08
MD5 0e88c32088b67db9734b3c7b06698f0f
BLAKE2b-256 e1f729f89bf7304ad28d8aaa6961010a88c716f69ed47bbc7430c3e9e110fad7

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ea2b3e847c3f35439102fa7988d7ebdaec6e39c7a3064ee93b7f07136d87951b
MD5 5c99599b9d61b747d710327841282d0a
BLAKE2b-256 c594fba5c6a5e92a506aff18d785f44a992f23e512bc070569a95a96801d3304

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a8be5d4fcbd4427c46552ecaeef124d894b4658b88fa9de2293dca566ad7e40
MD5 62ba092ee1bc22b26a95f8896056caa9
BLAKE2b-256 2d7985f562b0e6768d628875d0d1fcc842107c969ccf28ca9fd6cd60a364124f

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 339d62f943ae345d5045107f5fdc6a4a06b63d19838a54a318388a239475869a
MD5 422ed51b98cf051851da8cc04cc90280
BLAKE2b-256 02cd12810bd87c59d62255fd617d5fdd2dc1f66892135c5033d3271e72c3051d

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4bbe7f1b987a799cf30ed70f0b3e97c2b87b11f694f2432deb0785eda7204798
MD5 884d8f03a7dcb62042803a2a588205a4
BLAKE2b-256 a34010f44ab27c614c4f0bf4b7d2c2015cd91ae17007fbb6316580073a580777

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 262a3dcb4b4f131e3c0a2d23309478a4f9edcdd409805bbef47685d71a3bd99b
MD5 7dd8d44100f88a40ae666a0446fb07d3
BLAKE2b-256 58f24e42f6c9c5b18af3152cae38db4c21b532d21eadfca3090b8d35783026d3

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d10d1610c4bf4d1b7f755d9fc5dce09baa8ec55b93f986c54aeb743eb2aba19e
MD5 6c0d1f254d6aa8d74ec382fe123c6288
BLAKE2b-256 91181ccd14487b0a007ebf68c00c819ad6a38249cae7d06ec47ee24a0eb0b681

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91aa78b1c342e59848af7ca67703008ed43946743bd5efcdf619334280a6aa8f
MD5 7e044fa02d8a8d53528cd531a081f895
BLAKE2b-256 37398fc2c64fd4d812a41e71472b250f2b9e626ed4d3e35af8737ac747b0db0f

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc179daaa49f6eb3841ed9cbb868d2264c9c73db1a04e98b8c3c01b83e2c39e4
MD5 7dfa50f33b939888a7d977a93ca0f625
BLAKE2b-256 9ab3bf2d39a2beb35c0287e983f42cf707f030f2df29f688823238a6f94b90a7

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 827169454cfece358b5728244402ed17bb94a62231b434a347e4d386b7cc358f
MD5 56afa2565b99b375cc25128397544cbd
BLAKE2b-256 f023d4ebe6cd54d36ddba06a8f037fe01bba8791af91c3d96473716e12834d1d

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b384817e52d782541ca436007d7dfdcecd36bc3e90d95ce8db590b85278f0a0
MD5 6af57f59522b1f215ef5576462f476f4
BLAKE2b-256 5de59bd9fa3f74479180b2f5a77aba69e2bde6fc87d40533a1ae1cac0d2a51b7

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 85571259e65aed3b61c95e03934944bcc8ac2d56f77f6539751a490b9340d646
MD5 c3df28eacdbe58494f25c7055c95ca8a
BLAKE2b-256 e5caf75b4051c2b4d46cd4d2e543055eabdfde7b2697fcfbe544a1bbcd3a8216

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c75ed52a996ab1ad02650c67b8e5e343ddfac119cd09e949e1cd85edd9714620
MD5 b59149d3e802cba6bbc723ae1a55d694
BLAKE2b-256 030f59ea53fed8c1180f5779f49537f5269efeddd221e2b061d58456a6732e5a

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78b001136cd02df261df7c4488c740ca9cc96a55a2da7c586c69edfa421e5545
MD5 c2f6c5e6581054a378342bca44153f9d
BLAKE2b-256 1c76fc20fdfd1cdaca2a310b2ebeb5e8980027ffa4f03490c8acab85bb73c343

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5eacd907c5245a301347350a4e49af13db025fbf3221eeaaade5ba93492fe5ee
MD5 7dd6d49d036459a3bc58ea50f5a1d02a
BLAKE2b-256 fa62e66b6e85450c08b2707590ad47cd2ade05db56549d15ab987f2a6c86f74e

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3dca6120ea8067d30dc0be49bc4b6d712b25d4cbb2a923b01a04835e919749c6
MD5 c3195e6038c42a23af281dcdf6e5e1ce
BLAKE2b-256 e244d7c08610cf1d2543d2eef4d0109ea8e3862484e1725e5397c4e621fa6aa2

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 321a816a28ebc6bb2bfe475c97d44eb2664c3c9733114d1607359045eb228c0e
MD5 3e80cb6061cae4c10f144f099b286cc3
BLAKE2b-256 c6c548738e451930f110108a5fb16fd9ffd5f514057c6dc51fd25b1aac6c2f06

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f9d9c8a04b0898409fc13f60728207a4b5c69cd8e339b513d7e31bde4c4d403
MD5 53dd6a14ba5af278b42c653c0e87e051
BLAKE2b-256 fe628d319965d4424f5d8c1939c79138553d7f4bd2ce8497852b34aca53db6a9

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a6e82e4eb171f90e136074266576252ebbe551efd0e163556d0855ab6d4f80d
MD5 e0032911c2cd5d1cd87b9e0979df268f
BLAKE2b-256 0434f1f7bb92e11894c21224c8c972387760e3c318a5f0da6f3a5bcb52a1277c

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cb8e12fd9181a4399ffaa635f014d7b3cd97c9516b5f7eca583f847ef213600
MD5 9fdb4c22c9e21b3132891a2a93878622
BLAKE2b-256 f2df3335fc176f89184641e7277d17213ab043a505a08df9a5517428d47bbfcc

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1a76e3a55ac54e64311a7bc4dfaab8e33d48fea44f6a88a3a7ded75d9a5731b
MD5 87380216c400c05850c28829639731ed
BLAKE2b-256 661a0837b5c1ac3d676260cab937dbe0eca3c8609c97dc5e60c19b70d24312bb

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c703218f865047187d197c32a8512d7fbbccea5396e736e62f895efb4c1b989c
MD5 be9081e335d80abe70ea3a480cc0597d
BLAKE2b-256 5389eb10b919ed33aa117ece652013f5b66913d30059ac99a8d4450bfad51e61

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3f67e55165f2affb525d229e1f70f9f6e5f73ace593f6d043d321e938580687
MD5 e357a4306a03162f74ad8235a3de58e8
BLAKE2b-256 b04453b79dbbbdccce4c38c8406456f4f1a7efd79deb747c263c8e1864ba2b34

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de88fb3f1dea25cdcece7bea82a5d9c2a21e1363c60792b8540856836cbc6819
MD5 05cb3c137078ebec9ec1973e48834584
BLAKE2b-256 6d15d6e162c694cc09105a4f2aa96591109904fbee44121a4eb40da56d0c7a68

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1146e812459f30071085d62469852f90d5a4d12891f789b4d6a99e41046f36b6
MD5 9becda04d38413e8d2ac970f37583243
BLAKE2b-256 184aff82b011066a9c675b9de4891d99d727ffe42f78a2f101984c8b2318eff7

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a789b09bb96abea58030b20ec9f722fd43ffc9a9395b8509e04e78e0d201386
MD5 682b34e5c2837234552387356c4498c4
BLAKE2b-256 d1319c999ddaa701bb092f64e54739ac3554f5d98c328218157a8d62dd51f34a

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3f7390421ac2da21a598787dadc5d55d9a68bd2f2602cacfcda3579b613c0160
MD5 38f452750f6a0df0d2209980f3553d37
BLAKE2b-256 30bf2d7e5493b656145eac0f583990c6f682b6dd6da55b9be108e30b33614e49

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cc3b6dee09bbb21724d258de5066fe4eb6868e55213f3be08e7363cb740c884b
MD5 e6c51e9fe5d92de4411587eda09736c5
BLAKE2b-256 edf38fc1dceb66075e48f86d618b0a68ab474d3e13c4209b288f3f5f7977fe75

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a0b0c7cb70259c8476ab891781eb07a47b6c8e846f716dc3c1530622be20da6
MD5 3a3784c7843e0cebcdea411315e4fd38
BLAKE2b-256 dbd3eb6173e641670171452235d16c04a769a745061d5fa63db3b580e0939c87

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 644db485dece0e145f27ffe57d77522c4b9e83625ea8c4f8ed34f1e9dde996b6
MD5 278e7b82426e1bff089c9f823b361cd6
BLAKE2b-256 c70d2bd9e4b63cee23beea482ef0e07be2821a21032f5c37d3452e1c81cc46a0

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e8ec8000eebb0b0a22cbaaccee6a26e7c1345d143e2adb176cbb3e4379e203f
MD5 e922308ac827d5b2df0e57f5d843ea40
BLAKE2b-256 2570a9eaa7d365ab1b336e2c332bb789eb3607c6f9f52b0378e0b39aae40e8e0

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd2868c3268d836c898c53b9d07917d8fcc90d74ef28b982e7afa7257c4e1f49
MD5 6802d3f7cc8fa5b747e661ed0a84fb7e
BLAKE2b-256 823148d9b3c53f80a3471b7021fd04ff1e6c8ae493968eb87be31e8f9be4490f

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50bf60c0814e27d2cfb3f9da911ec3d513a3709233dfbae8bea00e5487f062a9
MD5 174479e4437ea7a48e4bd8785a9fb092
BLAKE2b-256 d516d18ca2eeb7b0485de52860c6b6157ac6fad830bf369a13485bdc0e53e3bf

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6e08a8d2ebdba1e8050ac1dc5f24ff21bc8e428aef2021b69d78e9c6ddd3080
MD5 367b4a1e35c07e564297624916ba653c
BLAKE2b-256 4329d0aabea50462761789307e5a9c1bd0c63f5ff9d4e7f79afc6cfe67de5137

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 698dcf17347d7a9c479c3ceba1e1d4eb7f8f91fcdff009af904eb6efe614bd29
MD5 934b06bb5df3590bab553cc53236bf9d
BLAKE2b-256 7801ca61cd993ccd883f25c53e08e9bcd4856646c054acabe94a1e8d29b7076e

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92e7a6dcd88cb174e9024ca6a2091e530ba076bbc259d3b871a6e7fade9796de
MD5 c67b6e22b2c285ec4b93b6f69b2a2ff4
BLAKE2b-256 95e7edafdc64da48151f29fc02c0eeb9ec3e4c777d70a82fffda2be363178823

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb826aa770aebef00365d404f9e6ffb2a75aff9dbabf7f62ca4edd1bc4ae8eca
MD5 04d56523583e83876fc5e84fe1bca1ec
BLAKE2b-256 2b017baad5aa0e92956f2bdec02d97365e5346d1562f8e8fd8043e39878faf92

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e1afd63dd904f30770bd1478599feef181620db190ef6ab7ae4acc6a8e99188d
MD5 d7c82263b67a596a56127f031618234f
BLAKE2b-256 2de0a85c8bbe1ab015ec91fe48a87679bc87d693b4c0791178797bd1b2975475

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 174271eb057117d0beb1bee1f96c34e038d934ac8bbf0a472e5b51c124113f61
MD5 8dd5c410e92af958d0f536540e653590
BLAKE2b-256 53a159d5cce183d2d7507417bcf2282993aef7a63029885032dd84b6776e5fa4

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 949adf653288d1c83be607debaabed7eb8ef6562edcd388826fd1cf4690cd9bf
MD5 021625efc96783328eec1c6fdbbeb7bc
BLAKE2b-256 1df919beb955ece9539b59c09c6c2e384d3bdab4a13de006ae25cbc4b7453baa

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f280c45e752b6ad010a67dfed7b76c7995f7228fc045d9f549179a7c51fcbdc3
MD5 26104fd9887ba1c17a28468ee10cd7a4
BLAKE2b-256 f41c0084a495b5856917cd3b996b16979b8f467e78d5a86c1fb07ff7859006f4

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8afac0348eceadf57741663d75ee2fe41e931f36f0bc861edb146a19d49b2c93
MD5 8eebd7761882702c35878fa353119c46
BLAKE2b-256 e007cf416a8521f6faf4bdbd87a1bf10d78acde197865120028af31eed22adb7

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b19e8d886dd9d39e9566315cb35cfba7c53077a64c46019dd51a70b797dde7e
MD5 6e489351058510c8a8e0e05b00889956
BLAKE2b-256 a53689d8891dbd014a78d25d0cd7a669638fb45f221dbf823b18e2d70371765c

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96cab49d093baad640cfbec9046ddec9c9290f6d74d09776a13aec90ddd51374
MD5 0ff1896823dce503a2eaecf9ce989182
BLAKE2b-256 d14163b1dad46e2be482ff988bd593878cd94955c33dbc70389088c973dbbf45

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90b43467b62c264229abfae2f3c58ce4c3187494e837ec8174136c40987537d4
MD5 8f4d12348b604b1900d8cf09030e974d
BLAKE2b-256 64eb536ade62afedd04b1cbd1543803bf5fa3db0870ea72ec3ad91182b51bfb3

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f01856780c0eada757a9ed41ab5c545379e696dc2117cb15718fc3e75711890c
MD5 4435d3c2b10900d59e413d9545bd6b4d
BLAKE2b-256 0cc7036c2d32302c83f627bc06c0ce1ca31d53eae0fbb3588a397974225e27ec

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4365f5e7928ad6b1267a4c6d5a8013bb0335826c6ab5ee3cdf18274a6b088814
MD5 27213bc47bc4bd2463c9c9357e9b0ce7
BLAKE2b-256 13b540ec072622326d35d8931a01e76a46fbf559aa0cd0dba0a2ba79be91c227

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b8e465bf639b328308d11d5241e5ff7b015edbf627c99e52f0f454ba868746c
MD5 0ccc00d4beacac7810f10372e83073b0
BLAKE2b-256 decdb4329b3cb1fcc2103388d8f03b7dca2fd5b94adb96e29ddd26af0f9b24a2

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3e87eb1c8fda48cdbd9562604d17692a219187046d7792f1f6e59dc5f3b375b
MD5 6631294297b390f05c96e6c7c7fa4456
BLAKE2b-256 df0737e9f1ca28c9bddfa1e7cedd5ead57409915b66216bed79860da9da3a669

See more details on using hashes here.

File details

Details for the file hdt_sampling-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for hdt_sampling-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eac5d8a7cc3f5772ec409c059818006084067ea4051fcdcb5afd54ea4c21f8e9
MD5 c83e3e7ce2cb6152c86d09032cfb22dc
BLAKE2b-256 a6afc34feb0869b51c0c2b4bf0428c36e9c607c45e3d2df22fb2a047050146ca

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