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.4.2.tar.gz (310.7 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.4.2-cp314-cp314t-win_arm64.whl (175.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

ms_entropy-1.4.2-cp314-cp314t-win_amd64.whl (207.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

ms_entropy-1.4.2-cp314-cp314t-win32.whl (186.9 kB view details)

Uploaded CPython 3.14tWindows x86

ms_entropy-1.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl (233.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ms_entropy-1.4.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (231.6 kB view details)

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

ms_entropy-1.4.2-cp314-cp314t-macosx_11_0_arm64.whl (203.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ms_entropy-1.4.2-cp314-cp314t-macosx_10_15_x86_64.whl (209.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ms_entropy-1.4.2-cp314-cp314t-macosx_10_15_universal2.whl (331.0 kB view details)

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

ms_entropy-1.4.2-cp314-cp314-win_arm64.whl (169.6 kB view details)

Uploaded CPython 3.14Windows ARM64

ms_entropy-1.4.2-cp314-cp314-win_amd64.whl (189.9 kB view details)

Uploaded CPython 3.14Windows x86-64

ms_entropy-1.4.2-cp314-cp314-win32.whl (173.2 kB view details)

Uploaded CPython 3.14Windows x86

ms_entropy-1.4.2-cp314-cp314-musllinux_1_2_x86_64.whl (234.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ms_entropy-1.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (233.6 kB view details)

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

ms_entropy-1.4.2-cp314-cp314-macosx_11_0_arm64.whl (195.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ms_entropy-1.4.2-cp314-cp314-macosx_10_15_x86_64.whl (202.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ms_entropy-1.4.2-cp314-cp314-macosx_10_15_universal2.whl (314.9 kB view details)

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

ms_entropy-1.4.2-cp313-cp313-win_arm64.whl (166.3 kB view details)

Uploaded CPython 3.13Windows ARM64

ms_entropy-1.4.2-cp313-cp313-win_amd64.whl (186.3 kB view details)

Uploaded CPython 3.13Windows x86-64

ms_entropy-1.4.2-cp313-cp313-win32.whl (169.8 kB view details)

Uploaded CPython 3.13Windows x86

ms_entropy-1.4.2-cp313-cp313-musllinux_1_2_x86_64.whl (234.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ms_entropy-1.4.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (233.1 kB view details)

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

ms_entropy-1.4.2-cp313-cp313-macosx_11_0_arm64.whl (194.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ms_entropy-1.4.2-cp313-cp313-macosx_10_13_x86_64.whl (202.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ms_entropy-1.4.2-cp313-cp313-macosx_10_13_universal2.whl (313.1 kB view details)

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

ms_entropy-1.4.2-cp312-cp312-win_arm64.whl (166.9 kB view details)

Uploaded CPython 3.12Windows ARM64

ms_entropy-1.4.2-cp312-cp312-win_amd64.whl (187.2 kB view details)

Uploaded CPython 3.12Windows x86-64

ms_entropy-1.4.2-cp312-cp312-win32.whl (170.5 kB view details)

Uploaded CPython 3.12Windows x86

ms_entropy-1.4.2-cp312-cp312-musllinux_1_2_x86_64.whl (235.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ms_entropy-1.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (234.3 kB view details)

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

ms_entropy-1.4.2-cp312-cp312-macosx_11_0_arm64.whl (193.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ms_entropy-1.4.2-cp312-cp312-macosx_10_13_x86_64.whl (199.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ms_entropy-1.4.2-cp312-cp312-macosx_10_13_universal2.whl (310.3 kB view details)

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

ms_entropy-1.4.2-cp311-cp311-win_arm64.whl (167.5 kB view details)

Uploaded CPython 3.11Windows ARM64

ms_entropy-1.4.2-cp311-cp311-win_amd64.whl (186.6 kB view details)

Uploaded CPython 3.11Windows x86-64

ms_entropy-1.4.2-cp311-cp311-win32.whl (170.2 kB view details)

Uploaded CPython 3.11Windows x86

ms_entropy-1.4.2-cp311-cp311-musllinux_1_2_x86_64.whl (230.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ms_entropy-1.4.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (229.3 kB view details)

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

ms_entropy-1.4.2-cp311-cp311-macosx_11_0_arm64.whl (192.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ms_entropy-1.4.2-cp311-cp311-macosx_10_9_x86_64.whl (198.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ms_entropy-1.4.2-cp311-cp311-macosx_10_9_universal2.whl (307.9 kB view details)

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

ms_entropy-1.4.2-cp310-cp310-win_arm64.whl (167.9 kB view details)

Uploaded CPython 3.10Windows ARM64

ms_entropy-1.4.2-cp310-cp310-win_amd64.whl (186.6 kB view details)

Uploaded CPython 3.10Windows x86-64

ms_entropy-1.4.2-cp310-cp310-win32.whl (170.8 kB view details)

Uploaded CPython 3.10Windows x86

ms_entropy-1.4.2-cp310-cp310-musllinux_1_2_x86_64.whl (236.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ms_entropy-1.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (235.5 kB view details)

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

ms_entropy-1.4.2-cp310-cp310-macosx_11_0_arm64.whl (195.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ms_entropy-1.4.2-cp310-cp310-macosx_10_9_x86_64.whl (199.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ms_entropy-1.4.2-cp310-cp310-macosx_10_9_universal2.whl (311.8 kB view details)

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

ms_entropy-1.4.2-cp39-cp39-win_arm64.whl (168.2 kB view details)

Uploaded CPython 3.9Windows ARM64

ms_entropy-1.4.2-cp39-cp39-win_amd64.whl (187.0 kB view details)

Uploaded CPython 3.9Windows x86-64

ms_entropy-1.4.2-cp39-cp39-win32.whl (171.2 kB view details)

Uploaded CPython 3.9Windows x86

ms_entropy-1.4.2-cp39-cp39-musllinux_1_2_x86_64.whl (237.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ms_entropy-1.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (236.1 kB view details)

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

ms_entropy-1.4.2-cp39-cp39-macosx_11_0_arm64.whl (195.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ms_entropy-1.4.2-cp39-cp39-macosx_10_9_x86_64.whl (200.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ms_entropy-1.4.2-cp39-cp39-macosx_10_9_universal2.whl (312.7 kB view details)

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

ms_entropy-1.4.2-cp38-cp38-win_amd64.whl (188.4 kB view details)

Uploaded CPython 3.8Windows x86-64

ms_entropy-1.4.2-cp38-cp38-win32.whl (172.5 kB view details)

Uploaded CPython 3.8Windows x86

ms_entropy-1.4.2-cp38-cp38-musllinux_1_2_x86_64.whl (770.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ms_entropy-1.4.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (770.5 kB view details)

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

ms_entropy-1.4.2-cp38-cp38-macosx_11_0_arm64.whl (196.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ms_entropy-1.4.2-cp38-cp38-macosx_10_9_x86_64.whl (198.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

ms_entropy-1.4.2-cp38-cp38-macosx_10_9_universal2.whl (312.6 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2.tar.gz
Algorithm Hash digest
SHA256 3da76612d9f76b9c9834da5987a71c2d109ce5bf2dfb4a8b02ba8a214347820c
MD5 963f86c8adebc84951f3e2cf9b2ba7d1
BLAKE2b-256 8053c20e036fe5be027670bae30da78cc0cb5b8a41ab6e1cddbe92674fb51f70

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 275563661d2ffdca48731da6adbda6720b22c9452ef16252d644f40a0c8e3304
MD5 981fd65441672a4726cb3db20bd4ed46
BLAKE2b-256 b23c881e35c5580684bb4b5b831b1c86270a791710310ad3d88571215d143808

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e9a87d7ee8a0d1fcf8265b42676a2d001fc89f2aadabf4820df19adf694634a0
MD5 55c45f4202a94661d9a225b6d740156e
BLAKE2b-256 6f039f5822b069e97e800c89748e63becc5ddac67924a8f8671fb6e9b5e8320f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 15f92e3a46b0d97ae8ea0aa1c2c4549aeb0fc0d368b2681e3864302318b7ca7b
MD5 97940e3a7bfc35ee1b22483a7f102f2d
BLAKE2b-256 7f56ba9465dd266b549a791a43d8841f8bd12208e19c2b9cb39d39676ca7f7ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26928dfa08037ff095304da7b33ee0b50b26d2333436c742becca8fd87167bb6
MD5 a23d16b6af19180fed9031f0dc31bde7
BLAKE2b-256 971d48a82933ab9968b6fa16a18f532d8774c967971d9b09c485eb80436b16f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.4.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.4.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.4.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61ce35f7608de087e6d596bd438beb5813ae898132676f18355cecbad8d1ac47
MD5 f825b86b714cb991ce395af99030f1c4
BLAKE2b-256 74b0d30c45374f2028667fa8c039e248e1e6d22d3641a60f91ad93f3b52281f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 694722ed73b1a433d09552d0145ffb228b7758dd1774f0148e96f8439efca4d2
MD5 4acf7e0fb5082a6000ee82a62807447b
BLAKE2b-256 e968006ab9ac397a00226c5b96f251be829e9c2353cf92c3dd7ffae5a5037140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 105c36ffef2aacd0baee7ee2a159903a06c5f18f988509e513ec41a4cc54f138
MD5 6f530029eeb5fe6ca76cdbfccb5d422f
BLAKE2b-256 4372bb0c5fa38aab14c96c766b346d4282b7682feaf4804981b8dcd1f37c8971

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 934065daf37abb06e836e3e83b1e9eecd11f7b8499519871b12ee7576550bc97
MD5 bbdf30a49fed28bd9701ef56ec845abf
BLAKE2b-256 afefc37347bc46f32d0dac9189d2d35577f24b68f9995d9926c5f1f8c210719e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 07c415b0cd565fc25fd818e2bcde489353843e54188af98df820206994d4d0f5
MD5 a6cddd8696acb895c254eb6716b2afd8
BLAKE2b-256 af0b4657cdd708fd3f7481161895b0a57d72034581b572476b7db351603cc413

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6c19975f1a6127eb0e54b276d89d08f9740717a4eec42304e386edcab05dbb8f
MD5 9a6dcfd8fe64c3e4520eb010efa2f80d
BLAKE2b-256 e5a2966774c6d1471fd04e4a7007754e27652af43733e969780ced45f2d7a420

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 302cce1ba5d1e3b3723cb5ee9cb70d18e47fb7b5095a258ae7fd851d1236e996
MD5 9e0b6855a873fe3a45da3e7d80e0f300
BLAKE2b-256 1e771bd7ebd1e8c5c04bb3eaef962bfc00afbdb0f30b7e04553471b9d2f60125

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8e082d27fa85cb95fcd1c84a1cdb381f3ddc61f526dcea221de53f4b628d5d7
MD5 0252d208cdd2b72d91fa77e49ed89268
BLAKE2b-256 6503dd2348470eb7ec02e21db30c3fc924d77ac31698b7acef65ae3d6a344c4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.4.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.4.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.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c477a3829fc92ca8e9dfc57bacf958d4a9b7067238148b50d82153357bdb05e6
MD5 3f0996399a8941e92738d973836e0cae
BLAKE2b-256 db0e45680c3fcd51bb211bb2e106d38893dc8f793f28dd3c5bcb50d2059c6506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9b565ef10025a8939bb73b81aa1dfabd5225f16427bc22016adaf7fb293bd98
MD5 53aadc255f1aed8b2dd831d7150df2c5
BLAKE2b-256 a312b8525e4523a50d209673898cfaa37c5744899a3163e310e159fdf648d11b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a1b678e9966eace5e9d5a23c2212ddc6a3e07e4373d053a1cac4a2916202ac3b
MD5 1f175679aa17af2db633d44b64a7f6d9
BLAKE2b-256 4043d26331852c9ae995a7709e0aa19bda32798457416f06a4752ce753b3ad55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 cc45a5138452a62160e8a015e5f6ba614d1b7a64e1802730b1cc60407e91abf9
MD5 466e755cd63a5f276773e0ea2108c278
BLAKE2b-256 4f7d2b038e315418e0472be728e3c583ef68c1ff5b139a5a90e65ed2a699e343

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4be400c6fa09744a1ef78ca72d9c50238324bcf4f5394c83239a9ac6c6e73b5a
MD5 69e440a1c8ed317dd766b1a725990df4
BLAKE2b-256 df00318efa6ba9774f70b06246b7230eb9ea524b149d42e7392943983375f8ac

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d6825275c58142622602adec1d47c68ba457bc4caa537888f7f1dd0ba2711667
MD5 84e5f321023473075f3ac5d18e235a8d
BLAKE2b-256 b77bef6636014d27e35b4570e2aab89db0e7ba6eabf037d8421882f247dae49b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1dc90eebce81918169f394977afe951699e4fe3fcc80a1f74846153d3f226d60
MD5 812382fdf5aa6d439b175425cfede6e6
BLAKE2b-256 f60930907af83a6d71fc4f37b18c9256afe5316a0bd7af46092782e3ab27d961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4161538d53f29cbd3a59a3ff1359fb3b4f2aadbf7bcb6bf5957d8e09011ac5d
MD5 fd8d897f9254913fa9a099960142b4ca
BLAKE2b-256 596669fc66572f2697926dda8d306907a94fa65de42c5cb40409a18d3518739f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.4.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.4.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.4.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79841eea0e1b0929e9ef77be7b2594d1a1c1b928746eb9176127e4f4b8808585
MD5 a89eadb44fd68d6b18e5d4ea00364320
BLAKE2b-256 9208b00d25b054bdde8e47b0209650219f45209ca6b3dcad5696fe45e59b330d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2746096db556a4ee6e62ce362e4725aac4c0e4fab10994164b4324f06e23a4d2
MD5 46c1a202c77af6d22e46931565f426e0
BLAKE2b-256 be725ce99639e4077b159e281f04c8d87ef81437fa304b64edfb3f90b99a268c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a234ce9d2505797cdb8938ef7898821d3b7fa904cc4119e396ab146b3e249499
MD5 ea2d8a5e93d7eb641238f3d960b67415
BLAKE2b-256 405256b667b3afd62cc66ef41c417f1565bfc8c487341d4f5d88c08879666f84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9d9ffd75b90223180e29635a55ad089a1f8d23e7cbe77560f909dff349f63fde
MD5 c52223c11454d47c72a9ae28251f7234
BLAKE2b-256 4f9fc81cb4194e154ed3c94cda46c358c0ba977a0ffa80c3afb9b9d06c3dcc4b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f4a868a778cb54171555742c28ed2ae172c980bbe55b6c1d56209ca7b88d9f5f
MD5 4f93734ef31b435ed04f2b7f801d2bb3
BLAKE2b-256 28ce454f4167b87337b3ffe92ea96ae7749c6e5a98025979c0eb97af8bccee92

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e350379f37d5877ca213c8b5b2ab4927a138a59604e9d9853d8fe9b5b6f3d419
MD5 388891536c9b52fe6271c442b70f952a
BLAKE2b-256 01ae1e7bad5d5cafca719d974dce7c0c1ebfe98b0b510eafeb9907183303c9f4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1c6a22041ac8d8a12a8bb0f1786e186a8722975cef404b1743b5495337cb8de4
MD5 44dcca6b344629e67199d62e7a865fa0
BLAKE2b-256 aad9249763cdcb33bec0aa3673566bc6d16c61ae5cc3d9829125b27190a08251

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04227375730b2aef8df7275bf5f09de16d1079655ff9e33be90cf6af7ae792ec
MD5 7f2993fd23c6407e368eb69e0db98c30
BLAKE2b-256 5447b38e67b54dbdba6fc535e23b6a624ac2dc029e101d2f6bdf21b17d2b39ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.4.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.4.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.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33c52f7ce9ba2bc764c86eae0083a1afacd52617c0fc1d5826b42e8be638620b
MD5 d4c0ecae3c2a3ed1c5732855269d8ce8
BLAKE2b-256 8ee4467c8804fe1bb76b40776dc938b0c7fcd1e46ab9bb03adf70e19b53a34a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 795b96189ea9b4d3095ed5633916928981c89470c68e1dc6f420dcbd23ac829d
MD5 c8d22261fac329f5f8efb9b142bbc9f7
BLAKE2b-256 20de0dc0fc4ada873cb9556d23410df8bfaa51b59688cbf9e7c962c2649873ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cec0f12d8c781248478308b14bea7b65a0b9df249b0a25805ff4336bf1004a90
MD5 9fd7907efe3ed46b88d77afca52b0867
BLAKE2b-256 7d2760b92a4ccb0ce9d3563a95e1200c44f0e5856f07a6f12a20ca840f75a025

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f5a90aa08509191100fdae55e3055b39f23ab663364a0064ce7420bdd036c12f
MD5 f947e42e4bdbe998dde2ec12b6936ce8
BLAKE2b-256 1382ed9b261ca87bf9c97b62ab9c4a7fdcba3125a577333c31665b5b2968fbf4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f53549edaf76a4540017473c15c1dc1219c692af31ac7091beddc374e7c7bf57
MD5 717cec4038a18f5bd2da91a5ae315cd7
BLAKE2b-256 bab40c18a2e409aa4e63b1db5b44908ff75e27e4d81b641e368b72bd939ce2f8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ffd1e0cea2c7683a83fb2f0091673fbb06934436ab96a6652ad63232a744524
MD5 3a7099e65a74e12dfe95b501ca057d17
BLAKE2b-256 49b617bd305c8b68a0041e1586aed3301dac85106e21ed09acb5abf655cc2602

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e712847f18b946effa58030dcdd55ff774722083a3b98de8e9a06bbb11dbc169
MD5 303b32e1d2a9cdb1cb6fdc5132e56a67
BLAKE2b-256 3cf601002a433d5fae581bf48179f5b00bcd9985771d0f346a0cdd3e824ce0d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d4314cd8c02200c264c017a2c179587b8b62b75235238797bbb7c07fd87fa3c
MD5 20b69b4b0a6ad2cedc20410377cff48c
BLAKE2b-256 0aa7547ae934588a4547584a417fcd448e6282aa55b5aadf5570475b82a4adda

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.4.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.4.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.4.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e5c63c93b49e83e382b94c0b48bf73c5440653ca56c31b2e055ad19d7b9fe60
MD5 ce3e19b3e16c4f1e5980b87b5ab902c8
BLAKE2b-256 84645089c47674f76bba090ed532c5be1100a4516c8acb7f91614de05c78823e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55d0c1a1f5f01acd93f3ada92a422e75dc906cddf3e30b41e6f13e9a2dc0f3fd
MD5 0c66b1c2d37da822ac98f46e45e79aa9
BLAKE2b-256 bd2f4e8f67f1d191151b4cad1ff0b4d930038d2bc245e9396f437b9cc60ffe94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95f5ad9d8aa87312274f6dc0bb44ae240fc6adf840bab9b5b9b344f91c0573da
MD5 1c4d82a3b39deba5aba95464586c2f64
BLAKE2b-256 3fc4255206882df4645b5d3cd8ac8332dd5564942d1388b31e7d7de89dcacc4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8aa532c9154c7fa7df1bdf6ce38225499e2711375434ebfea10f1aa34da9ee5a
MD5 f0943cd2b5986397bd63edc15308126b
BLAKE2b-256 1b422e0b5ed2a07378174e6d021c2e85de375ad43b7133826327f3784afd73e3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b283d3c0d3c805338b7377af151a915cabe765a0b61f4ab304334e05e5a505ad
MD5 c302ce16b24cbe62e62d297c1160a6da
BLAKE2b-256 ddb955f875888b8a6c129ada46fb30589b0e282a0f07fbbc77fa6c36d3626e7f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 21b3343006d87c410fa6761d86b18720f2edb4d77d0aa4c08ae7fd68660d017e
MD5 6dafb2ed448bb6e0aae59746c9c073c0
BLAKE2b-256 2d3e044e1587119de53b4385fe38af8ffd9f7b71924fd5c8dbc36f0a9314ff80

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e0fe40b0b4381db211d5b5a7009559820dd12cc10f68997fc698973543347c01
MD5 9e666f072bb42e4e17456c779f879184
BLAKE2b-256 1634207cc59537b431decf602b13e9cf5481bedea72f65c8c5c85825d4d1266d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3684f2d48b0a298d491cd6cb750c329402d653ab1e901e7fa99e581702f60781
MD5 658cc256b205c04b9a5aac3a207555ca
BLAKE2b-256 64311eae90d4867f3a799a560e77b7f7621b134f4890f0d352776ad09751a6da

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.4.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.4.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.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35da93809888890e4390a804ba645f0cb744c271ee63ec92eea0049cfb195979
MD5 b104696d6b0c394d837ec2b6756e5d21
BLAKE2b-256 673f12b6fa93c08569302ac9e47291499b31a0075048d48c1de0b3465d4c3c4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afd1378d79c2d7b31cc579fe6962b25189b74bba4e57c0b87b07e7c82452e90d
MD5 67dd8c6a70047d21def90b1db4d7dc54
BLAKE2b-256 d4444164d601dcc54303940b308527833cc46cce34ffe723d610007bd41331f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cce58179d5579373d67bb52f7e63273f7f4362911c693b557c96008a31e304ee
MD5 abda0557dae0829af9c88450db9cf88e
BLAKE2b-256 63470dafc8086e6e09016794ead17c9499b078807e9601026eeef725fe2a3763

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b73e713403606348ab120ae3550acb4771bbff7badf4e98cdb655c2de8b8b0d3
MD5 fc213efafa28210fdb390ed6610051f4
BLAKE2b-256 cfd7a4ae4b7fc164d61e8d52857fe7c7a9263175a663279b0520caaffdc3611c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4b077cde89cc7ac3ce0588cccc8bc6a9b7b5b99f4598a605927948baf0626f09
MD5 ec234f95c1bc58c0ec3e33a48510c624
BLAKE2b-256 4ee940140b847e81bf9b945cbd6d1aabdfc9df223bc853fe46ad3e709e3cda66

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eeff8381f3933468a930dcee8685eb71f6e7e5ac2046d78dd854cc52125db98a
MD5 e60ea11ccb6695e45ef43693c61eee2d
BLAKE2b-256 26955b460724debbe3e5e35d47081db38f96ad355be3776f793864a50637b761

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a0112c5d44ca66ca78d35f362b44eb330ffb581186ec6911f05580167401656a
MD5 bf3089d4422e32a6b71da32efaebd9e6
BLAKE2b-256 8c64caf1e9a2ddb357821d2667a25fa497a60907b34e6431d0828ea4001ca1ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ea9296eed4e1c86307a94a7ffe5eb9f283dfde738c1aac6b3096252ca2f03cb
MD5 6bff02c82fa3bf851a15699c3582c09c
BLAKE2b-256 153b556a002cb456726115daf44844dc0c46c24466a4a9a22490c6b8da1f2753

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.4.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.4.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.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24a0e04c260936895101b25f1d68758d8b63ebef048b262ec6e4315aa2c9c2c2
MD5 0b7f098df181c0a077a7210363f39b9b
BLAKE2b-256 59da0f47dff94c411af1ebba3911db163992e0201baab5530dbbcc1e26ca5114

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 263389760f2b5395bea34f394a14ff691432c95432539c33e4f6ea68255c25d6
MD5 7808b3eb2a8fc3c11dfb08165e1a71b1
BLAKE2b-256 ad42482d70be3c3b486f8fcf4a86422b0047d563f1cba34b105e0a4b4289286f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78882dff184fa05ada4d8c829937acf36918af81448ace13c28b95dae509a635
MD5 4bb585705be2d62b5d1348dcf9eaf851
BLAKE2b-256 f080b07e7be232ebbb3da4f85d56f8df0c19c91bb866d1d7b4a5fa3e9fee810d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 10b50900123486ba37afddf6da27e45de151ebb8416d628c3bec9153b93596f1
MD5 b19d4859c356e546e7b12f9bf731fa3a
BLAKE2b-256 a6e9bf5ba59001d2a9fe8e63f693b10bd7c265ad513599e2f71f1ea88ced3171

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 73843e5644eaa3f5f2826b5343cf25204a55cc2f02d0f924526c3a752b64977f
MD5 87943e3a0aabb30b4a1c1a9486dab0f8
BLAKE2b-256 0fbc0377cf24a3b11ae6cd961d938d456aa3c311dac816fe8e3088f4a66c2ff4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ms_entropy-1.4.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1c4983ea4b0a10a9b312344627d0f673e288162a924033048dc5d202e4fbfe0e
MD5 27f517148e66d7e6572bacf48b19d4f9
BLAKE2b-256 da7cd23f12d643497da37b5d1c130c26e47ca1a77ebcaa8986c4d11a0267aba5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 060cc0958f086d999c55005fe56c4bc8160f906e893a81cf3fca33785e700cd4
MD5 19a19900302e0073860945e5f8673cf5
BLAKE2b-256 dd96919cd8cd1129853083061ce067d15bdb876dfd38c7978d8f39d1582b65fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.4.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.4.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.4.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f522d7957be1944d2fc469618f0ac4b541d531cef85d57bf095849440f56f2f
MD5 3bc94d8e23c76c373a533927cf658914
BLAKE2b-256 529e44e9efceafef2287829146c71fb227abc3446b54df38e8f27c3c4d52aa2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c96eed68b41c9c3b7cab7f85ac2813d0063952eabeb33244351aa0ba0a6c58d
MD5 add1508ffab687ae50a9de768d5bc468
BLAKE2b-256 287637d7af22533ed1c0f913cfd42efb97e7f9fbdc466a84c5224e2364f127bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52735f959a30e9015b62484fb689714f5425ac38275ba5cd2491dd1d96ff2253
MD5 e37e67214cb7d4bfb5f5a44bf663fc7f
BLAKE2b-256 939d7bf46293ece65bf2a28d6c5653c529849953db4b106fc5cacce32cc4ab08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.4.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2addf092f7060801a9d27cc700fd5e28bfdbcf4706d254b7adf74d8ce1452187
MD5 d8b0bc1393effb66152c27908a9d09f0
BLAKE2b-256 364d24edce4f4d0535b6dafa27e934e0e459dc054a080e71fa0364f34fa16c24

See more details on using hashes here.

Provenance

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