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/example.ipynb 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.3.tar.gz (134.3 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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (447.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

hdt_sampling-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (472.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

hdt_sampling-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (542.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (455.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (278.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (292.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

hdt_sampling-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (447.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

hdt_sampling-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (472.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

hdt_sampling-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (542.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (455.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (335.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (279.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (292.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

hdt_sampling-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (448.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

hdt_sampling-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl (472.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

hdt_sampling-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (542.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (456.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

hdt_sampling-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

hdt_sampling-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (337.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (279.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl (447.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

hdt_sampling-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl (471.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

hdt_sampling-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl (541.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl (455.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

hdt_sampling-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

hdt_sampling-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (278.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.3-cp313-cp313-win_amd64.whl (137.1 kB view details)

Uploaded CPython 3.13Windows x86-64

hdt_sampling-0.1.3-cp313-cp313-win32.whl (129.1 kB view details)

Uploaded CPython 3.13Windows x86

hdt_sampling-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (446.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.3-cp313-cp313-musllinux_1_2_i686.whl (470.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

hdt_sampling-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl (540.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (455.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (335.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (290.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

hdt_sampling-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (238.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hdt_sampling-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (245.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

hdt_sampling-0.1.3-cp312-cp312-win_amd64.whl (137.4 kB view details)

Uploaded CPython 3.12Windows x86-64

hdt_sampling-0.1.3-cp312-cp312-win32.whl (129.2 kB view details)

Uploaded CPython 3.12Windows x86

hdt_sampling-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (446.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.3-cp312-cp312-musllinux_1_2_i686.whl (470.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

hdt_sampling-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (540.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (454.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (335.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (290.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

hdt_sampling-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (238.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hdt_sampling-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (245.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

hdt_sampling-0.1.3-cp311-cp311-win_amd64.whl (137.1 kB view details)

Uploaded CPython 3.11Windows x86-64

hdt_sampling-0.1.3-cp311-cp311-win32.whl (129.4 kB view details)

Uploaded CPython 3.11Windows x86

hdt_sampling-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (447.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.3-cp311-cp311-musllinux_1_2_i686.whl (472.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

hdt_sampling-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (542.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (455.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (279.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (292.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

hdt_sampling-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (241.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hdt_sampling-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (248.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

hdt_sampling-0.1.3-cp310-cp310-win_amd64.whl (137.1 kB view details)

Uploaded CPython 3.10Windows x86-64

hdt_sampling-0.1.3-cp310-cp310-win32.whl (129.8 kB view details)

Uploaded CPython 3.10Windows x86

hdt_sampling-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (447.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.3-cp310-cp310-musllinux_1_2_i686.whl (472.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

hdt_sampling-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl (542.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (455.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (279.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (293.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

hdt_sampling-0.1.3-cp39-cp39-win_amd64.whl (137.8 kB view details)

Uploaded CPython 3.9Windows x86-64

hdt_sampling-0.1.3-cp39-cp39-win32.whl (130.2 kB view details)

Uploaded CPython 3.9Windows x86

hdt_sampling-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (448.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.3-cp39-cp39-musllinux_1_2_i686.whl (473.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

hdt_sampling-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl (542.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (457.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (337.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (279.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (294.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

hdt_sampling-0.1.3-cp38-cp38-win_amd64.whl (138.0 kB view details)

Uploaded CPython 3.8Windows x86-64

hdt_sampling-0.1.3-cp38-cp38-win32.whl (130.0 kB view details)

Uploaded CPython 3.8Windows x86

hdt_sampling-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl (448.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

hdt_sampling-0.1.3-cp38-cp38-musllinux_1_2_i686.whl (473.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

hdt_sampling-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl (543.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl (456.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hdt_sampling-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hdt_sampling-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hdt_sampling-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (337.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (280.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hdt_sampling-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (294.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for hdt_sampling-0.1.3.tar.gz
Algorithm Hash digest
SHA256 9c4f7a5346e07eead47c92e09205662978dcec10b89247e4d9a8809a0398ac60
MD5 7366cd52ec0a9a4501a3d639f16aed25
BLAKE2b-256 39ef912891873654be6feaaa10ab593b83bf229cbe32b61d8652729e9a5e7130

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff18ccfb8c48dced896e32a19c566bf1f15a09fd0a1d2055b17e1e33f7832802
MD5 290329fee0acb27fa1ffaaf2a8da2883
BLAKE2b-256 cfa20b03e1d78dec8741bfd32cc97366368fa373ad59e6421f13989e62882613

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 acd85d5cff2f00bd778c9870b65e73ed61d1f624f0aff0141a0fc7e8c0430275
MD5 4a74c5741c1eeed26714dce968fb94fa
BLAKE2b-256 a47972d15f0dc34a435a5ed3765edb237a0047aaeefdd19aa3e879b45d417159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3495f165ef7c7b1c2520c2668ae148ec011bab2c02c5573fbd07ad0f1eaae697
MD5 c8b4763357d837a1f781249cfb494ece
BLAKE2b-256 68f218e569b23cd96e7ab2796961248d9c2cfbbf0b2442a3fe95f9da547cd11c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bc2df1509ecfb7c89e9bf5740c4a14083d3c324355db2f988a7f9f6e84e0b7b
MD5 f6957f18e7cde4e1543f2c9d17e62f6f
BLAKE2b-256 a629825ded71676690fb7466d3429cdf08478b1d43eba06df125e7e039c866e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e22862ad04806a114519c350d0c4b4ea01737581225d6493f72538cb8dbf0dc4
MD5 2cad42ff600bf21852681979cf324fc2
BLAKE2b-256 5796afb176ac67b299c23e56341baf54e094903e894f053ce255627573954c7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 76811d02cf2116699094c1b4c0d2cd045376cb049cabef1035630c06091af905
MD5 6fe1f95f51e76ad76a81f471e7d4c513
BLAKE2b-256 08fadb0fe9efde2173d259ddd179021003a982c67d1b01fc1afe96e877c70d21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 739cb87d7207312a1d8f6902ca4b527b549a183ed4b17adf7f302f5e04c28eaa
MD5 83f34c6666644fcdb7f9407e92231e1e
BLAKE2b-256 91b882e83024610fcf27c18fd20d34c4c47c0b734e60c8bdef74600621c15ec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 079ecb5829fabcf86d57aa6132e8999330a230d1412fd18797903e0c538a3b4d
MD5 0093cd5a163e26a58722d66a4250f17e
BLAKE2b-256 d41b3da7eb4233621de8cbb04ca714599b6c8e11760c30500e1d4979ffa16bb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f7b4ebd216c6854b2f147fd6248651bce867d263d8eb52c0ee14642cca61e2a
MD5 ab2619314e48dbbf1420eabc6bc3dc8f
BLAKE2b-256 bac0435ffc35905158e27d6b57418631c6c57206c978a76c8d918fb86013f072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a91af3d552945870b587c2ba5af8f1f4e6760526bbe5631073298ab32df3688
MD5 38429e9fa33c8c5dbca01398b87b29c5
BLAKE2b-256 e44d4dc9d6272688da4143818c658936d2df0b591161089d864240d73b6d1b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92fe8e8337d6d0322cdcacddd847c0d52bfd0a6aabbb9f71558367e579260894
MD5 103239c36c430cc4fdc0959d74c17906
BLAKE2b-256 e2843c25f93d2b33fa4c3f0ebfd060efe286b8e16d9e75ae10453262b3badb8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a4af0f3857559228dc4d0e963e12e07561a70bd34df1403b5a113c4a886fa48
MD5 6f0865b8a4de9c4c3729fff1a4b1df6f
BLAKE2b-256 3fea728358fa2ebd418c2966434eaaf424fa3d0456fa625c6c7f5d75bdf0be31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77ba7af734e5eac78a8fe92c35742286b8641a225f6a2a188042db3397e2d580
MD5 1f09093ecb8a0dab47c289a056c38d1c
BLAKE2b-256 2f5f61d3ce495f7e836343a2a7ce752945ba77f87f0a5a3a10c1ba4d684c9ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e25f9a9315ae8392c7d9e3178993a3c4ef41ae606c6d180203a50c980de435d4
MD5 b8635b779a6ffec2ff4a73973188fe52
BLAKE2b-256 7cd8cc971fded73fbc55f175ff204bf3600414d3b0fae6a72a63b55546aab1f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba61b0530e211dd55eb589dd5c12875ce85e45d074484c0c80389656920b31be
MD5 8dd58909fc96b865412850823081a233
BLAKE2b-256 4562dbef64ba9eae898b190895bc7cea35c8cf64279f7dd134888e951c7f9ef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c9e9a670db029103009566081572cbd543b06fb4cd3d65c82b87b075e7ebf39
MD5 bd253782b932cc2c18c0135116ece117
BLAKE2b-256 ab1fe0d8849d8634fc04626cc12e93f8984e6a0e3f52594116b0aa306a139de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 532d735d77ca2bc8dfb6a6f2ed253ef9ca6fd50635c7d18e880655be6bd004f6
MD5 f130983aef60799a099b86b5df23e6c8
BLAKE2b-256 e5f87c9f5def515265236ce73311fd257f9b75e8e0172d085fecbcd661185b3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bca7af8815e2d154493f87532e4084f1403b170b491fe37847159afc2fd593a
MD5 4870d8aa8f061447f963d5e2fa4dfce7
BLAKE2b-256 7366b19ccbe294597dfc4bfc34247879768fda932b56c735bf502661b7257295

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f49ad3a467f803165c11db89856436500f6dd9880a5d8156e35db9fe18d3b80
MD5 5b35c4f03a804779b062eb54fc02b93f
BLAKE2b-256 eefef3361b412f93bfb4075ed1d8cb4d1563257178acbef1d9996b69b307c594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc18e90c82bce542060a0ffbb056e388744c474fa20dcde302fd85ee3fa4bd5d
MD5 049ac636f7bc474bb77ee4a7c6277c12
BLAKE2b-256 ac15bf5bde8de37cbf5970f142c2b90b7e018c4f243e6c96f04529526fc4dd24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5f562e86c5dd0e96c0ef341d70ef8293ab61f65fbcfd551bb5559d6cda79d78
MD5 e5ec6b9d593c759ef464727605a292bd
BLAKE2b-256 a715abdf0445c587de255ccbc784abb400ef3c066579145443b5ca23f637ac72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c334d6bd2f547d8157693128fe995c66f72f3d4fd544c0f18bc3e949b958043
MD5 4f60f8e000ba4596a10f9cceafee47c7
BLAKE2b-256 6e76131d400247f6dbd6522805a555c716a8585b03e0dd26658d2a37197929c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a1d76d64fc5525ba29b192e433d9eb5af93120bae68efa441e4dde7c16794023
MD5 ad20cdd64b319e38413563ecae53cdc4
BLAKE2b-256 13e7c17ec3d812a3752329daad352f59814224184ec64ddbc31c39ed44bfdc46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd5c8a155f198e1398bcb45824cf9d860652da629ef6c3b2e580c119e345724b
MD5 29175a3c9c40b7965d4ac276b9467eb5
BLAKE2b-256 601f20c075db6ee95ac5b726bc4238d848232af091029408c42bf4e1a586c706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a654e99ae846552d88fd8e9dec813c66f0e04bbeda824739658661cc3e3f3fd0
MD5 352ebd15179297b1c2e1c361553fbe8b
BLAKE2b-256 6c035409e1981d40f37c9d42e75de04736b6f20131e8d8a3fd95d865b14564a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e66b855d54e2989f11cc5e8e14f02902d19265812eb9bb27b3944a0fee1370de
MD5 992f593f29b5c12e33209f5c34ab3f01
BLAKE2b-256 e773359f2a81e74091e4bc492725741b1cd1d1371876dfe22c288fda2449e4ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9de026a6d16d31ebad4b472e737e5a5c51c77fd7bfdf2b646ed3cc71a59861cb
MD5 d89396fb3526d60b8090af00e3cc54f4
BLAKE2b-256 a7d1ed59a4754a014cbb5a63ed6efa6e5b23bcf75c61ca1a5a10a8611bf50861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94f816c304722fe9c920c499fc2d70caada1fb3913bb2b6ea96a637ece5cbc89
MD5 61a7849b2b53d3c1a7b15d36ea620a62
BLAKE2b-256 1629569db1ab58360a5fdae4f987088c6ce7414d4ec6e3e8f675647cc2c2fcc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb53c73b1878362057d02bceb8ab4a2d31ea4ae9bd941ab9a6eb03c87e61f725
MD5 0f77f3c53d14c6a996c2c4fab6e23459
BLAKE2b-256 433289af03160d4f0af0839278bae0ee2c7e1e7cc191d25c643547912e0a4be3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bce869a7c915944152047c54c994d3fd5c9ab610f878f2c9e96182b6f1e0484a
MD5 55e7d421fe2b35100a7d544c1b23699e
BLAKE2b-256 24379f6b62d25cc34fef53456541c1e45781f208c4d5cc04d6040b8cb0a7d2d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dbd090e96037891d5b500363c0aa8fabbdea4b078d068d539d5b780abc9b2e1c
MD5 3a89497c2efb926f9a6302fa1ade507e
BLAKE2b-256 2d4f169202264f4284ff5c8b1d7f2bc2303d6e00c7f6bea7fe9305aff4270601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46bdbb1794ba0017bb4fdddc4ddeb506bb1264a3731508b86e0792255c13aec6
MD5 a36ad9f86b59a6d4064c41b3fce59cfa
BLAKE2b-256 9360f443f3e554c59613a46d4cc8555b608623988c58c894bbf7ff0e5f54b53a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfbaba20a6ddcb9e55a201cf86c3573b6339a701c4b768c5b4c530414fadf6ef
MD5 2020a124e87e904a27fb2ef070c08a0a
BLAKE2b-256 82a7290478de8b622d3814cf9b6be7d2220fc6fdddedd931f6eb4582f593401a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f8d98ca25bd5499a48592984936a64840cc729c6a74ced082d1a9a6954622c6a
MD5 c7a4ce343f7b2dbc64fb30f4f3cf9179
BLAKE2b-256 6b1ee5c9ac701add20b6e074a6a6566533f5ce0512890c562617de57a3e96bc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69415f836f5c367d11596b54e6971cb12beb55ca2dceceabe8aad4a859797d9d
MD5 29ba0e61895889145d8c549de82b93f9
BLAKE2b-256 69943c18f9e546dc79c1d941e39ed19cc5e258217260242d612fbda5d85f338c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4660912c10da19b5f792e65ac738ae6cf2d49e715f0bbe29ac99c2bd645ba338
MD5 22f796f687be527f9b74f7fc63931cc5
BLAKE2b-256 4104f32822fc203b32aeed0c13b41805b7361a6b5b70a47538f77ba5f3d7d5b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 569f817ef098dee5c18e58f6086b4c132d38927169a31862223435ef587c7c41
MD5 8923616dea8f750d209a1fe306e07aec
BLAKE2b-256 071a0048cd8de41773a8d199323e6269527d29ba9784fee71e83799ab92b20eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0ffa4666b14c3362d8012a99c10cf19496e6e58d83aeb14aa584eb786c12eceb
MD5 6ab529a75b5a41eb256187e5b8152cb8
BLAKE2b-256 8ac2864fa7ca0a981fb531794597be45dfe40638397f555bb7c0e4f859318636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c41c690c5a1cb72b22eac965118e30966bf3206f8f28a4e6bbc944c3b6620c40
MD5 507522ab6362711cbaf741e60a886211
BLAKE2b-256 33ec05432e47eea15e85c521be47fff5766cbf863df5c2948c824f5042303512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c119d531e0d9f426cc7b853627dbe48d85dddc4f08cb5db79f8112f59ee98c53
MD5 bd9a13281b5ce542ce01ee65e25e5d1a
BLAKE2b-256 9787bd54b63a815bcbf7f6c3f322e28f535d18c3172352852cf88fc70053e12f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0e3a9eb8d97d3d1eb5f6c20583d3c6d3e42ffa5135ff428aa6727ddf15fdac6
MD5 1cdcfe98d0d1dcf7251a8a085f9cf508
BLAKE2b-256 651c7fae045c12b5c8a573e8dd399d0d5410e56ae330950c90fb6a334eb7fc40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec9f0ce36347f707b0e2f56a40603860e36c2945e59b59c165ed28c4134afa55
MD5 4d2b9ef254aa3ce4a4460a3d76887632
BLAKE2b-256 59d77aa538a4da7c0a1b8911e76505a90b4579ff331f32c515d9cae0cf450fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2972235ada95d3f986eb5c4660cebab496dd8472f9ab0a800958ad8259657f8e
MD5 6fe5b163060a9be3951dcd9a29a36d77
BLAKE2b-256 1d5abc02c40c82be4530d6e4fe8d7851f589881045f433696b2ba163e0f2f402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6effef6771d2f346d0aaa3fb1fd43b60496b26e89f4570d7ee0dea45f1753b83
MD5 94f8e4f0138db94c5e971ac6f7fcb121
BLAKE2b-256 1885dd30044bffe7dc895bb5f26c56df8f0ea07eccd556c9cd6a013a7906c5a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f6e39f2f3a7ac7c984cc9d46f934af85f968f1adfc8654b2fa2102e5e6db284
MD5 d31bb0aaecae839681495669b56d21f2
BLAKE2b-256 376e82052360f2862bd9102dce7d24666f4db245a52d9eff0f9753f8891e5916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80b63f165095a3235a9dbbfbb68d7614ca40341132cd4801da09c16066f48daf
MD5 1d0b96cfbc7f420e8a70c3fe05e458b9
BLAKE2b-256 29488b40e54093a2fe2d0a3c5af89fd41c713c397318a2cdc19768a5823c2975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f707b5085891d15a9ca3eefe96c77a09c73d7477bd52bc9df2bbf3775cbf4494
MD5 3299c1c79cc2cc0d0553952fc0a975d7
BLAKE2b-256 c037bb632b8cadf0182227055374f4de8c3d16a14c0511e3070912ef9218f610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 189d98337fc254ffb60d9b840fae94280c9093c73d266063a6da8bce7a7f2dad
MD5 f2a72b824771a37737d0d1310fcd97d5
BLAKE2b-256 9e98b975c614eb703de224fdebcccdac2802ebecf678651cd4ab9c2b56600189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f9cbc1834d5f4863c0c9307d58d88c1f80d943001fe3de0878b80b57094b5ca
MD5 eb0dd3a44e39ee72777f063f5389fa74
BLAKE2b-256 1130a988c6d0c686a7175765ed65163bd40289dae0e4d2072ba2c2233c216c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b06ee8c02ab0d333f001be555edcb4611016d7c6e9a3fad2ca22f5c477b4775d
MD5 8f687ed732c72711c3766d98c7e013e6
BLAKE2b-256 3b7ec1217ea0ad7ac51503934d83f7eb17ef8a31af5a1fa3503afdb14357f3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 37f141de26d6d78cc2959edc507fe7ea7f69f0dfa5eae88ecfc38399cb95d72d
MD5 743a3304f4a0bf7fa18fab0a9a8174f9
BLAKE2b-256 99a588e9870792511743498326c92ffc3fc0257a68bc79d9eb9368e86a282219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e7c05b30b21b09ca56a78ac58b08202d0c91371e36809f1c41a2783096ce3582
MD5 61c8400de2043c3833559564fbb7d004
BLAKE2b-256 d984d222234080a6b2d7fc81e26aa7e81caf52e65764a5ea69e5576d93b1f527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bbb27f52353ff010b49509ede6ed54cfb52778c8db3cb96d9c01774ad604168
MD5 e2f94ff9eed2b791d701dc0f51998f71
BLAKE2b-256 abced363fb673c57938c4d739651e54a6ac759b855442141f394139fb1b04f1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90c19a9072424f844162e3fbd6332cc4dff3b0db78aa2cecc298ffa05403d95e
MD5 8fa1dec89e3802334e0018a190441b54
BLAKE2b-256 0a32062ce786ca4fa61e37063e998b4f83a67634bd4bb6d4462365b85bd2d0ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2528beae5cce8756e7559df9d9916cb047a4d920780f8c935709322f34b6f9ff
MD5 0e4993d4d2fced89ac75c8b7c4d317ae
BLAKE2b-256 d57633e54f9f9328265d9aeb7611610668b404cc100010855f7e16b3f6b12fe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 720caf0a00b78c49fe58f7a9faf2941e534e71e5eb1142584e66e0cc5048103a
MD5 bf301607f8068719801d0e19735f534d
BLAKE2b-256 70f72d5d599532bb89344d3c7b60163f7cfce577053f674693c6fe34235e64bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21c0449563fc6d2aabdc3bb594ff6eb049bd9ac3d4041dbf6ac4534a90c4183d
MD5 ec96017021dbbb3206dce5d3238a39be
BLAKE2b-256 04f05c5e2f737d0e6dc920683b0eb85ff05c0f2ff46e0ff7091cbcc1bf875f8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69ec4454dfa9061b68242b025feb3f08cb975a60ed676125431aca7a579f6829
MD5 408353da3d5f6ea38603fb2b11bb5945
BLAKE2b-256 e710ce46f875162113f87a08b648658d313ab2f83e8c7f8f9e7e33e1ee82543e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b276a51f2fa68df2b1fa6820b49080f684373c5d82ca2cb171135ebcbe3f0cfb
MD5 762556542e21260c369adf7c8985e879
BLAKE2b-256 1912069eb9573e6f82b3898f3a0f35de26f4d8f5c68ddd1e46cfd110fc31972e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1690953b5e00e4a4c5369433f3d5ed5d3c152d7b2e9967bc1a6de3c52207ec9a
MD5 70d7e3d6375149d3b09360beda824d7c
BLAKE2b-256 072581337d6c656dbb4f958b5557e2a0c0ecaba8e4de1c723b1f7d505d5f458b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aea819ee732d5a3c4a77ac75aa6275739af76a01e5f604b2d8fc09c2460bfc1c
MD5 fa1be3a3494328e7e10706ae836a188c
BLAKE2b-256 e463f5862f3430a2644c3022f54a9a3bc015f7b4f4e8aab8e78b2ec54d268f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 49830c063872ed62a459369345d361bbd2294ce0e1b9dbea9a1ad45a11fe9a1a
MD5 cd27adb6c3336a6810a45f41288d1b0b
BLAKE2b-256 3ebed14b873769fac6edae48d35b68205ab5de32f91c72e908a105cec354a851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f53f3aa5c2e3cd378dd582c98c7c600d0e712e08ad8853200e813143635b6903
MD5 7be243b755a1c1f87cd9c426ac0866cd
BLAKE2b-256 12788504332df93a2cfb468cdc63fdc6e6cf06670f7c09a6ee2e937cc56a258a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38ca699f476984132ed354c356a00cc46353a25409557eba8d41945be3075eb1
MD5 79b524d7f2b62b1b1c7fdddc1305b81e
BLAKE2b-256 248fa0f88eacfdaf6e8f9417f3ca941f604daa774779f53f5d62d36120a123fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 56feae88e11e80dfbf89a4850d0c92c703190d794224a5a7d48c143992bb5e8c
MD5 cf66091dccb1ccfb849f0d3e047fe137
BLAKE2b-256 6ec36b6fe8e74ceea338a686d395b2c3d26d7facf8e3f1b88e7f3890bad12b6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ae9515d6bf038575d4be463aa0548b38af510134fdf2af1642baaf63708e9e85
MD5 c644d06a7ffe4e64f9e6bfac0588a938
BLAKE2b-256 d64d77d5c8bc626bbe30490a6abdea9f548bc6178360b509e00b079eb5301ee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7a56b202d1e7cfb78c674099e5df37b6522c0df68d2d3aea703902b07e1c2a9
MD5 9edf24513724f4c572d1cefd9e282702
BLAKE2b-256 56023e86a8878ab6b3190f57830c5866075ce2b96f09ae8c1173494800376a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8981513e4b214d0ec555b631159a60963e6bbd4db206f2f897d7bde0dff01a3
MD5 57efa4207fbc9dbb4a56ef0a90f5e9d0
BLAKE2b-256 f9bf3ae31fb1937d69f2a0fbdd5bd4e70d16e3815ef7a799fc11006b9b40a674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 596a72ce502adcb322262c08812b061f8dcf7103d90f8be90152c7f4bc9755ad
MD5 662f891fe4e1c6701c654bb7e2c8a096
BLAKE2b-256 8ae355f3f5fe4b386a2c49fc90b1ff95f81da8f90ffedb3a64460d524ef7271d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9963e00b8f503dd63878f54ce6b6ca6d2a7c3d2d01ad992877c1e1ccca76afa0
MD5 7dde8241fa3c28e3bf741c0fc4d8d2a9
BLAKE2b-256 51b5074a0555a11458a896e662c23e135857c4df6114fe0fe4277a8a86073d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 763d5533ec743a3b4f58dd1fc1a600a20eaf87315fae13139eb4b0306d190002
MD5 968c6a0c3707fe8e0b844d2556019d12
BLAKE2b-256 9520df80acb275fc1293402a511332a56e774a9178fee67a0815b5299363ec6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a12384384c658cf3e5f049c74cb5952c80ecc0f7aa1205fa6d99b225f21b392b
MD5 1753404b84d6575b7e594d0b1a6df6c7
BLAKE2b-256 6dbe84b36c626074720ef5eaf93d8a22be6467a0a958724c1b56a2352a06e919

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5145bd662a516c3170d271406f8aec88e5fe429fb2a2d83560ef9b859fed25ef
MD5 980107fb5e85067aed69a827fcfe2ffa
BLAKE2b-256 f99c635f73acd6d600323dc65ca47838c0080884b7b5ddcd83a1cc4ffdf7ac53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d44223939d4de1b97f8d55777aeb46a0bd4dd4469da0dec8b7675417d08e315
MD5 20f91f398c763cde0fe72dc1112a61e8
BLAKE2b-256 02aed295e10cc4b5afc367403544f9b29816d243dee7121cda8a71cda263627b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b67dd8e52c4587ba03a336129fc9629398a4027fe67f8131d1e66a11b2e6e11d
MD5 f95b04ef4913631c0833fb8bd9b96e0f
BLAKE2b-256 dbe27223e129cfd010e4d1200d4684edd9acc1eb614959c1333a99f758c616a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f9452fdbacc8a26145c306871c21c62b8a2c58165415d247673d82a238a51447
MD5 75d9516809694cfe965f3a7c5d52b991
BLAKE2b-256 c32b32b84eb16c07959bf48805204427ed177f9550ef29287ea971bf337361e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f30ff340c7835a86cd124d135ecaa799e6a4ba284b585d66bf613339e7e8f37
MD5 3dea3d007604e7f0fb668cdb4fbc1d7d
BLAKE2b-256 b8c5ba8f85c76b2f47994e2bf8339592b2825d53715c60804144e52734a16ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 175684b351d64d290f42e1e641fbf403f38f3dd851a7a9d7a725b80ed405c14e
MD5 ed00d5d2667fbebbde853bf53fc753af
BLAKE2b-256 b61dc21022634a30ef30c17533f31ea916c9c43980a7614a5126f7f31cbe28f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f03596b292501922e4316006a13eb202a65ea0bc9a9b277e88c73f116ae5cf6c
MD5 c4814c5d070296376d9a48924a8ef49d
BLAKE2b-256 3135562ffacdb0c4085f6322ea7a3d8f9beb33c4149df9e8902de4d7941e6f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ab7c85a762fbc3c02bd67d87552b7b4f2906913ee62a91d84e436fe8347ce984
MD5 61db0dfa7c792ddd75eedf1b4b61de23
BLAKE2b-256 3209dc4580eb03c0409bf68658ebdae8f11c5c23ae7587af05cad623e8c9b143

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59739c3a058cc4f2e253b3a07868fa973f4edba6b8b1b02517faf512c54553b2
MD5 8501ec0da65f3cf2bdbfacce372fe150
BLAKE2b-256 9e17dca2b66e6449089787936e9a05b0b03fd2b115c7e1b6bae76497eb671790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12096545eca08848912592d7757526f04aca1bdb5bd3825bc52effa1e16247c1
MD5 4694cb15cb6d8051c1402d9478979e2e
BLAKE2b-256 3f68d4548d19d05cb7cdf61dae7341fc7047452fdb84e7d625c96be9e1a3cdff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6496eb59a77fe7267130c930ad66c12ce2038a22eb8eae4746ecdbac71774fbc
MD5 cc15ab9cc1a394b8d059c578d2587027
BLAKE2b-256 bee09b7d612d64143e0c706b8c2e0b69adcbbe8c0a0a4936d7446722088be738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63a7f7874e99d599a69fb894243d983ebc6c7663b5a76b78ee79176dff301bad
MD5 d19867a9a15bb096d4175a877f13de2c
BLAKE2b-256 f67d09633e70e5309338c3dfb129b8a8bda7583e913410c0c23b0f698cab4d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aebdc9f3e1ac5337f6afb6c02c5b51ff6c0cb868d8826f44316adb073903fe8e
MD5 d7a593fb8f867284fcb96abafc9d34a9
BLAKE2b-256 f25eaf9a78d9f29318e26d4ef62d4ce2421c70b7aedb05bb5b33c26b4dd8ab88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 454fa6327372fc9a4f98e5e3aa6b60135bcda0cdecbd5d4b6e5b9fbc00f84c54
MD5 2bb74c60f9041cdf32aaac1d5c4894d9
BLAKE2b-256 25c96e36ac405115cc88ff4268c9a5467fd1d5d394b5e2111176b015b7bae8fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bd834d18aec1ea72fcd18f0bac374273398139a97915256372a4e7f63d637ab
MD5 d96d3b29d3ad99eff64438e21d1dc998
BLAKE2b-256 3eafb29dc2b3c91630f4cfac35214b0870b73905df796d00fbeacc274afef1c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f673de143be9de9a2aae4b29ac8582debd9332fdef1e9f02234a2c0ac5889cc
MD5 b4c37f7ef33125d2139f3a881024137d
BLAKE2b-256 00fbe844255dc4e017e412f50f30f82fadee79c5842105ef3aefebe29e921bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff8445a0b7158b9f9130eb8432e0dd8511b3415fbe3b93b1f99d2d0130383a12
MD5 d34eac59b9855bd7effb1dbb588b4f44
BLAKE2b-256 1eacff1efa3623f8254b4ba58ac467bfa9343aa364456ea2cbdf42050b3a7f59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 85688d9a6cddf5fd88c73286fa6b6f20e9462e686077d095c1b20de58e74b819
MD5 c1da9839cc73457bbf9df99fa05cb5bd
BLAKE2b-256 e89ac495200aab7a20871e32f6d32b4a5546c982174adc199dfb5e1292ac8b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 082d15bea91167bebf02f7ca7816e428e49b4a7f46965f96358d471761cd6058
MD5 77c355250fbd6944b27890b7a4d9e4a5
BLAKE2b-256 9e93618d3d7233b4a30a7b83121fd10fb44ab23afde1e9f95ddea454ba0c75fd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 60825b2defff036854c1d0ce91759d8fb1a3579943aa8bf9f4a90306f737b4b2
MD5 b70ba26514a08f6f1704e81cb466dcd8
BLAKE2b-256 2148a3a879775e0200fdccfef2018da1ff78beaf1fb9586b6746625f5b4e1d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb62b27e21020e6c461142263d049ffecf3daf441b29558eaad8cdddfb167674
MD5 3713140ad92f8ce7b8e3b350cf7e3a66
BLAKE2b-256 d1f5518bee7775c0b659ac3ea25c65cafff32a414d67bce5fb5d8ff4145e6153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 802dcf1a9eb27f563b406e964f16c4bd1af9a7e4e71edc955ff2e89dc6c7d196
MD5 07cfd9a7801f903a0be180b749c866a6
BLAKE2b-256 44c5a511a0f2642bfd0a39680c006afc97e82d6c77bf665571312e48d7879e7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 486c13dda1a779b05ac012a774dc6bbb3fbfa6675201a9170f4ab6d64d6c723e
MD5 9208eed5c5220263efe37c4a14814165
BLAKE2b-256 a0bcc66a8fb84186b27ee134515c33e26ed9770dc6f68a927d50f2aec070df5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 267f9c1c1a076bda225f093486edb94d3a6220a5c1348aaccdeabd9f74594702
MD5 4d4f524f9a8c68151102bb70f7144ad3
BLAKE2b-256 a4d34d6aa803e4fc0df38451ba6416f4a08dd8382a488c685b0d141bfeea4a1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f01bea1ff315045a9f166e7a472ac58316df338fb28ffca79b45d4ba11654950
MD5 81665eacce1c6eb6e4ed9c0faa8670ba
BLAKE2b-256 90e406d9b7b9e73d05c35b10db4790d4dcd4ec1493726c826d71aada08bad48a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c730c7cda71a3386088ef4de268ab25aa3281873d2385977d37cf6f6b906d8b4
MD5 ec62b34a46db3f3375eb76fb377e755a
BLAKE2b-256 8fad6dc462e317072861f23751e24bb444e08c6ce61874698a554720b078fbfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 809e24918854a396601971a300cbcfbc27c50be0eb4f2bea497bb3d36394a34e
MD5 c677566f780b822112de57e4f93c7c04
BLAKE2b-256 ade8fce7e7bba4c77ff2c7eab441521ad2ad16f96312420ad72d084206450977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d7bb5a39948f30d2f1b5e4327f4744b5aa3632c702d5055a0c2e5a2439e84ad
MD5 ff601fd9d9be7252e0da8ce1d79260ec
BLAKE2b-256 5b5dbb0dc223dac77498ab27b7ffeafdf5d6e1eaad0685305981eaa094795a48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c71b52ce858532195dee5b7fe78d28e90511113c02d08a40edc63846877f90a
MD5 575718b3b17629333eeab741f188ce6c
BLAKE2b-256 553107d331a4060e09621e82366f4d9f2dd83f41d4e9c814df472824fd3eb3a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d15fdbf6180961cf21d6fdfcb46b5df4c6e0705347e1dfe3d54130a43e2d33d8
MD5 7b44c5d5ec3d6b8bd0af0f04c65d984d
BLAKE2b-256 f2b6b9003d8da8346ea4d16bd568ee5738d480dbba674683e20e921751b23dfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ee37569c872b056ceefd66d8c5fd01a71eea42ca90e4f2f4340804d17aac860d
MD5 d0eba631eaf4ec0abb10049041435355
BLAKE2b-256 7d68ffe3c838d06d0291c2e85f3bfc50aeacd546e850939938652300e094b7aa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9cead5595873e98af07c2a3c7cb06dec389963a15889c53701dfa3d64ca3365e
MD5 c9340b8bae857fd716118b615b5fbf07
BLAKE2b-256 fe06ccdc7a354bf04986e4d32b8d4d97e8883b850c47fa6aa685611ee16d37b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7adfaf9a005ce8b0cac4940a6d43565d0b1f6600da999cb5ed3f46cd54f97264
MD5 8e4677a5affccbb0fee9471a33fc21ca
BLAKE2b-256 8ce885c13d1aa9bc041eae483199ae5b43b5037a4ca16646a2c8d5e2e88f0db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ae4c608d9059d10704316156421f61cc2c01c0c6d9be77e5b9dc8c8f1c051fd
MD5 b963e19d064f44c75b9954d3bc8f6e49
BLAKE2b-256 cb995c94123b5de63dc3ff5fd857d34b33c4bbe1e75306191e04135d12551f57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e0f435407e14529e53018c100a5c5baaf2f8bd5218a94be262c8bfbc33d06574
MD5 2f744ba7ad1c408305b2813b7749f604
BLAKE2b-256 16a831cc9221aa613ff3b22e64b7f8f2ff5b79c1e52a37244bf4aea784759d42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e65b46d705f367fb8f90bede0d6b120b8967deab573b224fc72aca8c55898dbd
MD5 888ea8fe25e85b22aa153783bf79710b
BLAKE2b-256 edb38f351fd4346a71f380dd91c26878e1e541dc62d4f7c42b2c36d587cf531d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44a34a7e618f65bcbe4a32fbc35506282e0ed20a61493975d67deaf9841843e9
MD5 380aa10c4c0ddffbeda650e9a8486402
BLAKE2b-256 883e4335eebde128fc369b72fca650241f881d21103aa258614ab5f05d788449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 283c518843d0a3a097e53a89462c975c18d04411fd60724edbf3cb7cf228db7f
MD5 de006d8b5b5521148530603bf4e0fa4c
BLAKE2b-256 1068effe3a26726285eff70ed5b8a7b26f2b29b95fc73d66411b9b453b0b56b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e70902342fb7512c30ce47af71e0d0380314fd038a7d390e160594199e41b96
MD5 6e7c49f66954fcaae5c4c1ac639ebc2a
BLAKE2b-256 b16b4878c2c3f34e1edf92bfa6b7f1898cefc9e118f23c4120436a92d10cd60c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 077886412e7272b37d619cb22eda7291d14a3762bce8c7728a295ce74480c3f1
MD5 fbcb7ab86fe97230508c913ed2feeaa1
BLAKE2b-256 49a3fb076395b0b3e680e42bf809f46d12c5860f383e52db2d2a87a2f67e21d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4355ec02ae2def9f9e00af1a98349de39f09bae65f79bd408b2d357ce13f70d9
MD5 ddbb5a682d2afac387fb22adbceffe3f
BLAKE2b-256 5fa111631d6e7be01c6c1952b7238696793f009ff74fc87515140a0aed570675

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d2e9ecc49b0479560fb2af54f00432c6674105d9ac6a366d17dc3e733a6da032
MD5 21b7392e0e5186dfcd5aedaa267d1805
BLAKE2b-256 b46f4803693793fb052126ee1611dc21a580b79d9267a63501e83fd21e96f26f

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