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.2.tar.gz (349.4 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.2-cp314-cp314t-win_arm64.whl (221.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

ms_entropy-1.5.2-cp314-cp314t-win_amd64.whl (235.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

ms_entropy-1.5.2-cp314-cp314t-win32.whl (221.2 kB view details)

Uploaded CPython 3.14tWindows x86

ms_entropy-1.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl (275.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ms_entropy-1.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (273.2 kB view details)

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

ms_entropy-1.5.2-cp314-cp314t-macosx_11_0_arm64.whl (246.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ms_entropy-1.5.2-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.2-cp314-cp314t-macosx_10_15_universal2.whl (373.2 kB view details)

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

ms_entropy-1.5.2-cp314-cp314-win_arm64.whl (215.2 kB view details)

Uploaded CPython 3.14Windows ARM64

ms_entropy-1.5.2-cp314-cp314-win_amd64.whl (226.8 kB view details)

Uploaded CPython 3.14Windows x86-64

ms_entropy-1.5.2-cp314-cp314-win32.whl (213.4 kB view details)

Uploaded CPython 3.14Windows x86

ms_entropy-1.5.2-cp314-cp314-musllinux_1_2_x86_64.whl (275.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ms_entropy-1.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (274.2 kB view details)

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

ms_entropy-1.5.2-cp314-cp314-macosx_11_0_arm64.whl (237.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ms_entropy-1.5.2-cp314-cp314-macosx_10_15_x86_64.whl (242.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ms_entropy-1.5.2-cp314-cp314-macosx_10_15_universal2.whl (357.1 kB view details)

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

ms_entropy-1.5.2-cp313-cp313-win_arm64.whl (212.1 kB view details)

Uploaded CPython 3.13Windows ARM64

ms_entropy-1.5.2-cp313-cp313-win_amd64.whl (223.7 kB view details)

Uploaded CPython 3.13Windows x86-64

ms_entropy-1.5.2-cp313-cp313-win32.whl (210.4 kB view details)

Uploaded CPython 3.13Windows x86

ms_entropy-1.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (275.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ms_entropy-1.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (273.6 kB view details)

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

ms_entropy-1.5.2-cp313-cp313-macosx_11_0_arm64.whl (236.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ms_entropy-1.5.2-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.2-cp313-cp313-macosx_10_13_universal2.whl (355.6 kB view details)

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

ms_entropy-1.5.2-cp312-cp312-win_arm64.whl (212.6 kB view details)

Uploaded CPython 3.12Windows ARM64

ms_entropy-1.5.2-cp312-cp312-win_amd64.whl (224.8 kB view details)

Uploaded CPython 3.12Windows x86-64

ms_entropy-1.5.2-cp312-cp312-win32.whl (211.1 kB view details)

Uploaded CPython 3.12Windows x86

ms_entropy-1.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (275.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ms_entropy-1.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (274.5 kB view details)

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

ms_entropy-1.5.2-cp312-cp312-macosx_11_0_arm64.whl (235.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ms_entropy-1.5.2-cp312-cp312-macosx_10_13_x86_64.whl (240.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ms_entropy-1.5.2-cp312-cp312-macosx_10_13_universal2.whl (352.8 kB view details)

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

ms_entropy-1.5.2-cp311-cp311-win_arm64.whl (212.8 kB view details)

Uploaded CPython 3.11Windows ARM64

ms_entropy-1.5.2-cp311-cp311-win_amd64.whl (224.5 kB view details)

Uploaded CPython 3.11Windows x86-64

ms_entropy-1.5.2-cp311-cp311-win32.whl (210.5 kB view details)

Uploaded CPython 3.11Windows x86

ms_entropy-1.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (272.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ms_entropy-1.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (271.0 kB view details)

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

ms_entropy-1.5.2-cp311-cp311-macosx_11_0_arm64.whl (234.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ms_entropy-1.5.2-cp311-cp311-macosx_10_9_x86_64.whl (238.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ms_entropy-1.5.2-cp311-cp311-macosx_10_9_universal2.whl (350.3 kB view details)

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

ms_entropy-1.5.2-cp310-cp310-win_arm64.whl (213.0 kB view details)

Uploaded CPython 3.10Windows ARM64

ms_entropy-1.5.2-cp310-cp310-win_amd64.whl (224.5 kB view details)

Uploaded CPython 3.10Windows x86-64

ms_entropy-1.5.2-cp310-cp310-win32.whl (211.2 kB view details)

Uploaded CPython 3.10Windows x86

ms_entropy-1.5.2-cp310-cp310-musllinux_1_2_x86_64.whl (279.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ms_entropy-1.5.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (277.7 kB view details)

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

ms_entropy-1.5.2-cp310-cp310-macosx_11_0_arm64.whl (237.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ms_entropy-1.5.2-cp310-cp310-macosx_10_9_x86_64.whl (240.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ms_entropy-1.5.2-cp310-cp310-macosx_10_9_universal2.whl (355.1 kB view details)

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

ms_entropy-1.5.2-cp39-cp39-win_arm64.whl (213.3 kB view details)

Uploaded CPython 3.9Windows ARM64

ms_entropy-1.5.2-cp39-cp39-win_amd64.whl (224.9 kB view details)

Uploaded CPython 3.9Windows x86-64

ms_entropy-1.5.2-cp39-cp39-win32.whl (211.6 kB view details)

Uploaded CPython 3.9Windows x86

ms_entropy-1.5.2-cp39-cp39-musllinux_1_2_x86_64.whl (279.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ms_entropy-1.5.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (278.1 kB view details)

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

ms_entropy-1.5.2-cp39-cp39-macosx_11_0_arm64.whl (238.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ms_entropy-1.5.2-cp39-cp39-macosx_10_9_x86_64.whl (240.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ms_entropy-1.5.2-cp39-cp39-macosx_10_9_universal2.whl (355.9 kB view details)

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

ms_entropy-1.5.2-cp38-cp38-win_amd64.whl (226.2 kB view details)

Uploaded CPython 3.8Windows x86-64

ms_entropy-1.5.2-cp38-cp38-win32.whl (212.9 kB view details)

Uploaded CPython 3.8Windows x86

ms_entropy-1.5.2-cp38-cp38-musllinux_1_2_x86_64.whl (817.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ms_entropy-1.5.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (817.1 kB view details)

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

ms_entropy-1.5.2-cp38-cp38-macosx_11_0_arm64.whl (240.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ms_entropy-1.5.2-cp38-cp38-macosx_10_9_x86_64.whl (240.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

ms_entropy-1.5.2-cp38-cp38-macosx_10_9_universal2.whl (358.2 kB view details)

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

File details

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

File metadata

  • Download URL: ms_entropy-1.5.2.tar.gz
  • Upload date:
  • Size: 349.4 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.2.tar.gz
Algorithm Hash digest
SHA256 490ef92af254766ec22a995c324a377c4a651c11ed7dbe958a8fda50c00584c1
MD5 b5f749851c1cca4923d816648e01f94f
BLAKE2b-256 33ab734b3183b2c845e1707fd4eaee05ce7836a8e505eba3339200fadb048fde

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2.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.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 221.8 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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 eb9b23091a66bf4b95eb2e212fbdb8afa940f6abad18ed1b24a32e58616868ac
MD5 d8bb2e1f087fc4a7cacb57021f2826a8
BLAKE2b-256 742a34d2276ab7acf971f78bba442455ff4f762ae7ed6fa341ee4b3796147d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 235.3 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 01de4d244ae3e69cb5f5bb0f58dc9dbefbe1281f92c14719f93dfd7384e167da
MD5 4ce45cdf6b5e26c73e6df4551a2911cb
BLAKE2b-256 ddf27009b074b4975d8fffb588cd2ea77ee991b95960220d519a08ba763ff0ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 221.2 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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 34a38bd15ab3e234e3453d4eaee8476bd4ae91caae0aaf9d6a10f2284f20d3a5
MD5 596d62aad406f347d64e63d86540901f
BLAKE2b-256 622776e8012ebbd21f4c965ea35d03d3b278afcc6027d99b9cbeb1c901db5094

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6d4c8938eb0a9c50a8f4d418360a84dc3105861e2152c68744fdbd16db9f9eb
MD5 ca1414c3882ef06c44e5f53a2ea282a7
BLAKE2b-256 6dc174bec51c87eb6a2093c41dcf90a76e4afb1bbffc48f83b656ed63e13dfc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 052fb287dd8dbb98dda2ddc65015b7db7ebe00105d4b90f16863104305686923
MD5 9c253b5923e8ee17a6a7642e0b359f0d
BLAKE2b-256 72d07762833cbd10574f43d3a242e94c691c75b25920f2655418ae9fb60b849d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7220e0886f6f6f1d4ab741fa87f509266dbcea0cbfef28c1e35d00f0d12489d
MD5 75cc4135a49937dfadf5c1f06e04e8ca
BLAKE2b-256 bb322c486f608885f4ad95360b31e1f4cdffc2f6c7f6f6eec3b8938f42938d37

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d45f2af444fb705886fcdd272c9da6dfa4c03226fcd8661c066aae81ec2d40ac
MD5 5c9d37a4fb6ac17f02b83cb1e0b6db7a
BLAKE2b-256 abb52d31e3fba546dcfed04382d9d25ad5a148923c51ac7433a661295cfc2d15

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 73ae1d7bdca275f69752c65dea07d3311d36e3bdfbcce6c6757cc6e34431d860
MD5 9813c1ba1a422bc35ce0fe1f8228c56b
BLAKE2b-256 e442ca59e778b80540ebb01b85bfa7e3e15e80b21328470f2a9a0276c35233b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 215.2 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7758cb3c336fa134c30fd388924917c565b97b3c94686b6622e13f50f9ac1fef
MD5 1fbca7c9b4b9cf425b222a42be2e38fb
BLAKE2b-256 f065bc45416330dddd76b062ca874c0e78d69e945ad58445c47f13a6fc424bbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 226.8 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c5e72d573a20921e818070ba3653ebd625e39603c2d8dfa1abba75c032cea110
MD5 af6584d63a3deb2af6762edc05d6e23a
BLAKE2b-256 f34d1dd43d6911491cd71aeee0b85eddcecea0cf26364671fc5de486168718df

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 213.4 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 43dbfd160a1fabdbe60d99919a5363e454bf182c729040806d0ff8922e51ccf9
MD5 a1061e0dbb00afaa48e68e39ca9ce3e7
BLAKE2b-256 d2c1d738e0243b1bee2da085472d630a4925d2cb0a48007ab0bf85561193a9e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e67801f7956deca4d2e0e335391d77c7c47153bf8b7e2d37dd10f281ce2c1d9
MD5 ee1a6c25dc66959af9000fbab10c8b76
BLAKE2b-256 06dfda3ceb7946e877cb217f6c0c69b298a5b6f04eb06b8144e61ab2623505d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5f3aa822c28b6a06c9d21018dede326fab12eb3735c424df1ead7b384b4ed44
MD5 4ca50e28c331e5ffe566fd11aac047fb
BLAKE2b-256 9d840d68c83b14f050863404654b4578327d165ab69a7fbc3724f1490ed10b77

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e3aa83a65173626f272a744d3ae50e2fc15747d9b95cba9e5470a6a21a16141
MD5 e24e476aaa85237109134fe6d4932a7a
BLAKE2b-256 d151350c85b44f4e6cb34755c7da4097a7cfef220b6ac9b01abe1f69fd7f40c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e07dccf466c0312b3634eee3d5fa17146cd4f97ce1ccb60a6b8784dd6efaf5d3
MD5 d49bdd37f956528a63d6cea8d3aa81a7
BLAKE2b-256 04d08d58f24d8e1ae32fa926b98ba459e8332added16fc06a98db381a1c7fa66

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c57550cafa4c2d1fc14b7d616cba6d645503693a40a4cf0b1afc47e2d8049b5d
MD5 b72a32941f0703a17b8783941a24b221
BLAKE2b-256 a43c21f6cdfbcec2341bdb6e45d7eb938e1aebbf80ce87b7e870d1d3a2ccf76c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 212.1 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8765a57ef375f682165f3f0be29b44774c733266f2074130dbf0a9712b97d1a8
MD5 a88698db546e73712e46c57061007ac3
BLAKE2b-256 be0fe6911714b91ae48541d15cc0108d87102530d64d5f316844fbe85da6c060

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 223.7 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 92b7c1a751d33e5f8c7ab3873b7e1c59331253e02e528f70914f227af0bce31c
MD5 40e420ef52b4cb6b7b3d056de430fba5
BLAKE2b-256 568730ef52b8d1c68d3413db86119f8f49bc1a07459cf1fb8cc6aecc73563b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 210.4 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6c278f13acb973021ae8b4709713f4af0eb16559df2d84fa737a1d950e7cd70d
MD5 784a17b462f23c9667643f723233e9d0
BLAKE2b-256 7a35e379621be227238a3002bdf116cce55d72e3c2555b35a3da4e369b47381a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f074f9e519641534c08a01632439e1c42b1d14ea9d2c8f96f880392cf7c70f5f
MD5 596da80becfedc4c2b0282d6c03d185a
BLAKE2b-256 2bb6dcee4ba8243292f3d8931125232baf46ae9756b71b64838f3888d2650289

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38c0e1ed66d66abc292dfe954979dd273a0a0d9fe51618c8ee8bff1d2d005bfc
MD5 87e0db97c3744fe7b87af1e941bc83f9
BLAKE2b-256 12d861fc4349180f649a073a2a3d027068b60614195d5a6d7aaf6bcf7fcf965b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9ca7063f09e0f8afe899b596f5755557f2af5df3a16cb2f26e6548556ef602b
MD5 1ce3ec92e40db942a6439fda91a159c0
BLAKE2b-256 e1e0dc36bd876f8009e015506d8787815afa5df38c8e8f92b6fc7ec9f78cad27

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 05ef621aec5923866bdff774d34b37ec66b30e5e45861ad032abe5022c5c754c
MD5 d973a15ee3fa4c739ae233555d273bf2
BLAKE2b-256 7b30e06ee210922ed3cec7b53a201fc3710e948b267248708da674111abb4cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 cfd961ebd1c045ee35b955c5d77b867fb5893faf90a1f8d200c43e0255d939ee
MD5 1adcf54826438f6a13a2cf03ef0f23f5
BLAKE2b-256 51a46b4317df468dab01ad5b8c2470c1a21ed988385c455df39eb99fafdda5c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 212.6 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7f135babc6d47167bceaa8ea443bece95cb7cba938432e63bb9ba5f04a3f8070
MD5 bcbf15335b2d349702629fe5d347c167
BLAKE2b-256 61b9c8a425145d4741cc5990bcd0b227f1ce9029eac50d7d580aa0a414b69eba

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 224.8 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b25b8933618e557db8c7f1b5e9e09adf2a8bbaad8452c0956f763223d3ccfa5
MD5 8ede6cd9a318ba58a1b65e3db307e39e
BLAKE2b-256 cc7797fb0db03a395b87cbc4f2fb150dea60be2213ddec765cf704bfbde6efd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 211.1 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d76b33b3926a679598e8dc8674aeafbeaa3314a21d628002415a1482747f7daa
MD5 2036d4f4a8685929d0946c15f1c7f118
BLAKE2b-256 483cebceb88ec67851957f8fd5a06e5e0c1ce30d32baafdbf61151739894744a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 686503613284b1c059b33b47e82842f399b503332aeb0a2a940dc84bb292d866
MD5 8f7a1a5552db24a19c1fb1b00b5f1061
BLAKE2b-256 44b643034ae30596555e797d5e744efe2c3fa489dfb5e9169faf57ebeaea7eb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 692bb61f5e61f2189d43aba53a67e62476ba2a2b6149bd503ffce777dbd29d59
MD5 4e9d5619bd3c52a04f029bd19a1a9ef6
BLAKE2b-256 a473cb6234b4874fcbbf7488992da9adf0e275ba6f62424e0ac58a641cb0d800

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fc2e88238867d30e848f8087188e2bbe48128344ca888bf42b95d9b2749a9b2
MD5 95cd7abd7679cac630311feb85b6bde8
BLAKE2b-256 abca0b1e35cda488e72ebd634e379e0de4578d57fa0288fc01203608a2721d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fd3b6cce4e6ad63cfbe8d0be8fc99c9de20de5b55d7ff41188a4f954abc5d931
MD5 cbe2f5f8ffe3e730baf7e626e15e2ba1
BLAKE2b-256 a8199090ac9b6a14c837635b5d03f88e8a0b09e8a7be05fb65e3aeb1f52a49e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6a03afbb553ac426d9f29d0b430a550a6fb9ac03381d0b18639766c9e29af44b
MD5 07f5f3403ca29c566812e6e69a05ec4a
BLAKE2b-256 f8300a1835df003bf58944d008356af88439dd2957ec0dde8075df515eed003a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 212.8 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 365de3c05b5cde68cce4379d0675a6247484057814fa0228fce5fabe806a63df
MD5 8d70d76cf3edf44b678b61c8dec218bb
BLAKE2b-256 80e061c12c7fed6801500891443ce13a8af0876a8d85c67f631ee98bb3111116

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 224.5 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 209adc28b7093b5d7efd62e2849612ce197315ef28caeb3d6da92ff6515bf8fa
MD5 ae85f90e93788ea929a073d6f3258a6a
BLAKE2b-256 ec2028ab3e1be99c942d717b0d9d6acd5558df6b1440522bcfe91304121e8a6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 210.5 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a1694fb5204553609a08e2655c08582238534425dfe58b1f1ab0e4500a2b0104
MD5 d1ffb3f570fa3d36cfa4abb9a4557130
BLAKE2b-256 b20c5e61c5ca74f52291249e18862e69898d6fdc8bf8219203496fbb7d8f20ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b24380703faa6adbf3cc1fa6bdd479b8808e66bf3a77624a0f524ca0c5a6f7e4
MD5 862ddc47d0fcb864ddd177fbac5f41c5
BLAKE2b-256 755ae388b6ad9cc456850e4d7f186f70ef01c5e809cb919b19ed40971968a44c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0a9a83359118f0fdb3260e1a6ba891ba51f76523bbfa0310e065c9ee5b9e7a7
MD5 5dc288cd5f5146a72b03555ac375b55b
BLAKE2b-256 028c4fbe1c243f3f1d035e5be11e7812fc8ee3044765b2c25eeec1b892086f15

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46680e1bf630c5c09843605c0ed0dc9b5863d36dea10208d4bb8cd153f3b52da
MD5 58bf7d9d71d116d3b22d60bde7ac86b6
BLAKE2b-256 555971d85574a8b58f2dc79b768113a57f5102dd672e402b73e177b060fd8994

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09f253734b648226d2adfac4ee43af5ffe015ab7fad77bb6526e8bd6d837d8f1
MD5 5a76c353168022e86c458a6255ff8176
BLAKE2b-256 7dc795f0c2e8904253a642d0ce3d6e9e231f3567d6b8fcc0e205ae75f064c8ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5add411f7474a0ba0d9a508a3ba9461e16f0263323a6c9c40d236f5661ccfc0f
MD5 f2cd3ec61b98574c04025cc132e5d7d9
BLAKE2b-256 8fb08e7c0299a379e77584ceb3fcdb764924967f48516a10cc964e36fa16085e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 213.0 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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a98bda012f7a4f592a74965e6df4d8cd34896eb2268e7b1ecb64c54a7ff9083e
MD5 063229045586e0cb5982a40ec8b0abbb
BLAKE2b-256 2814632683c9598565a79273dc927c163bd78fa2739a87bf9a21a6de16987771

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 224.5 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7e53cff18c39619f6179ecd47142301e35aa629ccda4ee172c6b20ed54d11f64
MD5 57499396306160a753fb9a35c500d7b0
BLAKE2b-256 563d8874dac83f26cba2dcc9956557abdbc0e4283a85072dc3ac7c7d034cffc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 211.2 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f9d7a87e17df02db199b4cb454c1faa856f302981602bc726eff4a7841dde045
MD5 3b0677f5c7d15629046d1c91e7afbb3a
BLAKE2b-256 906b0e789f03955ad0d98cb44e9f3348bffecd013629f15765cc33ca2f9dbb8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6386a808f726cfa14a13e515e5992ddf0526cce2c3c169650741fa879e2af48
MD5 547d00d57e5de2829ad48742a3f62c75
BLAKE2b-256 98eb49b9a56822154f0bed33d3461165a1a04823967fe6a9fbbc1600e5c4a956

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae528caba800c32a962002fa706fac2e5e359468123edd7b29ea1dc10eb35e31
MD5 b65f961c0af7a3f25318cd5e7604f433
BLAKE2b-256 0443540ed3f0937e7a8f0cdf8e8656650434094eea4cefdbfcdff40b6789755f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 727ecb2d76387946353d978cd54b6175fbb38e5573c820933f04e6f1437a2c50
MD5 e542debe42701c415d8668f29aa2186c
BLAKE2b-256 026561696d47e43b0e2f79535dc412c5ff49e10696310f5ec36f9afbfac80ce8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ee9e332c878947fd2f68dba75e6e9d450cb472a02d859ca1b39f1819e150fc6
MD5 f202ebe0707c530ef6ec4cd11d9cd60f
BLAKE2b-256 87b9c05a58e237702bf6c1bf7e3d1dbba62ae127f643775fc94c199097d7916a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 06bc822f9d53c0d02707d7c087e80fdee611539c30e68636bd880bf904f20889
MD5 0c784c34f4b5f517b6619fcae4e75f97
BLAKE2b-256 c0d8b45e0ff4688a43597d8877846780129b99268804183f3cc771ffac4a182a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 213.3 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.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 539a82cfff9d92c500a35a82095b31128acb824f2b24eb60e2dfc01bec39d2a5
MD5 5d53642f26240a68f1bba35858555392
BLAKE2b-256 0cd185289b6fa73e465d3d9d3ab3a3c6a1ca9629c9174bfc106f3d5b011fd367

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 224.9 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aa60dfdb4839e053d22deb50fcae029e1ecabdc93180213354fce0f7b5447544
MD5 7b5403e4a68dcf260b66104dff3d5666
BLAKE2b-256 62e6f92552a86649a1413dac9fed192bc42e57b01c12a454843a35982ce3915f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 211.6 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 33138763d9425971b0d6520d370c3d59ed2eab648efe301f02f60b7021e36da1
MD5 845f800efbc652b2ea08adbe5738500a
BLAKE2b-256 cd13186f5f4ad46aa211b133c3802305ec51fe52cf072c692610e5c06146ff1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afd3397c4c4cb129f657fd4687fc0b26b889ca780224db8c3414c2815623a768
MD5 ea6a1d03be3e15c96b55da6effcd6e95
BLAKE2b-256 28c8106fb5623dd40ed8dce2f41a8cad10e2bd6c18a5b17f0b31ae976604a075

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb77947edf060102b13c19ad3af9f892b04c60b07d16d0df2b64756abb223ae8
MD5 10c665da921bf9967380210cfc436f34
BLAKE2b-256 83ad2d89764ca9ca60801684f42052c692641554b12e9e9c452918f1237c006f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff443ee2e22bd9c469f8ec801f8d24992c917a5fd63f96cf81e7dd651e52a617
MD5 7daaf59710ab1d01e520eda420b1659b
BLAKE2b-256 e803b2c7a6ac0c4442228c2a8873c6c05da0932c5c7934799ba65b8361991d5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b18ca1018ee87ac58ecab7e5662ce1766f5da8f020a71d7ca1b13b4d61f918a8
MD5 10ddc31a8ba81c690c66f06f4859c8e2
BLAKE2b-256 0f50ce2b372903d817bfd5d7017379eb35e74adf205372a713bb4105862ac689

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b8fe4899dc5da9d1ae06cafe3a4247836dac506a7b77991080b9830b3cb2d869
MD5 2a6a8bf1facd02b85eb97b645a80c211
BLAKE2b-256 05670e3f97c627fb508a6888a7e26248f6e15c4e24f38489507c560f886d92a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 226.2 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ee088582aecdadf941e32c2f155d38e8c71ca1050dd65c283c85f9dfed95fdee
MD5 6baecf3e6d80ddfa827f00fd73f73e46
BLAKE2b-256 a45dc86e77970406d6d0fa681094306c83441ad89448143d9315400396c49e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: ms_entropy-1.5.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 212.9 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a1313804f8519cb45d29b7129bb43bc4ad906e2529af0f58c8c76e8c3cc0d310
MD5 9297f9936a8f5385361571c546382e27
BLAKE2b-256 b83638e28c62981ddbbbf1b052f93df0550af547fd267c5316a3d1c93532913a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93b1bee5d82f9a9fb497fff0d561327433a71c67e2bedfa82768f710d5faa600
MD5 0cc458357f7f04d75bd7bf173ed08cd1
BLAKE2b-256 ae46a5c10a67135a228f310963f9d93dbe93217bcc00aa01e44655e76892dca1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-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.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa656eaf7d0daacb448981d68dfdd63a22c5e5086bdf723c64f909d244b8fc6a
MD5 095a2b80b0314cf5ab4bb6119d612bbf
BLAKE2b-256 a6ade3e8376bd38668481c60dfe2df30c170a35058c647d9dad05135a8c5571a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d50ae94268c462e682a2fa76974e74f23948301119d8f03d94bb426974f12fe9
MD5 5c7aed5d3679223853aea05f96fcebbe
BLAKE2b-256 7ea81144d293af71ae1eca79753d03c69ea8ec1d9bc83b4c71ea27c4f778ba06

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8982ebca0a491bd128a446dd0c27131656c039576b09c8d8d14eea0b9b817ec4
MD5 b09ce1ac113907bb5a61e6c1f9e522bd
BLAKE2b-256 2e82ba9e73e7f55774ea02e7d35663fe787bc2bdce0bd2f228c4ae92f165ca67

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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.2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ms_entropy-1.5.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b6644508f80ec352b1ee095fdd0c4accd57ac51caefa7a0f8033bd095368ae80
MD5 d0bc02eb34ad071fdb2b15da11a85f5d
BLAKE2b-256 fd7a7b49f6958fd3e901ac6f90ab6d26a1da5d2d6b0272f49101d87787aefa19

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.2-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