Skip to main content

Python implementation of spectral entropy, entropy similarity, and Flash entropy search for mass spectrometry data.

Project description

DOI DOI Test MS Entropy package Documentation Status

If you have any questions, feel free to contact me via email: yuanyueli@zju.edu.cn. If you find this package useful, please consider citing the following publications:

Li, Y., Fiehn, O. Flash entropy search to query all mass spectral libraries in real time, Nat Methods 20, 1475-1478 (2023). https://doi.org/10.1038/s41592-023-02012-9

Li, Y., Kind, T., Folz, J. et al. Spectral entropy outperforms MS/MS dot product similarity for small-molecule compound identification, Nat Methods 18, 1524-1531 (2021). https://doi.org/10.1038/s41592-021-01331-z

Theoretical Background

Spectral entropy is an useful property to measure the complexity of a spectrum. It is inspried by the concept of Shannon entropy in information theory. (ref)

Entropy similarity, which measured spectral similarity based on spectral entropy, has been shown to outperform dot product similarity in compound identification. (ref)

The Flash Entropy Search algorithm significantly accelerates the computation of entropy similarity (ref)

How to use this package

This repository provides the source code for calculating spectral entropy and entropy similarity in multiple programming languages. The Flash Entropy Search algorithm is also implemented in Python.

For Python users

A detailed tutorial is available here: https://msentropy.readthedocs.io

Installation

pip install ms_entropy

Usage of Classical entropy functions

import numpy as np
import ms_entropy as me

peaks_query = np.array([[69.071, 7.917962], [86.066, 1.021589], [86.0969, 100.0]], dtype = np.float32)
peaks_reference = np.array([[41.04, 37.16], [69.07, 66.83], [86.1, 999.0]], dtype = np.float32)

# Calculate entropy similarity.
entropy = me.calculate_spectral_entropy(peaks_query, clean_spectrum = True, min_ms2_difference_in_da = 0.05)
print(f"Spectral entropy is {entropy}.")

# Calculate unweighted entropy similarity.
unweighted_similarity = me.calculate_unweighted_entropy_similarity(peaks_query, peaks_reference, ms2_tolerance_in_da = 0.05)
print(f"Unweighted entropy similarity: {unweighted_similarity}.")

# Calculate entropy similarity.
similarity = me.calculate_entropy_similarity(peaks_query, peaks_reference, ms2_tolerance_in_da = 0.05)
print(f"Entropy similarity: {similarity}.")

Usage of Flash Entropy Search

from ms_entropy import FlashEntropySearch
entropy_search = FlashEntropySearch()
entropy_search.build_index(spectral_library)
entropy_similarity = entropy_search.search(
    precursor_mz=query_spectrum_precursor_mz, peaks=query_spectrum_peaks)

For R users

Documentation is available at: https://cran.r-project.org/web/packages/msentropy/msentropy.pdf

Installation

install.packages("msentropy")

Usage

library(msentropy)

# Peaks A
mz_a <- c(169.071, 186.066, 186.0769)
intensity_a <- c(7.917962, 1.021589, 100.0)
peaks_a <- matrix(c(mz_a, intensity_a), ncol = 2, byrow = FALSE)

# Peaks B
mz_b <- c(120.212, 169.071, 186.066)
intensity_b <- c(37.16, 66.83, 999.0)
peaks_b <- matrix(c(mz_b, intensity_b), ncol = 2, byrow = FALSE)

# Calculate spectral entropy
spectral_entropy_a <- calculate_spectral_entropy(clean_spectrum(peaks_a, min_ms2_difference_in_da = 0.02))
spectral_entropy_b <- calculate_spectral_entropy(clean_spectrum(peaks_b, min_ms2_difference_in_da = 0.02))

# Calculate entropy similarity
entropy_similarity <- calculate_entropy_similarity(peaks_a, peaks_b, ms2_tolerance_in_da = 0.02)

For C/C++ users

Usage

#include "SpectralEntropy.h"

// Calculate spectral entropy
{
    int spec_a_len = 3;
    float spec_a[3][2] = {{169.071, 7.917962}, {186.066, 1.021589}, {186.0769, 100.0}};
    
    // The parameters for clean_spectrum function
    int normalize_intensity = 1;
    float ms2_tolerance_in_da = 0.02, ms2_tolerance_in_ppm = -1;
    float min_mz= 0, max_mz = -1;
    float noise_threshold = 0.01;
    int max_peak_num = -1;

    // Always clean the spectrum before calculating spectral entropy
    spec_a_len = clean_spectrum(*spec_a, spec_a_len, min_mz, max_mz, noise_threshold, max_peak_num, ms2_tolerance_in_da, ms2_tolerance_in_ppm, max_peak_num, normalize_intensity);

    // Calculate spectral entropy
    float spectral_entropy = calculate_spectral_entropy(*spec_a, spec_a_len);

    printf("Spectral Entropy: %f\n", spectral_entropy);
}

// Calculate entropy similarity
{
    int spec_a_len = 3;
    float spec_a[3][2] = {{169.071, 7.917962}, {186.066, 1.021589}, {186.0769, 100.0}};

    int spec_b_len = 3;
    float spec_b[3][2] = {{120.212, 37.16}, {169.071, 66.83}, {186.066, 999.0}};

    // The parameters for calculate_entropy_similarity function.
    int clean_spectra = 1;
    float ms2_tolerance_in_da = 0.02, ms2_tolerance_in_ppm = -1;
    float min_mz= 0, max_mz = -1;
    float noise_threshold = 0.01;
    int max_peak_num = -1;

    // Calculate entropy similarity, the data in spec_a and spec_b will modified.
    float similarity = calculate_entropy_similarity(*spec_a, spec_a_len, *spec_b, spec_b_len, ms2_tolerance_in_da, ms2_tolerance_in_ppm, clean_spectra, min_mz, max_mz, noise_threshold, max_peak_num);
    printf("Entropy Similarity: %f\n", similarity);
}

An example is available in folder languages/c folder and Example.c, CMakeLists.txt

For JavaScript users

An example is available in folder languages/javascript folder and example.js

You can also refer to the MSViewer repository for an example of how to integrate this package into a web application.

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

ms_entropy-1.5.1.tar.gz (344.5 kB view details)

Uploaded Source

Built Distributions

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

ms_entropy-1.5.1-cp314-cp314t-win_arm64.whl (220.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

ms_entropy-1.5.1-cp314-cp314t-win_amd64.whl (234.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

ms_entropy-1.5.1-cp314-cp314t-win32.whl (220.1 kB view details)

Uploaded CPython 3.14tWindows x86

ms_entropy-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl (273.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ms_entropy-1.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (272.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ms_entropy-1.5.1-cp314-cp314t-macosx_11_0_arm64.whl (244.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ms_entropy-1.5.1-cp314-cp314t-macosx_10_15_x86_64.whl (249.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ms_entropy-1.5.1-cp314-cp314t-macosx_10_15_universal2.whl (371.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

ms_entropy-1.5.1-cp314-cp314-win_arm64.whl (213.9 kB view details)

Uploaded CPython 3.14Windows ARM64

ms_entropy-1.5.1-cp314-cp314-win_amd64.whl (225.2 kB view details)

Uploaded CPython 3.14Windows x86-64

ms_entropy-1.5.1-cp314-cp314-win32.whl (212.3 kB view details)

Uploaded CPython 3.14Windows x86

ms_entropy-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (273.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ms_entropy-1.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (271.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ms_entropy-1.5.1-cp314-cp314-macosx_11_0_arm64.whl (235.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ms_entropy-1.5.1-cp314-cp314-macosx_10_15_x86_64.whl (242.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ms_entropy-1.5.1-cp314-cp314-macosx_10_15_universal2.whl (355.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

ms_entropy-1.5.1-cp313-cp313-win_arm64.whl (210.9 kB view details)

Uploaded CPython 3.13Windows ARM64

ms_entropy-1.5.1-cp313-cp313-win_amd64.whl (222.3 kB view details)

Uploaded CPython 3.13Windows x86-64

ms_entropy-1.5.1-cp313-cp313-win32.whl (209.2 kB view details)

Uploaded CPython 3.13Windows x86

ms_entropy-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (273.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ms_entropy-1.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (271.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ms_entropy-1.5.1-cp313-cp313-macosx_11_0_arm64.whl (234.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ms_entropy-1.5.1-cp313-cp313-macosx_10_13_x86_64.whl (242.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ms_entropy-1.5.1-cp313-cp313-macosx_10_13_universal2.whl (353.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

ms_entropy-1.5.1-cp312-cp312-win_arm64.whl (211.3 kB view details)

Uploaded CPython 3.12Windows ARM64

ms_entropy-1.5.1-cp312-cp312-win_amd64.whl (223.3 kB view details)

Uploaded CPython 3.12Windows x86-64

ms_entropy-1.5.1-cp312-cp312-win32.whl (209.8 kB view details)

Uploaded CPython 3.12Windows x86

ms_entropy-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (273.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ms_entropy-1.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (272.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ms_entropy-1.5.1-cp312-cp312-macosx_11_0_arm64.whl (233.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ms_entropy-1.5.1-cp312-cp312-macosx_10_13_x86_64.whl (240.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ms_entropy-1.5.1-cp312-cp312-macosx_10_13_universal2.whl (350.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

ms_entropy-1.5.1-cp311-cp311-win_arm64.whl (211.5 kB view details)

Uploaded CPython 3.11Windows ARM64

ms_entropy-1.5.1-cp311-cp311-win_amd64.whl (222.9 kB view details)

Uploaded CPython 3.11Windows x86-64

ms_entropy-1.5.1-cp311-cp311-win32.whl (209.3 kB view details)

Uploaded CPython 3.11Windows x86

ms_entropy-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (271.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ms_entropy-1.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (269.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ms_entropy-1.5.1-cp311-cp311-macosx_11_0_arm64.whl (232.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ms_entropy-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl (238.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ms_entropy-1.5.1-cp311-cp311-macosx_10_9_universal2.whl (348.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

ms_entropy-1.5.1-cp310-cp310-win_arm64.whl (211.7 kB view details)

Uploaded CPython 3.10Windows ARM64

ms_entropy-1.5.1-cp310-cp310-win_amd64.whl (222.8 kB view details)

Uploaded CPython 3.10Windows x86-64

ms_entropy-1.5.1-cp310-cp310-win32.whl (209.9 kB view details)

Uploaded CPython 3.10Windows x86

ms_entropy-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (277.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ms_entropy-1.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (275.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ms_entropy-1.5.1-cp310-cp310-macosx_11_0_arm64.whl (235.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ms_entropy-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl (239.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ms_entropy-1.5.1-cp310-cp310-macosx_10_9_universal2.whl (352.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

ms_entropy-1.5.1-cp39-cp39-win_arm64.whl (212.1 kB view details)

Uploaded CPython 3.9Windows ARM64

ms_entropy-1.5.1-cp39-cp39-win_amd64.whl (223.2 kB view details)

Uploaded CPython 3.9Windows x86-64

ms_entropy-1.5.1-cp39-cp39-win32.whl (210.2 kB view details)

Uploaded CPython 3.9Windows x86

ms_entropy-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl (277.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ms_entropy-1.5.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (275.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ms_entropy-1.5.1-cp39-cp39-macosx_11_0_arm64.whl (236.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ms_entropy-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl (240.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ms_entropy-1.5.1-cp39-cp39-macosx_10_9_universal2.whl (353.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

ms_entropy-1.5.1-cp38-cp38-win_amd64.whl (224.6 kB view details)

Uploaded CPython 3.8Windows x86-64

ms_entropy-1.5.1-cp38-cp38-win32.whl (211.6 kB view details)

Uploaded CPython 3.8Windows x86

ms_entropy-1.5.1-cp38-cp38-musllinux_1_2_x86_64.whl (811.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ms_entropy-1.5.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (810.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ms_entropy-1.5.1-cp38-cp38-macosx_11_0_arm64.whl (237.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ms_entropy-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl (239.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

ms_entropy-1.5.1-cp38-cp38-macosx_10_9_universal2.whl (353.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file ms_entropy-1.5.1.tar.gz.

File metadata

  • Download URL: ms_entropy-1.5.1.tar.gz
  • Upload date:
  • Size: 344.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1.tar.gz
Algorithm Hash digest
SHA256 728a2136d7b13320e1c0348eefde1d7331f61c60e0ba32583abffdc3ed5c2394
MD5 2080875045c3fb60d5bf02b362e3ea6d
BLAKE2b-256 ae975c2b57612df49d5e9423e8e89f70cc298fa41882872ce0baa6f8f80f1a55

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1.tar.gz:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 220.4 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d90c00f92eac016502a1629c507ac5dac76efca771276d6e3a03d6842039bba2
MD5 3ae1b81b87254e5ecfd52b1de190fb71
BLAKE2b-256 6d39870691a037f326fc06ca937c4da8eb220ba4a3bb5b305983e1bd580309cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314t-win_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 234.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e93503c330efd40b955e3466213f4ed032c715eaeccfc0af2ff875ecec8a0192
MD5 8fff3544284d6348596b9718e05578ca
BLAKE2b-256 65dc0b94573a8c948915d2a44768eca1c30fa01878c89dc846f81985c2d0d582

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314t-win_amd64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 220.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b73180b078869c8483502f8831a7fb4f844afd5cd5c7ce3c69e72dddaf5aeb65
MD5 7abf6e949d7d26c937a430763ee2bc88
BLAKE2b-256 08e36af7038f55a9b02d27638c3e0ca6788611a906732604f9f1bce65b366525

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314t-win32.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 caf6512d9f33c7f80cbd605bc6a70b8d858537be61f9cf6609ef9ca8a56f411f
MD5 57d83d169fa8d2ee50fbe526e531275e
BLAKE2b-256 662819aa9144c1c2ad26e0358dc7ab10a8b60c65886cf02cc2b6751efa8a2d0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 728f5370f9fc6ebdd470f08c50e735b7051491c5be906546e2e2863930f1e2f0
MD5 ddb7e233a5368087aac106bd6faecafb
BLAKE2b-256 efe13f10ecf34e05325147568e86c30358be08b6dff8b7566ce0016382a07a18

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c76021836d9dd970aeaa440bdf10656ca6bfa435e6a3b7101fdc2e8dc7aee4b
MD5 e21980e0285336f7934fea57f985e035
BLAKE2b-256 6390e75a592dc56cc240364e7c01d417dde56193c468e5279a3a8543760769ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 30ec8a0ec852952f0e61bfe12550e4e553986cd23696a6d3c2e494d9fab3c72a
MD5 ead29faa026a95fa6c110536fe870a04
BLAKE2b-256 042e74110a8e691fd35e4ce05dbe45fe5a53b1e6a62f8757b933792fb7e36a4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 26bdd757e833afbaf54573c43929d215f32f9208196d20d66e961e40183f2571
MD5 e4ad5c084983901b8c007914ec644f63
BLAKE2b-256 ed50de8f1db3e517206c05677dbe76335c731a1e722843fd2ed297a542b71a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 213.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b56267ccf86c5ccf5808fe797ece95ba0aa79f7eebb236e407fa7c83d3f9f87c
MD5 27c522ea37d5ddd85ddd7ca6e7c9a82c
BLAKE2b-256 aa98a0ee5fe384b4be381f636eb7240152f22ffd1e44e641dca5a15fb338b8c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314-win_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 225.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc62508003acb652fcd97e378ba9c065fa92d5ca435da6432aa8b99d81fdaeab
MD5 9ae1ef7a1a4ab5d059186a296592ce53
BLAKE2b-256 4e2e84cf684ad88161fe2a8c4dfb23d72736cd2335e221856405ed02a0b9f134

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 212.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0de3c5e4be1e3856d21de8901ebe104a150b0eee23d0f40129fdcb10a439a03a
MD5 485a4ad294a07812d13286e31b694b05
BLAKE2b-256 9b72ada21ffea42b04d5affe94a00a6de95ee68e6caa221c13dc73426add77f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314-win32.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e24cacbc46722444eaec3da496c84d95d350b540c0ba512e297dadcc3e01022
MD5 5380ee8de8007b24acb1b750e1a8c72d
BLAKE2b-256 9ee881baa569e2f993880590a78072a056c5f3a6bc65bb1e08a7525a79e27cb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cdaa69d58bcb33f69d6e966f0d7b914df256a7cf02579d5b8a40db40b7c30dd9
MD5 f64e44a67049c2fb35658fcb0fd3f325
BLAKE2b-256 741dfbde2d95f5ba227b5c3bf4013f857a0e5f796550e38fdfb74a3665a93bbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5a80762c03bd40a5428ee69023ace1e496aa14e356e0e2e68216d426a2b51c2
MD5 894b216e67c24e7a4367eec9057ee69c
BLAKE2b-256 1fe6a4cd195b75e93a405c9503fe148d8f96ccaba99ba5a830269c725f3fab58

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 10082a10b9c189970e1f624d14a7bd3ce690013495cc1522e980d1425d9690e1
MD5 6b086850f451f247427b3a84a1db9ff9
BLAKE2b-256 cb271e98e59c3c4ec067c9640148f6cce25e6057aae31e5183408e211c48788e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ee3ef3f2e10599eab7f64d19773583ade574a996c46224de06bb0f68e6b118f3
MD5 41dc0e74125cc64120e6b22493fbd7bc
BLAKE2b-256 6482aa3085cc6a9c7d0b8e31a8b38cbfdb5b4f6ac1a74335501d9277a859e55e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 210.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9ad0464ba7c3c679039090f3446f9a500d74791c4c810eb50c3f35edf3ac30fb
MD5 5ed4cab9b7a1af7b22f28524fd5d2b15
BLAKE2b-256 a3c9f27b8db788aa64f9e4589c3d0b78b7c1d90725481668aa942254aa90723a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp313-cp313-win_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 222.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 74a3a7c3604a1cb913f3d3d65473c04adfb7612749dd4effefb2e73770b5c5aa
MD5 6571eff77c7670616ae232473a410bf1
BLAKE2b-256 4338017ee80e60c06433bdf4aeba23deaa0b7f9bc5bc6a7d53e9b0c0ba751bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 209.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 98e17db0e1ccbd3eba482a7fd9ca7dd5918fe0a949bb6c688aac539f0edb8117
MD5 61c21ca09d0141c6c41b01e1a56dc328
BLAKE2b-256 8bc7d6a5c5292988d385ffce1b374c63a9f4cf01659d9e204933de981c33115a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a67f354ca333ea212ed93d2f240743cf32274b9de1fa85cc3362744afadad9b4
MD5 9dd27222f054745a5ea79b49aafbc3f5
BLAKE2b-256 81c8a4df57797e30d01605351f004a8e1e5620b084dfbbdf49a52f31bf55e70b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e1fb8cce12283e54858fc564ac875006d0c6097b06553c9a7295d8a97682354
MD5 93227adf5d053e7850344e3b9827c367
BLAKE2b-256 3b87435bea643eeeceaf117be98a59e051a20816132f7c0602eab64999b84482

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc51d5b15a1fea0ccca060a79c2a5647b303f7d30a598d16473cb1c4136b5c62
MD5 85cf2571231209ffcf4c1f23aca9cd8c
BLAKE2b-256 c56f5238608416c4f7d1d9434e0cb1c14a2952cd3f16e6b2c108bef0e752d262

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dc266bed13c095a1c1229593c8095a0b53e212fe25001d1c8e50057865078b8f
MD5 24f9d369fd6b7ae45069b75b5992fbf8
BLAKE2b-256 396e3591759bea1091edffc90553c3ab63f4d0286ab4eec2b2624346a8f27e8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7f6bda37df802a9bd37f050e45845711d514ce96ff844278b8198f71192465cb
MD5 2455d461d221530c4f7de23f5d68a15e
BLAKE2b-256 70d0d734d7bd1042221ce87301b9ea4af7bbcf2f5c368ea51f794556224a49b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 211.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 aef592c3eb6e19b095d715bf38dad4d3f286acd27f4f2c8093ea2b7d91ed92fb
MD5 7f44435f9baa16eb9e3061f706b300b9
BLAKE2b-256 54b62840c7a216fe33bf5f594a5db3f41026899eb68adc8424e8af5f06fd2d4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp312-cp312-win_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 223.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5a1d18fd51bb8b3d22f89cc84a823b21d996f989c4024da45696cbd7f5b5ec88
MD5 32aea46e022abbfc66c436afb7465a6c
BLAKE2b-256 3830dd98789ea4dda749cf78b881a46131429125631eaf23be911a2ed473676a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 209.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7e70dd7a6eed1fb8b7f0739e02d92fac91bdb59ad4e2c4f31af174c03a38e673
MD5 4034341ef5bdd1e1e6b207f790e4cf42
BLAKE2b-256 71b37ed9174d9c6ccf334844cfa7ac8fd74d4892694e40e2dee7da6a56e29072

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c58135d0efb07aa6a4fa995dd42a883d5bb4380ac2ba03cae3e7e835eb29855
MD5 aa83d96a474e621e86ac0aedc7e511d3
BLAKE2b-256 da46a148fd05d95c3da32296ef64fc343106147726b3ea33bbb22878af9bc43c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be275556fb2ecd158b1143283fb583c1133d1d17adf692cacdf8390a14555c13
MD5 3712b847557c6675b83012640879767f
BLAKE2b-256 bb9e9bc01ab834b575aa89a49406e2f1a8c009d2aa38ef669c9faeec1a7a5801

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccc5f48981ee85cd86a94d18f434c79d2aa623668b0480861f242685babe7d1e
MD5 0c669463cd8d8ec3c860771f4ff7b5f2
BLAKE2b-256 ee1cab8c08b62a127023545bf97e330f813dec9391f72703f6bb7e4feb040e91

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2e0b016d19342999ea73bccc1a2e334c9b91c5d34b0fed051384e36013124cf8
MD5 f3a84cf9f9faf951552df31627a84a60
BLAKE2b-256 d15f0757d882f8fa5e9fdb7385082908337ccb768ee3cb0fcfde3415288245df

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 99f97a37e85c495bd1b7270ac4b92eaf41411791921b1aeb742bc36d03a76378
MD5 f13a5d15096c2a38adbcab3ab781dfad
BLAKE2b-256 6085f12393e3189f856303536a224d1e0a03a009ae8a4d75b92869dca281c74a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 211.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 69a28c22f65bab6f4846f5c5d69f82a2ba1acf4603a3068cb5ed09acc00ec868
MD5 7ff2f00c5586a3722f24a34e397aaba5
BLAKE2b-256 73e4fd3c9306165dcd4b79890e95646257c6bdc0dafa2a3ee93b961d798a6ab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp311-cp311-win_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 222.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 714f2dd9b7283f2aaa447749f81a824511de7daf5fbd6ba14b7e4a45ad9f89df
MD5 0c9b0acf962d6f59389ddd73fdb9ae8e
BLAKE2b-256 f6b932bf407baac82586942cb6f96366378917c7fcad704860a40da5df3178a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 209.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a30f8ebff7c9c391408ade77af8cf99c19c33a4eaa06b94887bf91c59bdbc34e
MD5 8d32a8c37926de13b55820c8dccc1ea9
BLAKE2b-256 2789136ff26c25afea92b88fe2257a64e55181519dacab124e677d1dbaf9a875

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bd25cf1176170dbf8008c96cb3708f23fc5dd0ca162f76e5b5fa21ff2fea3a1
MD5 80d913f5a634588ab793a3784dbefede
BLAKE2b-256 31fd6197ffaf9b856abd58faabe5a0a57b0542e102bf8539ad43f20a790b4864

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80242c4bb9cf05df82b9839162e3f6a6bfab85f9dd4e4c40f48f29f05f4130c2
MD5 c9d96cb9323dd949e2535bfbe9a25d57
BLAKE2b-256 a8914f1656af0623acd6b36ee45a314e78e9d414bb9feca7f942226ab508fa57

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac5cdbe0bb985f4bc4464522f68ac86f1c4e13e5385d19d65a7ea5502823ddfb
MD5 3b39e364763687a1aaaeb755ff294ca6
BLAKE2b-256 f3298398fcdb3786e158555d533df2668eb80864ab955de1aa53f404b49ec4e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cfdcd87dd174f527494306116709a12853aa819acdb1e578b77e0eb450a4e556
MD5 b2e1876eec2bdb3401a9c0bd5f68fc9d
BLAKE2b-256 0561be67eb34e6a2938dac48d21625af293b6ca48b21a6d8a3b5f92a3f04c522

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e3c5ccf2ee07e2e8b0caac81392d22db89de3695cbc5ee714b8a3f69dd6a52fd
MD5 b95c280e0024618ba5f8720c992d8009
BLAKE2b-256 3cac42b8c5f59fd014fd5ca3336ea9b1f251f553afc24f52668f549a11c00b47

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 211.7 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 cf1c4e29474a90434dfcc4cf73e607d6e3bcecd27927c24da0e0bdbdc99497a7
MD5 1083809913dbae5aae8e3684bc7c0ed9
BLAKE2b-256 7d1a626d23833f590d91a0cbe5dbcac56126ae432486632c35b449e7cc0b9735

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp310-cp310-win_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 222.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2cb6161b6237fda8e29a8d16257448ccc49914f899d2eddfab2adcaef56c20c6
MD5 5dbae4acae625edd516402ec77d8ca5b
BLAKE2b-256 66b87eeb636d98a79f4ae08add2b9578862bfdb1f151b1fe9f9ae38cc5f6e0d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 209.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a46a8bf6886e241d5d02d166656ba3cc9df8cd7ac1e2eb146dde163bcfde349c
MD5 097589df2d70a1b9b14aab7b3e8cf82c
BLAKE2b-256 4d491fd5deb3b069346c83b3981e723dfeb3230af1a35293950dc75d6772a28d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a031269e0152e5353468f681dfe46fcacd11825709c58f697b4f8a916e45e98
MD5 2e0a9daf96b23195081def3b18e81693
BLAKE2b-256 fbeffd9a3d1f411c5c1a270c61358d0a4fb32b0b6692c103873b3fd78a009478

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af60a0d424b5bbed880d3124b6bd56ae988fc85e49433027ed2b5b880b03e74a
MD5 6c174763dbf7bbade955871e0e0a0181
BLAKE2b-256 1a5f60dd5154f4b77f27b25f43fa1012c720c8e69b20ca75d48660d68fff2ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 574e8c761b66a7ed1a562e0ec53de190ee9610dd1363b403601f875d67b89391
MD5 53cad2fa35cddc85174e6d620a278bda
BLAKE2b-256 976a69873a81140cf09a9e8bc740c443dbdd7634676c61d7ed47f75151c8f978

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37de09f3aeb3872cb90f8b020d0fcf0f2fe2723728c042dd8735d699303de69d
MD5 da3787dd77698b2eca985c3818c2c608
BLAKE2b-256 4c4877540192ea59b57dbade42c6aa80359fcf5b3f0d9505fba958c4bbe9a764

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fa79899898c0056ac744dcf936ecd96b7e316a0cd3b9ad19da262674b9643649
MD5 951f737a9f6a0ac52824fcaaa0493578
BLAKE2b-256 315bf636ed696b29580cf51bc4fb1be1602448cc5d927b9f491fb7a8f7e25b9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 212.1 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d57b029eb1d3aeec7e00b1c8e3a83b0c11f5937e3d4644c82e82869c2dba119f
MD5 ed74e417fd176c9f41d6754c57dd3a93
BLAKE2b-256 f700ca7188a6e048d444d536491f9492f0a4375089daa8e812c67f3cf96c808b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp39-cp39-win_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 223.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3804bebe847b2f63b396fdbd7839678bfe72a636f095e56cdbcccaf603b44bc4
MD5 89e024ed5d5bd888a993954a45b7273d
BLAKE2b-256 085e0c0a5c13365a0c80a6275f817d9c85608277cb356e175797cec92bd0531d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 210.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 342e131455920678eafc7c658b7fc65d3ac3ae00f0124f22dbba72523213565b
MD5 b1c3745d3ba11c3ab91b0fe4788e3a05
BLAKE2b-256 e654db349d7129b54c63f84098a43cb4f4e5fa88f57fdb01acba000017000d52

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2639db4ca7c0a161372452d079d5f5a1e33e0a2c4b6bc3cf9e1d51273df05a1c
MD5 b5c136636cc60edfb07ceec39013debe
BLAKE2b-256 4d4f6be6eef3744f7c644ccc578d167979c885992e8d4be96b5026217a444d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7bc55ee574a8425ce4d5cac37e685424eaabe2be31bf8af73d193ec0cdef62c
MD5 c44f78a27eee924c79067242cd676482
BLAKE2b-256 caba428adfc87dfba4793526c9e92b8c72dd923cdfab1d912a1d669ad4b85a56

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4dfe2a9e30041b620587715b005ce8ad5dfd04ac825671fe9c3ae2f97c0de2c
MD5 088227098719c2811334155cd8570511
BLAKE2b-256 a92eb56220bfda095cf98045f850823658d0d11c464133049a1c7b3fe3e0eeb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac80f4f44205649dd9fc6c9b86624a64c990b5498a8c63da71ccd8c088981d50
MD5 77bf0ba53a68cce29b7d5165d066fd8c
BLAKE2b-256 e113f3bad45eeb1be18d21bb7cd3405f1cd5ee5b07bc44dcf5df8f402ef1636e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fbcc0b357acaff4d510f31d3e939a5dcc05a550c54513710eeed46bca5fbc102
MD5 72bb6a66df2e76291473a1a74a8306e8
BLAKE2b-256 e494969bdcdc677cec7af7836b73351644b3a0d9769bf67aa8a7ca11b8a4a40a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 224.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7ddd715b46b5010c695404e3a229759c49daa6ce7f9eceb143f40590a63d0b74
MD5 fd0757c392aa6320487fdb37e67a2d2d
BLAKE2b-256 d142496abb5b75d247ded3206c6204111e2220db16d2299e57a74f14fe0e77ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 211.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ms_entropy-1.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 042dff0b7609a4ce87acdb09f6d0fff45bb9571b99bb2c03580ede17e9dacfc1
MD5 1424d49c3b3c423341d23e6184f43870
BLAKE2b-256 8eb39a036225c1f6bf9fc938ebe427d4670645f96c12189556c748357d81b137

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp38-cp38-win32.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 125393a3a5266ec3a2f0fced72cbd7c35bf0006ab8edbf652783fbab10c75dea
MD5 4d7c09f9ea3dcba889318618123f46a0
BLAKE2b-256 7a8bc958d16e81521e8a0e130e78a76dc31bf7f6e7a0368637d0fef0bc4e1efc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 261f2e5518961d4a0e38ac42149e58e7093918874818c77928058ebfd22e90f5
MD5 756fd9567212bbf69fb48ec82eb2fc99
BLAKE2b-256 ced80f3cbcc967c2945277910de400cca167f8cfa54b2856b13c3777f2b2b677

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad1e5a2f550419f983ef2863cb41218f6cd348b760b22e3863d49fc857ae3297
MD5 d0723823b142cabe8551d6dfeff2f85d
BLAKE2b-256 5fad1396da5451ea38135a3d0155ae440c2cb86664ad7269aacfff5b5c72e5c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c35b005fb8599555230335596653c69e30cfe38ebf337b1e31083f362dbfd824
MD5 c96188d0b9c47806d6f456c829155915
BLAKE2b-256 7dc105bde5823a19a9e97228dbce70cb2e77848dbf5b408c91eda6dc27229108

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ms_entropy-1.5.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 405c2b064bcb3f78b1d11ccd3ed46109b6095b0d84c0eb95669dbb2969c866eb
MD5 248e6f6f078e1b2888b224ed3c10ad31
BLAKE2b-256 26d8141f931c9f778afcb29598ae3417a58c4c950ffc90427bb1d1e5767b0e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.1-cp38-cp38-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on YuanyueLi/MSEntropy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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