Skip to main content

Fast Hierarchical Dart Throwing sampling implemented in Rust for Python.

Project description

HDT Sampling (Hierarchical Dart Throwing)

CI PyPI

中文说明 (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.2.0.tar.gz (335.5 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.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (447.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

hdt_sampling-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hdt_sampling-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

hdt_sampling-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hdt_sampling-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (291.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

hdt_sampling-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (447.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

hdt_sampling-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (542.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

hdt_sampling-0.2.0-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.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hdt_sampling-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (291.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

hdt_sampling-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (472.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

hdt_sampling-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (542.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

hdt_sampling-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (456.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

hdt_sampling-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hdt_sampling-0.2.0-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.2.0-cp313-cp313t-musllinux_1_2_i686.whl (472.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

hdt_sampling-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (541.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

hdt_sampling-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

hdt_sampling-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (278.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.2.0-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.2.0-cp313-cp313-win_amd64.whl (137.2 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

hdt_sampling-0.2.0-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.2.0-cp313-cp313-musllinux_1_2_i686.whl (471.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (455.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hdt_sampling-0.2.0-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.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

hdt_sampling-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (335.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.2.0-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.2.0-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.2.0-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.2.0-cp313-cp313-macosx_11_0_arm64.whl (238.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

hdt_sampling-0.2.0-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.2.0-cp312-cp312-musllinux_1_2_i686.whl (471.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (455.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hdt_sampling-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hdt_sampling-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

hdt_sampling-0.2.0-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.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

hdt_sampling-0.2.0-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.2.0-cp312-cp312-macosx_11_0_arm64.whl (238.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

hdt_sampling-0.2.0-cp311-cp311-win_amd64.whl (137.2 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

hdt_sampling-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (447.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hdt_sampling-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (472.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hdt_sampling-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hdt_sampling-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hdt_sampling-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.2.0-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.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hdt_sampling-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (292.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

hdt_sampling-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (248.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

hdt_sampling-0.2.0-cp310-cp310-win_amd64.whl (137.2 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

hdt_sampling-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (447.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hdt_sampling-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (472.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hdt_sampling-0.2.0-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.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

hdt_sampling-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.2.0-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.2.0-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.2.0-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.2.0-cp39-cp39-win_amd64.whl (137.9 kB view details)

Uploaded CPython 3.9Windows x86-64

hdt_sampling-0.2.0-cp39-cp39-win32.whl (130.3 kB view details)

Uploaded CPython 3.9Windows x86

hdt_sampling-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (448.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hdt_sampling-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (473.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (457.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hdt_sampling-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hdt_sampling-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

hdt_sampling-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (337.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (279.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

hdt_sampling-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hdt_sampling-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (294.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

hdt_sampling-0.2.0-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.2.0-cp38-cp38-musllinux_1_2_i686.whl (473.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

hdt_sampling-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (456.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hdt_sampling-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hdt_sampling-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hdt_sampling-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (337.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hdt_sampling-0.2.0-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.2.0-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.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (294.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for hdt_sampling-0.2.0.tar.gz
Algorithm Hash digest
SHA256 7c54bea12ecaa166b80463579cb3c98a5937cfe2b422e9d0d513076e8a455218
MD5 e9dc2283791addefb247048fb2afc651
BLAKE2b-256 f520ce062055ee1279a60730fb1453c4a5b350dfbd11079ff3592f3c7c4ce731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31c4485608ec735eb2ba0e9ba1ef228ec593b25d8bd02a74c478c67bfeefc0a8
MD5 d4fe4ac2860ee8379c66ef9a970c177e
BLAKE2b-256 fd8519a1e43ea542beb4133f5f0fda5ce266bf380d558b9d83caea9da58e1196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0cf8fb74d71e6b2e299262c8d07c35eb89d73fb39feca5506f52172b2399ab95
MD5 ea001911454e5f41ef26ee1778dd4c0a
BLAKE2b-256 c1bfdb2bfcecf6a76c5228acfea48038cc67ed3a3e0718dd26c1f82d8d22f2d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a885524e2f27e54b603ab3ee14a96bf6bc2f7a4292c64fa3d8b201816e41c30c
MD5 7f28fa51cf9f71a9f5faeca11e9a1873
BLAKE2b-256 2232eb62bb03f3b6ed5e779e423be9d8457d53c622391b1673826961607e31b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2eba01e3ac3cfc2d0f05e5790d52db2d014ccbc54f1e2e3670b17049aab4b0b5
MD5 afd9cb37efe80dbe39e35ddf3bd3652f
BLAKE2b-256 49aaf43d0581f8bb348c1c5e4a89e0a51157b7bd9bc4c38a757cfccbb573e3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8a24bd3b6efb01d2220ef96a803975bc3146289e922980cf0386771c20d1006
MD5 1c24a8ad76185bc48ee0f9d2901e7af1
BLAKE2b-256 f218ed88e97b3c260c14702bc865444b8ac9ea85172da41f24346581a0229bcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a01a934ff15ab89b3c9828af961a33931b9580e649708008548df3767ff29723
MD5 334b5d21984b9f1355f525a03e7fddac
BLAKE2b-256 5043a1d7d661a8a88370a5b5c25eab573e82b3eb43e395335e549aeae8fcd6e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5593b7b9b7a79b67dbf588b99b0949aee500345c7e2036ae7631c1477d748344
MD5 d653c86fdf4186e23d6fd16a2fe9585a
BLAKE2b-256 3e52ae284212fb511ce50b78248f2b1d1889759ac0a88484da434cc4c461c4f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35676734e2f0de0e767a025def2d64512801606ba7f8885900580bba464c085f
MD5 4a8932dc2f961084ceeb4bb511682e72
BLAKE2b-256 8cf0b232e544eefeed98500f9c67f0ad3f94741df0dc51a45812ff551bd092dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 551c9997198cc3bfaccdf6cb3477d6566b9e18824645b42dcbcc060da46a3e82
MD5 e59b1c33ceb80126e0eca8989c174e36
BLAKE2b-256 20d21a2b7e3657ff9e883e72242804662fe25a819f3cd620e15a4cada708613c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 567a44dd718c13ce03d63b8d8f395689f0d4be0a48534d1eea2f7ede108ec340
MD5 d6b3a3782b987352e686e90080f03ef1
BLAKE2b-256 5a175f1526021477784aa2a5ab0e61190c0c3c805530abb7a1d3e1baaa981917

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3cf77c9bccdb037c26268a6b11daae84e4cc2368598e8d1fb464119cd45ceaca
MD5 675db58c78818c881790822772ced0f6
BLAKE2b-256 60c229485f294e11c154245029e9b9def8029b8f92f94abde2099919d5f5eaba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71772136f210e3bb19b2a4f95b403e27e1b8deb29d1e689f59a859adc92e6a04
MD5 f2e1736e38c44987d6eef557915c2012
BLAKE2b-256 2ed8769a26fb75caef5998cf288aa71e4709ca239083accb681e1c56e241e229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b579f7062ed2fb21964a6b80ba8e769e75a81bc0bc6a635520c7ab9cd79048ab
MD5 30a6ed627f15975c83f24e13ec05e615
BLAKE2b-256 fa2412bbab6d1104a298c03b48032da7349993457e6c96764d74fb6119021c06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ef2b1b1b6d1d64aaea999ef739788bab4cdf9b3b666de3474aa91b48ac8db3f
MD5 6c6d375c2b89a93dfc1ca9c475f89a89
BLAKE2b-256 76db6fbc1b4a7fd267b3e80c92e3d3f30fb17c69a4ed8db0cb5714a711c0e365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd8742affca7181ea87001213217861693b578de8847b097542a719020641b12
MD5 74a4c9dabfa5c1de43b6d1bcbf8508d0
BLAKE2b-256 3913bbdb1db3e5b3011cda678dcd17068a293770111425a57bd3fb36d82b2c02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 126dc19b98310429198cb61ca0719ab0aa22955afccb06822f7fb23954c9096c
MD5 0c962c583e92f5d5d3a02e33953ddf83
BLAKE2b-256 04997a6363d5e4047d13f8e6b5ed964d0071ef50e524bc0b1cae1f98d3932282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 020c3a82ef3595df9e05a577759e832e3f6cc7d1e3acda7e7a1b27fe440a4519
MD5 62b045d71eb1ec85c59578781efe5a45
BLAKE2b-256 d76ea7105085e2c3678c5f59369dda9c68c9fbc80e350bf82a5952709ea97b6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 619bb6f9388f350fa2d39c0bd151c6b9a1f37ed6f7f8f36b89b80343911e24e2
MD5 b85424c27fd2b0407d8958bb396c8416
BLAKE2b-256 88557e8d9051decaa56d43656786d55f105f68223e7a3cb75687526fb3c695a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c34095f03274d91d32f612b5f5163b76a3845196a8c06274d2ce074c89336985
MD5 515fbf91ad4988e48af9bdda4870c7be
BLAKE2b-256 511889da38911d7ca2cfa659940b644d30468ff61b74ea0aa832254e3232eeb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 11d929f2aa9d62bad4f9400058f69b58d16e8fd315ded27761694d7ce3afc544
MD5 838b3d6bfc58b1e8b07d0fe8f2b6c893
BLAKE2b-256 c228fecb791a51edb188cc0547bd5d7325fb029de986d07958e4b121e68c40b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 796feb5f3a2ef44df28cf9c7d13bc87ea99cdb87fcd010dd71893eec59106271
MD5 e4701d7b34aab3b7997fbbbd0db55c02
BLAKE2b-256 b650406a399a6bb3beff4cd73a8643ebc171cdc4f3c8fd03b2987aeae0994797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a26243b43b36dc3d439d5c060cf907e73a3e9e00828e8fe9c4d023a9dca339c
MD5 bff5aa7490a0f7f9546e77c50efdf9c8
BLAKE2b-256 a0db936787f361f1ca068674357c73556000439f35f61822923a07c2e443876b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a84c8325d9ef519e0838ccfe19512aa364d8f2171e4e34f0e35a7f59afc65b61
MD5 612b279135ee218ddc933cfe27bf7532
BLAKE2b-256 1eca4a7fc265e2242d40e6292160c12de7eaae4b246cac63779105c042506ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56b47947a8f95e10761e4a766f9c4ac1ffa4345e806066ffe2e7bf7880beff36
MD5 39e8ba42ec71165c496e2d08f97c01ea
BLAKE2b-256 09b652076ce64f3c2a50666af8b83d2711379a399b0c7b35ac369e4535ed09b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 288deb54602b44bed96b966d5c2561c0ab0053a6aeb34e19d79d9433f0b7477b
MD5 fd65f7cda09092844fb8860ac4c6b47e
BLAKE2b-256 539c44b5db4c62da290407c637839a5ecb9c57ff8b53f61a6eef1efa8c06523a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b390bb6dac27fbd74943219a28ce78f5685861efb04b881f49c6c57f8c01672
MD5 fbc187a2488bcd43e2be0ed81890c0e7
BLAKE2b-256 b4de69166deddaa58c5dee9fd38c5555651e0804ae8434dc2b2707cf60b52bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c63f1676ae660d7bae44686c3b5bf79f5a2ec3b960d6de11a7ec2eae55ae91d5
MD5 b77dcd6b6a96f3997ad09a75d63b7e5f
BLAKE2b-256 17341cf6802854b9ee3a4b66da3629966c7f240ab4a4d7bd4688db80e19af9bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c580c82fee9a79897b5a944c260cd9c8308e14a3efc564ce94c205d7888e8fa
MD5 7643694b333c55005af9621531870da6
BLAKE2b-256 6909efa2667e1da6cc61ae117617a8afe10418182cfaaf37c4646537d5449187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 882b5648dfdb473c766d9c024934906ceecd87f8d441d095d4a4f4ef16841b82
MD5 1fb56c23bc2bca9bb50600c71c501701
BLAKE2b-256 f82ecfc366793d98eb33191075612f1aa6a11687d7e1d9733e944d11f2dddee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1b3f8a4050c78c6dc56ab9a2ec4c2186d221ceeb5968a323d1a628ed5063571
MD5 257c6814f384b20facf5afa572937f12
BLAKE2b-256 490fe967f5b68da8979496b6ffabf082939254bf25dfffd2c9edb173800673a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0dc400b9f14570a2c2d9e282063e541cee7312cc420bbc3d35f2b5d638b8b61
MD5 19e8cd4a5391408fb5bf767a8d26d8ff
BLAKE2b-256 a440c298703bc3e361e7c3a2865a51068d89f3a88c7ad1a2a995b81bb245fae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c40d0ffa971e42c7376d5d8457ec255d1b522940f9b5e18d79b239eeed09e1f4
MD5 812041f17b668451157fce8f737a330b
BLAKE2b-256 c5c63fe348133307520db86d308420665922c6b4df4e667146a9001bd896d944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc82686cb054a07f0d50aa415f2f874898a1f7c8ccd16351efff708d913f7fcb
MD5 78f7005b7f840a40bc38f219de478a7c
BLAKE2b-256 251a91541606f03583067fa23a6a1eb997ace54b44b55ab118ded6e42e2ca0ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6119d2cf656122ba8f81ffc71551c87a5ce01a7bc0166b57978b37a66606b5a4
MD5 2a0b52a5438f05940a0472f0424bb1ba
BLAKE2b-256 446d62b1e95857a1cf2710a916730c5744126a18fcaa52f0dc2a57d8312d1b16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e37524e78c93f19aadc86298c919115acace3a4d15d71f3dab0d78e93f739dd
MD5 be43271bd38f72719ddc59f7b04cc156
BLAKE2b-256 48796091c840f0e84c89422d3601097c5646c0055f945273f7ca8d021a02d6a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2bee9774e9fe22fbf02de325c8267a2ea9a713dba1c25f3c888199a480a77fb
MD5 4b1678ffcd54af5a777c55e9385142fa
BLAKE2b-256 207060e15e150eb7dcf68d5bf9b553d0d3e1311e705f6fc11aeb05f58cfdc41b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bfa9cbf6950f7c0abc27dc688b76243a809f61a59615a597dd7c7e31ea081eab
MD5 6f78d2b0c97f3c9dbe77c37db31d9867
BLAKE2b-256 c193440c82308dc2776855990c0051599f88713530bedb99f18b507fc12b764c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 68f278f5ddc86bc6b315aaeacf4d0817fb6f7deaca968230852596ef9ec03d35
MD5 de9be0a57f5c201cfbec8c882398637f
BLAKE2b-256 02dc275f59d30a3ddf6fc126eb4bfa0fe670c7390c1f8bedee62d3e5b8da565b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19a10972557718b21c9c696f1abcd1c327aab40a6a62ac7c2d732f121222ac7c
MD5 f7347e4521a6cf21b5724708c5435105
BLAKE2b-256 a3f6189068dcfd1b6045c9f390cd89c22d55fa5ae525ab21950702f612b7e866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43c355e03d528e585fc4c2146b4ec7f5e3f90bf2b7a9b76dc4bbca44ef88e314
MD5 530e20d452b5e2cce893dfc51d703fc3
BLAKE2b-256 a952ed2e99eac936d63695d7b5e5540c511352c851b1a062c9e8eb911bd0dc24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b296b402a876931e58612c082ca1eb121515182fe11bfe55563faa779dc8419
MD5 98a2ecb4b0303fdbcda73a10f0be0a38
BLAKE2b-256 1540b371b09df039a40c51de9d985dfce402999c9d732e996aa1f2fa88c762a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6814f87c288173a1055d12c204dca170577565fb16c6b63515eaf525a98fc371
MD5 46b48c4ff1054b5b2a860689313b1966
BLAKE2b-256 a38c17ffe7428d2743c15a9e1087b41ddad34eed2950124db1d322c117ae0abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47eafd1717f35f897137ef8db568e01794e0ff61744aaa2d2da003796544d6c8
MD5 be9761bfd924070fe55fbf5d4277adc6
BLAKE2b-256 73f1da01263e6e7b06e88376d723ded630982b0469586765bf13532f8991f477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 203318f85587d4996e19bd997b4cf82e73fc41ff63693824eaabc918d2a8c198
MD5 bc7b643d5a42bc8decadad42d1d9b3a5
BLAKE2b-256 00bc7a6ed3a07148172346546d329740d40d1eebc1e1d89c497b312924fb7cbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6d278eb1f8bc213081d539688064ca9070a807e2f65a4cd4204179fc390f340
MD5 e75aefe8dd7430870b93a7766f597718
BLAKE2b-256 ec19a3e1bb095e0ba035bcaa1820514be3b6279f5571936cc4d21dad0f2f0362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd19b4ccf8c1ae5bf90780619eb2f1d9c7852bb47191fe2ca4f4bfa4835e9464
MD5 9ea29fcde6fcec8787542d33852225c6
BLAKE2b-256 72ffc310db2d2b962a3964984a60541ff0d77ab93b8fcd185dfcda64fecf3828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fbba9eaff2b0dc685ef368966274f398bc8e35b388d19c106d13d2516319cf7
MD5 fad21d01aeeb45bdd38b75bdde9ae2d2
BLAKE2b-256 d93000ea716955d6c75b91d0911584eacc594ffa22c783741e207a4a842bbf8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b259bc9c84d1f5951fb41dc9c2062ecec070ac7bd1c3815ed724d9f6dbebdcb5
MD5 4a6745847ba7eeaff0b922cff67faf64
BLAKE2b-256 7ff20743ebfba42dd71b0303436958707e49ea7a7000983b0fdcf0968521f007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f783d26bfd50398512200a8508a295ba22adfa9a7cac65e40aa13a756b93e8a7
MD5 9963e43db3cfdd99b6546ba3e9d7c689
BLAKE2b-256 e79ffe9555f9938426323c79e5c217fae4ade7e00ced37dacf439bc3a89bf01a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e12d4d11e7b8a5a6b3174764abb54a997e42886ec4b4ad8d25cbf2673777d6b2
MD5 8b27602e3707b20bafd257c103dca844
BLAKE2b-256 afad3b209e1b1a4c7b9c95ee9f4127cac0b706c9d1fc9142f3054a634c2ea307

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 88a5c596343fc5ccae521925fa029154dfd7233353cb6d6c2ad2c823d73e703e
MD5 a38e9363338676691678944b2f4f213a
BLAKE2b-256 9670919f6ce1178deaf9674403b05337937c1d36aa530e737dd271d17cddd1bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9a40e787456062d7074b48de8a5460e04826952d4742cabe018b230bb0217834
MD5 a5ba0ebe51d8707480fc996c43387d27
BLAKE2b-256 4657fdae152bf9156603567f2e10fee864be2d336e3524dbcc4368796e8b9fcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9e2500ccae9419bc735d929fc568063bd84c8bbdf816a5ddee111ac4d65e9c8
MD5 03f5bb444659789dbf6845b4ca42fcc0
BLAKE2b-256 147235245bf3faccd090edf42b9710a4093a9e5cc7a2d8a6921ba0586df04913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3e95ed32efab475cea1860ab17a5f47de296ed404e0dc79e3093d1e67919a05
MD5 1ed93d358b47adb9331b1f08cfeb8576
BLAKE2b-256 66c6c1dc0ebb91844454bec7023a80a63b81dd14a0d697ff47e4796aae45d14e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed2eb7dc9d875c2ebec93d3e1cfc1f2b8515680083f5b9d3e2246f3b16efdf6f
MD5 d3193b72b64696cdc6abf8b179bd56c4
BLAKE2b-256 32ee1f0ec68fe74004418848a90ba2c967d5184da7d8b0fa2430b2b4a4ca1da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6a24ef5f05f72fd3ccc321531f97a056ffe3875b695c6e68968a0490eb557da
MD5 54534fdeb6056b314dd67c482a3a6020
BLAKE2b-256 b4ea0a04275937b14b9077af70c5607589768d5928dcb6af3fe64d66f1d98e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dd44f9c1427221b8a197373227883249603011b6684b1ff9ae5465c8e4115f1
MD5 3236dc1d47168d0bdd85fb43ad6c8cbf
BLAKE2b-256 b820dbf5b1e6a1c4d2f40cb399c2a5235f472d10ab096adfb85d05a747dfacad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 821c0213627d4091936bc8bbc246354778d2e52b644a6e7bb2c2695ea179d95a
MD5 3d87f3a81c7d702cd38923f168bba9c5
BLAKE2b-256 a1b42c7279815141d45423c469e56fa3350f9373010363d3d951f9cd380139df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 557f01d08c7603f51ace49b2a6be118622377bf3dd6d1f548c9a1271120c177a
MD5 807c1d231914c4eb14c88d89afcf5f72
BLAKE2b-256 3abae43770d3acf799a3e4d2697cc90d9283527972de4f1e3ac059b0e601f906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3445743c479b5ff8b7de821a202e3d4d5abbe704348825850609adf209a93ad0
MD5 b09aa730bf799fc002d3888979a3f13a
BLAKE2b-256 949ace6d8792c541cfbcf41daf4c853b3e28917caa761992a9df3bcc8f19b4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eeb5856a77bb1daec3f6f480b0b45fa8008b4fd9d19e63cb86263d520808c039
MD5 f14d911fb868e3cf22337990a749f9fc
BLAKE2b-256 8e70c5e58d5f8814a93e64f689aa4635bfc082654925c5d0f5742346fa450079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 299e76e994bf40a93f003c9e3873a870e5c37423c225c1605963f302590c3d7c
MD5 6248773116117f8b9a64720af414a1d1
BLAKE2b-256 281f1b76a215ef215252b94a445bb4a50706c43d27d424da6f4174c49418aa32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d88c057e1140509b9b197ebcd3b29bc7d5d303408dff9bcc11e5f80ecc3f142
MD5 7847311ce056c33480af372ee1158d11
BLAKE2b-256 93a50600d2e2eb33ad6557390dcc5e3befd0743f018d75b17a6775e9db82dea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1404bcd379de68f3be1e9bcbfd7fe7ca899590b011db82dea3ce56331333221
MD5 8e317f0f4f6704fe0f8b77ab4e3dcbf2
BLAKE2b-256 a52b3dc5b855525d8fee521edbd477bf381e58d688b9d42ab79f60c46194034e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dfdf047c2ccbe535c457c99639fe76b66d6954e3a3b0097296ad52c07bbc6e5f
MD5 49374a36a97a554c456e490e70e48a66
BLAKE2b-256 835c1955f43b0cdcc1ef4db663a20b3218edd2f9cbcbca47a4100be8684d8908

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ddfb05dc7fe204de99bfd308f44697c0af405741c0f94349a01d2ca4bb597237
MD5 15a92dc8d7fca442acfa90940d3d4e07
BLAKE2b-256 c17372fc7a18b660e9f4660abb93ca244f21931e4ce22d8744cbd1361eaa88e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5461a97380ec053ee5ee3c291ba6f1fef8b52ec9dfe258ef52ac52b708c8fb60
MD5 1d4567f47b2f76dfbc7fcab1c9efc9d8
BLAKE2b-256 a9061a8e40595062b99b74009ec9012929170070ac404f5d35bdc2b886d7470e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9c93a2dd744c523251a9f9604b41367b28a4212260f3141ba99d56082fa2cbd
MD5 9e53a346502d02daa34b47e194089b4e
BLAKE2b-256 98aa12067d34f98295e43f9fa62c9b9720396f6be2f76d7b466c08d9518e9c7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85ccba0a3b5315069f4e2fed2a5e8981ba69e81ba5fce414f3405b792c7a5489
MD5 7f9d90040118d6c37eabe79bd0437a6c
BLAKE2b-256 f3a93ba7798fc75c182d54afc1fa8451ef9554049b587a084ed35416005b55a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76aec0a15613a4a0b0f82e81292d7438873cae6f0a8f154a1ae72bfaaa86e7e5
MD5 27e49dcdbcc53fb4f26c5ecfa00de933
BLAKE2b-256 7b99a31559e814d2e72925ff98c81312caa13f4f2e7e61577a3c187a5c4caf60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9867b44cbf4bf6c2f16aaa812016b2c03e37ed420c54c581411c14f2745ed08
MD5 85ee78923128391a252e78786e3c21af
BLAKE2b-256 e18f434087a4f942be40766656f1722545509518aab58df8bf2657993d5fb315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82e9cef06d03c01a991c60f6b460e94782d1153e2084a37c0daa3aed1ff9df07
MD5 8a8015d403e493d4bf595efc5b6606aa
BLAKE2b-256 9fe4379f243435e4e833bbdfb51237838cc8b593b00d4aebcf95bf11710262de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63ea572a850ecedc9c561ef2d2530d0f67fae8a6b475b972c3d7673ac8dfce2a
MD5 a6029fd6753c47c8e96892e149dc3a49
BLAKE2b-256 2bb6cc1f194b098b80628c859bfd056bfd3f033b4cc4961b6e91c95f47d88702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b50dd5798bd7a314c62a389d2646f389f73ee5786671a81c06a0e654621aff1f
MD5 c748d2dafdce1efd5c487aa04e98240d
BLAKE2b-256 d03f9560f4888c2947e313f41fb98e146c6628a4f125d89d678497a5b4b4af28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac440b7e88dae56c46b250ad354bafe8014fbf4a57965f860b2a14c5dacbca8d
MD5 80e8c43313d42b4bda548cd345e79a0e
BLAKE2b-256 bca133e2b54376881d13fd43a23926ead7cdafe5f273bbdd6a7f0e1dabd7e07e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 837a2db3436ab983e3aebb53e9940f0d933029ce0418396071b47f659be6016b
MD5 c4773cf0ec37225c6a86d35f947e56b1
BLAKE2b-256 f0b452e8432adf67e33aa9ea056be7236e663fe04643c642a068851f830e7c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3784e00c40a15b0847c2888d7d3a4fe0b57d5375f481d3b32ec47cf659471ce3
MD5 2591aa21cabfb16c46c972b8ff7a0dd1
BLAKE2b-256 629eba3bbb63b3d904ff00b5d9f0d87654be7c415a3080ed459a0b51e6a4be99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b871efcabc138a1da64d0ccc315c4837ea25922896dabfe1b5cb0f38337cf037
MD5 30c71264889395ce2207234f6759fde6
BLAKE2b-256 e72606f3466eceb576f4c112957208898042bee847fe99eb7243416649f0712b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f3d745d34546fc8285aa65aab7aaae66205a3eb4fde01aab2044aa3c7a3fa4b
MD5 6e6ee87a833768efdf17a5f2e0d54c7c
BLAKE2b-256 d8f04277a1770a2da752c4e48fb62044b26273790abc88a8f323a2a8c06511f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d2e3b25e4fe7c3883ddb4aaefc946929999ebf263ee70b51eb836741ee7e2d7f
MD5 521ff9f91f30aa1c6d0ab8616851bcf6
BLAKE2b-256 8c4fda99b92ac0637aae8153f90d17dcaa582873dd0255d823295134fddf1ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0d14e7571a23ea8e3fe284cddd6a76f5df72079b05590ff2ef6ba5c60cac075
MD5 804c6af5d8a56f631ac998525fed46c5
BLAKE2b-256 566063505dc8338000b10fae64070a9cb0a28e59d4891850318e0151259af5ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 135c7c2a3902cfd9ca8501f2b90822c9c7d8e7c2baf641ee202ab21b787f5b86
MD5 e69444002f7ff01b53bd97cecf437178
BLAKE2b-256 29c72749c8e7b27cb35ceabb323fc8caa9fea78da6b30c7b713cc282c7241032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4707ad231692885f2d9ba262cc8c15201acd6226bcb125951cdd976b67b650ed
MD5 307582580a08e18f916445ca428aaac8
BLAKE2b-256 dcc2241e00a51c48f6c31a92053400d883001fc457fad21f520dddc9a89c653b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67e4c96cf22e04dd6913ec756e3d070a493abbe8603085808807ce5353d1926c
MD5 356a3695d6b1bc72176bd1f3f7198cef
BLAKE2b-256 9cddc0b49f3f43b0d28514a67ba9d69f2bacc1853ca6ac00b487c1f55a1f0373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdc3f883654bc2bf55b73edff52590b60c5476304525e71d98016b414c2cdad6
MD5 aa9fc4068e31e8b7bb016800d0f78efa
BLAKE2b-256 f644f00339f992de3d3cc63d8f54af52d8b83c03e8e043db61a7c495aa817200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b8d0c00a521de949f8562f91e41181e644f729bc96ea05a44077060c18c0d39
MD5 8638172ab570c8366c1d8764275be2fb
BLAKE2b-256 3acc6df05b6a55667f7444afeeb1dce615ea3f961e172fbc23c5e7b1dee8cefe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 675029b3c043b77bf56abce26741515a3b51ed416b91ddd38b34896e8a437e11
MD5 ed0941349487c5e5ff2370690c66b5e5
BLAKE2b-256 066350305e2df8cf4425977c1d4e5e6a2c25ea63adbd76a1477117d92872991a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a096f8858f7273bac6f5f160acd5bc0fd0bf0bec0451c7d5fb1b0a333124981
MD5 3422e6ab1112ae06827a9a171d743c4a
BLAKE2b-256 a348c315f6bab4b70daefaf6fb80403505fe9b0f3bbd43d3b67617cb8bd23ed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6afa20d92a60ad6c41e7decd438eb33558dcd7b4eda8a459d7cf8b3416d11459
MD5 04346f44562f3bf1b2f0e251d1fc919e
BLAKE2b-256 da01a582282506423a103d05e26da06ce9cbd68515173e567edc3d6b91b6fe9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2eadccb2347613f607fd9ba4e2f036e98000dcda8eed5741bc51da3ff3e4ecc4
MD5 5a43e155a17a60a43f96894911120dfc
BLAKE2b-256 c4222c9c42a7ef80c32f8f7d4613fc962291cc22a8c5fb21f7351cd6ccffd70e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cedb070d850ff803b08a9c7166812c377f819368d4c8f12de69834aa60ea478c
MD5 d23aa86b301582b682d1e3f6605d64b8
BLAKE2b-256 5aabf3e7362c3c181bc32d631e29f7137e4ff53b9bc159cad7a12dfe68610c09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdt_sampling-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 130.3 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.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1e744d09f6eefab0a8cc036f986cdee614c0a4aafee6e1b0fadcd2062876258f
MD5 3f886d50ebaf4d190be0d28d53afda86
BLAKE2b-256 af7b857d01ac6ba91ebdaa650ba84d28bc96ac97d5b21ecb775162d829530384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9122efa2d881141a62525dfe254b14195e80ea75df5284341904fd38663df9c
MD5 2196e819c4b27629699c92a0de723838
BLAKE2b-256 d1b7f4f0a557ceca26527573c5c59d276d74688e7b84127e07da5672d266933e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e98e8eba158c06f5b336b965ddb9c71f2cfdcb81e9edb0b408cb1729f8762a5
MD5 5d97c3152618e4d3a47d24627aef0564
BLAKE2b-256 fee976f114ca446d7f10850db860089af26fecf4474b748498b13ecf7097ca66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d21a21063c2e49db5079d19a47c8e40a5e8f4d4c4422c59c36d92d2b0cbe1a35
MD5 d577eec5f5b439c37c10b7219fcad45d
BLAKE2b-256 c2fb43cfcbe0d5f1cd0960b570f7ba46d6891f9b4a9244e2dc1d4a1346c013ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49386a36d676816bdd4f6b6187dd0e61289e7209ff5bbac41fab90a1c4939cf3
MD5 1e39cabbc92f63ca5206c7ff10ab3366
BLAKE2b-256 00b799889140fb1fc9176eda99af8225194265dcfc0444f8c56b313f3b1e0e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2b0d845b2a6dec1be43e0dbed1ccee8ef5de9220f8bbf35495613ab5f6eb16e
MD5 02885a320f1e1f7507f443275fd4a4ba
BLAKE2b-256 c2c1cb4346e3834fe593881a1d904a824d18f05f58ce3954c06b2d19ed387140

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10e9e5546255bcd26f56eed567a98b3aacf0405e568a33ef9a31ca58bac87ba2
MD5 a54cb17183b32c598286d8e6e12a98a6
BLAKE2b-256 aeb85dad87cebc392b0f83ac1cdfc07338c9e0cbfa5705d191a9d246c1ae16ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2183cdd606abcb28250ed51b2747a95bd8669bea9c1496477e5e873674946a25
MD5 49c3008a23d5c840d109062689d82c10
BLAKE2b-256 001aef7d54fd25194409ed0d2e30f5b6b46057e83e94048d0339d0a5544a26aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66e9c0b3f0f0a98ddf6c1d7f00eb0f523e47b80c210aabfa6ee194b0eff6fd6f
MD5 96c459ec1cf348fc6cfcd6a25e22839c
BLAKE2b-256 8c712dc09bd663d7fecdc396d42bb4d7c3d83284ebd6fe93e6afdb67668f798c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 857dbcd84df444b59afee0b771a7d04300bc5c947b19aa1f4cc1f211f67ac2af
MD5 8ef4d44b4356da1350eafc149aa25b3b
BLAKE2b-256 b3fe8d81bd83d93232dc5d2c80cc86668a3e96b5aa168f297040658eb4bbcd82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 96a2767b04ed5f7f81597dafe528547da920fd9bcb4e410de27608145d2a4e54
MD5 ec0827608bdae2e71e9e42d50246067e
BLAKE2b-256 015fb5b688ccf1712361cce1c27887568ac272c14e83e98b9c2a8c4fa1c0555b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 98802641b4df2d89e64fa55221ea03ca6e760cba3eda078a449f77f8532f0be2
MD5 6e32185d5648c92720ebbef0b187fa46
BLAKE2b-256 a4f84edd04299b5dcd45ff3d59261691f4c140cc791d7c42421dd185711c9a60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdt_sampling-0.2.0-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.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 35c34a9a239027120c508d3a623a43a13a2e0953e2ab2cea687cf3c641117df6
MD5 f8ee30046c492e56d3ba14c1a65ab137
BLAKE2b-256 e4a5278beaa4072c48f5028d5a535fa5987c5b36e3f47e9a48d88c4d88271bc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58f9dc8652058e99a0cbd969eabd8667444560c050babd6a915a522cec1824a9
MD5 c0408d1ad46bca7bdb5400d5231388c7
BLAKE2b-256 397538c5bd52aa047164981ddeb01ffe09a0bc11503773c42a965fa53d73275f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33e85dbe10c3e0bdd10ab8c6492d73365a42a3f97b60e3be7f88b41406e3af4d
MD5 2288a2e84b25a66d0d00bf456454be53
BLAKE2b-256 5c3ee054d0a8d375d70ca1f15f9b2a379386ccaba4c2cbd2801ff492ad26eb7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ff9445d1a8a8c9c9131babcf88c41ad6b4ac7d185889af429d818c649d9cf1c
MD5 f7a60b459110972721308fb6f7e723c0
BLAKE2b-256 574a722d04de4a1fb65aa60537f4612bbac3136c6080eee63e6db20325a908db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 977adbb6bab6ef6cef13fb0ec791f3b54321c6f49f2906df913b3560e30ba0b1
MD5 10aae25f4fde21350e073ee7f039eb8f
BLAKE2b-256 b78c610a9548775a13610dd6deabfaddb40a2f469b4ff0a5ed9f407c6c86e771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6ea89feede3e669aebd7ca37e67695a01a62464de660babae84125563217865
MD5 c5694a43b65c90c028674b2d33474a8d
BLAKE2b-256 ef7cffbc1e02d62c4d9ef9015c5c37117fac8e7c98ac896cc3b97f4f5aa76ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ca769ef9acf9b55df3a8bd3dc46077423df80fddbaad1c258eabfdf3cd024c4
MD5 44393076517ff27e60700b0c8c3f04a9
BLAKE2b-256 a104afedc2cadfe0c551aa20f815709e52129b246459b2f3197fccf1d5204edd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e557c5012e54d14840be954be7f1d619419d7618582cdb806fc56ecd93503b30
MD5 8a190727b119c451ea02b836d56a290c
BLAKE2b-256 f17e6ea6e12c51af9d1fc94cacdfa32afacade06febcd9f250ae5718b33fd483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1046fbeec6b9c2efc7057ff6cd733a977d840a33217e6d6f9fcc1badf77b2bca
MD5 12e6121bfb1950b148cd6c0d5d9a102d
BLAKE2b-256 310bef4bb0ce854ac34c56005dad363f71a99647f5fce1d6904e868aab9c3d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aab32f30b9b2b02b689003fec6ba88d51844439c10bb49c60e77e521a4826ea8
MD5 60c636df3c87dc62014e6fa3e1d35341
BLAKE2b-256 b66e237b809914466138279e587681d989fa189347a9307b97a1dc7baf231e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hdt_sampling-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b52d1ac81c393d88fd3338a7ffaea730686d6e593e05d189705ce8e4d3b28b9
MD5 426d3f66a760b07844df881a94bf88b7
BLAKE2b-256 50f9f1c2b8032f3e825a471c8800c7e3c195fb53896ac81b0fa700522e32c38d

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