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.0.tar.gz (346.3 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.0-cp314-cp314t-win_arm64.whl (215.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

ms_entropy-1.5.0-cp314-cp314t-win_amd64.whl (247.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

ms_entropy-1.5.0-cp314-cp314t-win32.whl (226.9 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ms_entropy-1.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (271.8 kB view details)

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

ms_entropy-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl (244.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ms_entropy-1.5.0-cp314-cp314t-macosx_10_15_x86_64.whl (250.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ms_entropy-1.5.0-cp314-cp314t-macosx_10_15_universal2.whl (371.1 kB view details)

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

ms_entropy-1.5.0-cp314-cp314-win_arm64.whl (209.6 kB view details)

Uploaded CPython 3.14Windows ARM64

ms_entropy-1.5.0-cp314-cp314-win_amd64.whl (229.9 kB view details)

Uploaded CPython 3.14Windows x86-64

ms_entropy-1.5.0-cp314-cp314-win32.whl (213.2 kB view details)

Uploaded CPython 3.14Windows x86

ms_entropy-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (274.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ms_entropy-1.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (273.7 kB view details)

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

ms_entropy-1.5.0-cp314-cp314-macosx_11_0_arm64.whl (235.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ms_entropy-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl (242.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ms_entropy-1.5.0-cp314-cp314-macosx_10_15_universal2.whl (355.1 kB view details)

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

ms_entropy-1.5.0-cp313-cp313-win_arm64.whl (206.7 kB view details)

Uploaded CPython 3.13Windows ARM64

ms_entropy-1.5.0-cp313-cp313-win_amd64.whl (226.7 kB view details)

Uploaded CPython 3.13Windows x86-64

ms_entropy-1.5.0-cp313-cp313-win32.whl (210.2 kB view details)

Uploaded CPython 3.13Windows x86

ms_entropy-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (274.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ms_entropy-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (273.3 kB view details)

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

ms_entropy-1.5.0-cp313-cp313-macosx_11_0_arm64.whl (234.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ms_entropy-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl (242.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ms_entropy-1.5.0-cp313-cp313-macosx_10_13_universal2.whl (353.3 kB view details)

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

ms_entropy-1.5.0-cp312-cp312-win_arm64.whl (207.3 kB view details)

Uploaded CPython 3.12Windows ARM64

ms_entropy-1.5.0-cp312-cp312-win_amd64.whl (227.6 kB view details)

Uploaded CPython 3.12Windows x86-64

ms_entropy-1.5.0-cp312-cp312-win32.whl (210.9 kB view details)

Uploaded CPython 3.12Windows x86

ms_entropy-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (275.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ms_entropy-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (274.4 kB view details)

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

ms_entropy-1.5.0-cp312-cp312-macosx_11_0_arm64.whl (233.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ms_entropy-1.5.0-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.0-cp312-cp312-macosx_10_13_universal2.whl (350.5 kB view details)

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

ms_entropy-1.5.0-cp311-cp311-win_arm64.whl (207.9 kB view details)

Uploaded CPython 3.11Windows ARM64

ms_entropy-1.5.0-cp311-cp311-win_amd64.whl (227.0 kB view details)

Uploaded CPython 3.11Windows x86-64

ms_entropy-1.5.0-cp311-cp311-win32.whl (210.6 kB view details)

Uploaded CPython 3.11Windows x86

ms_entropy-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (271.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ms_entropy-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (269.5 kB view details)

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

ms_entropy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl (232.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

ms_entropy-1.5.0-cp311-cp311-macosx_10_9_universal2.whl (348.0 kB view details)

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

ms_entropy-1.5.0-cp310-cp310-win_arm64.whl (208.3 kB view details)

Uploaded CPython 3.10Windows ARM64

ms_entropy-1.5.0-cp310-cp310-win_amd64.whl (227.0 kB view details)

Uploaded CPython 3.10Windows x86-64

ms_entropy-1.5.0-cp310-cp310-win32.whl (211.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ms_entropy-1.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (275.7 kB view details)

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

ms_entropy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl (235.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

ms_entropy-1.5.0-cp310-cp310-macosx_10_9_universal2.whl (352.0 kB view details)

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

ms_entropy-1.5.0-cp39-cp39-win_arm64.whl (208.6 kB view details)

Uploaded CPython 3.9Windows ARM64

ms_entropy-1.5.0-cp39-cp39-win_amd64.whl (227.4 kB view details)

Uploaded CPython 3.9Windows x86-64

ms_entropy-1.5.0-cp39-cp39-win32.whl (211.7 kB view details)

Uploaded CPython 3.9Windows x86

ms_entropy-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (277.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ms_entropy-1.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (276.3 kB view details)

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

ms_entropy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl (235.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

ms_entropy-1.5.0-cp39-cp39-macosx_10_9_universal2.whl (352.9 kB view details)

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

ms_entropy-1.5.0-cp38-cp38-win_amd64.whl (228.8 kB view details)

Uploaded CPython 3.8Windows x86-64

ms_entropy-1.5.0-cp38-cp38-win32.whl (213.0 kB view details)

Uploaded CPython 3.8Windows x86

ms_entropy-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl (810.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ms_entropy-1.5.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (810.6 kB view details)

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

ms_entropy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl (236.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ms_entropy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl (238.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

ms_entropy-1.5.0-cp38-cp38-macosx_10_9_universal2.whl (352.8 kB view details)

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

File details

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

File metadata

  • Download URL: ms_entropy-1.5.0.tar.gz
  • Upload date:
  • Size: 346.3 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.5.0.tar.gz
Algorithm Hash digest
SHA256 24ddcb68c64413973f6ccdd2e8558397d7def5cfa6bce18cea8e528a4ddff27c
MD5 48177d46a6b85244f8780d2d517b7ed9
BLAKE2b-256 8700efb6af218ac187b8df49839a82a4d32defc6548097d92e6586d2b2bb9897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f2f5eefeb1f36582bb5453588dca0461ce89df2f481c112605fddb881ce98841
MD5 8b5d947db55933807eb5b1bd43f9f97e
BLAKE2b-256 4cf2079887944064132cb2d64508fc8e4c071d718e614f9f1f98327e53dd7ba6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 247.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.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3cdca74eb224f7789dc28f08df62c0579572061302c462f4a55f0e73948eabf8
MD5 63da8ceb1df22f12bfccd6bb2a6b6e1a
BLAKE2b-256 e1f513ff667fd80f4e0ca6f5c4515dbfb4bc6d54a296cded1e5c9bc383156a68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 226.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.5.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8998960d1d868a11b810c219094f1198f5f1993a013d030a783d8610e025dd5a
MD5 a58021db6a464aa307dcf428793f76af
BLAKE2b-256 a38de92adc0d3b10b81a14947575d7c8dca3e7c7693e012ccaed7dd72884f1ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6c58615dc63e43313333b7b97f128611c9cb85a33897b07d9c6617a73b239e4
MD5 8bbc61b155843e13cc0bd5e1a3cddacf
BLAKE2b-256 c5c53c6e5be9b72a8b6c440bbfa98782ac54638f43bb4383f48286aeadf7e711

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e0ea51b50bd2d483ae810227abb72c41141a9cc826f7d8ea48e11a3c90a5225
MD5 6c2f6b11062af4a217f044e2d10895d9
BLAKE2b-256 a7cc19211ef105add78269a40810140de5110bc8c5b34f126d09b0018b8396c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1f8e95145abce0507fad326d8886f167ae5ca4bbd0bc48106b24148674ae5f3
MD5 ee1afc205837a293009548d8ebce9edb
BLAKE2b-256 969d99b22f37f6f230443e96a9a05992890f8131767d6a03a82df6365468b2c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f18a01146b78071a41bcd81556b4cfd05abbf87e6ffe7fd09b7b312f00aeec08
MD5 28aaf98fadabe057db89a9b2486f429f
BLAKE2b-256 7479cd0000513b39546d46d77871851cc211c7deacc31dee721ed3ac9902564b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 85b641482c0ca92ae272890ee19287acddd175dd188f2c7b520427ff94b78404
MD5 8c2cfcd80aface99f43a941a7592262f
BLAKE2b-256 0b010f912337aa920ab99358c10e9a615e44b80ff0336a2fe573f6dcf44ab902

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 209.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.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e626654284dc07eb9791b278aea3ee69b8c28ff72423c9d409f1958905f225f8
MD5 32efbe2fb00f0e31800987a605d95eef
BLAKE2b-256 e4536a93cb95b33a2c5aa009a51fa98a6c6ad79fe3aaf391950a31261da6a996

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 229.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.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c05e59b13c71fc0524c6782f4090d4154dd4574eb8e423a5124a835f33dcd5a4
MD5 df9f3520f9d4ffebcefbc753f37c79f9
BLAKE2b-256 eea994f91d129693afefb993d36000be778b386b61985ac0f8cfd850e1f6a369

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 213.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.5.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b302da0fdcdcc049eece47fe52611b7b68829be33b9f1bb17b8f5395e822b759
MD5 3d0b9a0086ad8e11b5e2b6cbc53da1b7
BLAKE2b-256 62df6bc9be2bc29ce34bfa14e3c0906c9dc8e212346c06fb161ce275b6d6779c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a68e9eeea71f6cfc507f8a9a7364843c3c6e71ffaa090b35a28617e2ad2913a
MD5 cc7a4aa6d2d7fa043da6ced41443717e
BLAKE2b-256 5f640eb9e914fdfc693e5d6feab0f5de0ef954a980e9a9c1f7d464371105bd37

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e09f490cad028c3bac03f7e868328bbef96d00ca11801609d04c7ad92bdc10c
MD5 e7658f9111e5736ae31c21d0b6364c53
BLAKE2b-256 853e1e47fa7d7cacde20a0941b5457bdd93be91e860f78a0195166f1fa9f37c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d27ee91872e7d1d11f2d964a0ea0f17c61ff47d1f595bb2e651868803caa712
MD5 0cf02ef12692a73eb77e311264ceb9be
BLAKE2b-256 2d2ab071d655a604a872bf8a29188be28fcb3797c98cacf06eeef29e028c0a7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 160a9de355702fd25347246cf40e31acb63c6927a29bd35e48867764fa33757d
MD5 a2ae6541935b5f4e3e08028853c6260b
BLAKE2b-256 e52f0532d36c8f6121b77d9b2c1a519ade784d870db5576dcb2101f873448a47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4cb2393ee32abc5fa349a55f4bc302ba78ff3ae0a9cb7f6a324de6f0bcc70935
MD5 f5c435f7f00c690583ba2a5ea7d1cb59
BLAKE2b-256 c913c6dee4e5b3a5d4669d72669b33b72c8a4802b0e0de72c2d6dfce574d091c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 206.7 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.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ac2f46fc9b7095580b932ede2e23bf210a3285ac7222f4768c7b2ef68f237584
MD5 8ba20f7d5d3822dbccdb7037c3122c11
BLAKE2b-256 d2ff8d93dd4ab2f337b082f562b394ee6357c90faedc228e8835290e9c4e26b2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 226.7 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.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b1ab08c95d2640318dceacacf6af09ffaf7a33fb10d82cfb69d4ca042b564fb8
MD5 be72836f51599dc67830f2774bfca4fe
BLAKE2b-256 f2c7e8c4f5f49b97f2abf94abfc6a1c669b01e4f44e0200c3ea84d95addcc588

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 210.2 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.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 be6f84a070fcd20699f8b3014121ad99b1fc68735a93a7ce83a26c27b48aad89
MD5 36cfc06fc1b5c2c01257e3ca1dab48e2
BLAKE2b-256 7673195ee0134cf76902db141256b7715f0f081c529903c507b91e395247dc96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac0772dcfab436e2f85c3f75c05b6673b2e0dffc25dda96169c732e61ad5850d
MD5 f97c02148af4ed5d0ef81913e351b560
BLAKE2b-256 42e39562b1490fbd0c5eb0a880bde31da014de85ed0182166a9e87cfec32060f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ab9f824804b4e73fbb108f7df5b7c05b0cbc47c1c74fa451d61b0a08e58e496
MD5 c76f6e429decd0e38d358489cfa4aeb4
BLAKE2b-256 d9989dcd37198e77a36b811ab985237776929ae9e296b98b9208f149e30a1cbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dab16066ccacced91c4e53ba6342efd42abf8dfcb0035e1e08cc0db155c92441
MD5 28cb6edadf5cc0495d05015597e1d613
BLAKE2b-256 398246a02e15a4aae174f4e502e9461cc7c52c51b71fef7b1f7c3ef4065e2403

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 65150d8b5ede0a898d4ac1549e3c8405568d558a4e32f266ad60e3c039a5e5d0
MD5 e52dfbc0aa38d65efe9982c4c4889939
BLAKE2b-256 b531586acce86b63fe4e1241c23658c9bab0b1c3a0fcfff7e15850ea4648ce2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e8d1cf6de8623412e62cf1fa9f52f1c66f93dd402735866cd9751b3ad5d2ef6a
MD5 63fba7b6c3a52006f697e7c332759232
BLAKE2b-256 c6f91f198eded2e0d812d231808d9a079ef7c085f39d44fb2f57c00809c38048

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 207.3 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.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f2df54431da96d4db24604a79d670111df684c56554aed633f97ae6a4aca7c78
MD5 59c5dd9e8db470d9c20454bed9b12606
BLAKE2b-256 db6800e57b75e12058f0b9652f0cf591d05d3f6c20d5f5dcd6f7a50282c48b55

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 227.6 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.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 491aef35dff630c36372f6e22884e60d4253002ebcb359ad77f11525dba9e121
MD5 84005b0707e6071fbb66b5db0b76d55f
BLAKE2b-256 0b64a9421d24aaf8b2ecd1b181cd6f64cb73740a6502bfb875eb74394e02ea59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 210.9 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.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 416634c3277a075962028380a2f882575975965ba7dfb75cfc43887a1e130ebf
MD5 8668f9403b73348d4cfd4e6c6daa838e
BLAKE2b-256 a16c709f6c1cf1f0b3197519d710c942a280a425e08866093aee947ce6d37ae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cf8d9219abbf0b902c669b9766a8a91a8c341ec1574feb8a45625bdfc2bfa1e
MD5 1ef7af8af42aec9835cd74a572e8b932
BLAKE2b-256 f890116310f866b9e4a87d0d860a0cd91d3c828b6c5f9f1c9957c1dc1ca0716a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da1d3b41e46534640908239a9f402636e437c6ad1fbabc24bd819a80647552ce
MD5 94370d783cddb07473601333a6defb57
BLAKE2b-256 f49aeb9a2ea50471767ebc25bacbc0e6e40e09172496cb2427dff67224499a27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9528b7ec3b0114dadd5d167af537a92c76c14e68015adc55709bc64e810dfe9
MD5 a26b12a21a8ee336807cba8a6cf53e08
BLAKE2b-256 04ddd653c03cf49378d2ebc7769a9b8aa2a1b79c027173644efbb84ad2cbec4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f965713ba204b993d03294aba9a1941763c4b0ecc35216698c281dce304e53a8
MD5 cbc0137257cece82de722246740e8a9a
BLAKE2b-256 e7f2771d88be26867d3c397dd613bda115bfaab33a7a1e5b8bbc753c76130167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9feef34020b65919ddc587c38e01c6f69c03c5fda0d9831c776a9f297a79fd1a
MD5 82dbac8ad0b21de41e2371553bfc70d3
BLAKE2b-256 2304db7e3c1aeee75becb4fdc3efed42c2138c8264b539d975f778f0e000642d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 207.9 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.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c0498a072ff456adff7de64c2535c5f004ee29ac1c8bafbd2f9561b6631bfaba
MD5 ff240e006b714c00c8a1221535db0dc5
BLAKE2b-256 c7eacb8d9d92fa4e70c170c6e9374528587b9bd4ba9c934bed383a13e54fdddc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 227.0 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.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1a2043b2e0d43de5d8f017bab5d080074819dbebdd0a22d618ef9d1baab6d928
MD5 8b0958a5a1d15a50c1539e156224c8b6
BLAKE2b-256 706000d272b3568d51a826d7d9751e86d6b29d9ebd2a888cf6b8ffef83e989ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 210.6 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.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b9f68ae38baf2ff20fca58f046f6a841a5161c5a7da5064795e09d49ab7babc5
MD5 99ea20b728334672faed9db8228fab24
BLAKE2b-256 83e9569bda3eb18c7a0678469fd1edba374ed657283c9543325a95a75af14dac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 869696db148565b2a0c2fe061b4cb84161df00007bc8ebaaa60bb38ed278361c
MD5 01ae9f51655e7f191d47d563dbee495f
BLAKE2b-256 eda1abe114b44bbb465ecb76f6773e932de263dcb7cc381e63dd3606d2bbffeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6afbe0fa54cd47726d32347535306832a710862afdfcab0301a763aff75847c
MD5 4416aec22f6ebd07bcc53527b5dcadc9
BLAKE2b-256 8c590f99ceaa8b5bc81ac3c9d053932a78e43880472d5db78ca192fcf2f071f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6702bae06ec31e0e153e0af5c83eababae06ac7251212358ca961573c10d903
MD5 b555c339eac3992a9f2e7252b9525e81
BLAKE2b-256 5c9a0a2f51a13afca442a06206e512ccc0d0ce192f36a6affa9bc1edc4fbb96b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 978dcaf1fac93727929ed86b1f232d5811b10ebb86add848ad3e4f7f5b82784b
MD5 f0b2336348c45ef38eddb4e1146ed9d9
BLAKE2b-256 3cb338af676f959bfc5b6f940b07df354c95d573f76eb7910c7029966c33450f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e632ce23c390fccab4c8a34549e4c3e531cf1fb7cc27b8d9278c3b7661abb414
MD5 f6646bfd895a49dcad304d454ef80fd0
BLAKE2b-256 4baa8cc19f0d1845214d4c12afa7d05b076ba343e69b73e17c9c2e0acc7001c5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 208.3 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.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 9f3231ec57634fc3591deb88c7b2c62bd09088b60a0ef4f1fa9eb273017c3e03
MD5 4144903785be83852a0562ecbe206697
BLAKE2b-256 cdf80b5cfda620ed558c88eab7ed3dba083511c60d497e076e50b0ae46d912c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 227.0 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.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 addec7063dd588506de59238126504d5ee186053f1fafccc55981e09537c9ab9
MD5 d90ad4443cb23e4697d72c7bfe1035c9
BLAKE2b-256 1259a612916e3243b26113c26fdecd4cc325a9c07fbf8e0c60add21d319c017d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 211.3 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.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6be0239b837a24a9f908cb41e21863fae72941b0f852c351648222167f464f11
MD5 85f5607c135d223139596c3eb4c37f7e
BLAKE2b-256 dca9ce51c59c3317a7e2943bba4177482dec306d84be06b61782b730a5b0110b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc2ad0f57818d689c91a7d10743e57c83f62411d382d202cef7531fd336b69b3
MD5 ed4edb3d5666462b372cbb560ffe97e8
BLAKE2b-256 4116cb118b53fef4063dfb482b87fc1166fd0bcadadb6f9012715a08c8227c2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8977ac9293df156c759f3105155d965d8541042ef09c78aac960b172f39f1db6
MD5 5267db315b042ec373c9afb2ac8fc59f
BLAKE2b-256 b7ada0b921bb870c946cba80032a2a64e1f02888d3d6ce688a8986e5887b51e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9482cff69a9e531489cba69a5b5a98a6a087ae52cb225497054e0bcdbdef92a7
MD5 125533d7e89bfcb1d1b51973a5a311db
BLAKE2b-256 75873108e50bdac4ed8cd5d49feab49f2682f02e74c9b872c8f7d31804471eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a50953ebe54d858e2bce6dec4ea795289c2056b2d4a0595a5a4640baf8b13514
MD5 320ad758c24cd740a0405ea52797222f
BLAKE2b-256 42654b488784de5ba1d8c516b60252b64a7ffe0fb74fbf46336c3d6bb5aac73c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f912205bcd904467f70fba500eb5ed77d750a3e6ab4cde0b65ba58838c5dd4d5
MD5 0b09cd6262d635dd8e8bb3cf942e77c9
BLAKE2b-256 c1663c3fa5fdf28bafdd7fb33b34ddee0d86066e979214e3c6619aec8789258b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 208.6 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.5.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a7085997675d1002382a89c12a929f0488d7a531fb2f2031fbcb2667670f80db
MD5 24beb918fbe09e92dd41bc30fdadbd04
BLAKE2b-256 284cd4db7317387c4342e2e6eef7b23d6eeaef6c92cb3e407c43f71782eea9c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 227.4 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.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 44c82520ccdfd1b618bd5adbc84dedfad86fb1734b2da677b146f6b777c3d69a
MD5 d5b2858ea7d84f8374ca4e96e30008f1
BLAKE2b-256 a3e57bba2043b6bfd5c283163bc9aade04d276704fdbd5e6f3da8858d79f70b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 211.7 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.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d906bb6847a2e9732c438de0184633ad4e4ef45a3f0db8f062d8cd0807e68f02
MD5 679656120c0c460431ecc9dedfa0a5eb
BLAKE2b-256 7caada45621d225b01a60db78a681235e7d9067a54afd877a8f638c66c674e9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd492bbb04b127163268f8df0e406848f1f97de490debc7e4bbd2c56912869bf
MD5 761228569a7d98ea997f79abd5464101
BLAKE2b-256 d108575ea7013455318c0dda4f3022629982b28fc2a772ae6137d116037cfbf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.0-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.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67ce51eb07e54917dcf7ec950fe541d613c50247ba56a8aa64dede15d3d73a9d
MD5 f1d72553f7307936a05572aba90f76da
BLAKE2b-256 3004db1750b575463fa64e2a093666f437dfffd6578f892c6f034aa3d3883180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 accda1acb3040b68504f5dff89bc4befd67b58787c265598c4240a67238633eb
MD5 3089ca9d87b09aa3a7e9ecc77d2a9bf1
BLAKE2b-256 facacd322ed104aa3326b2a688cff88d0ea2cdc3653ffe94df2a561ce47ce276

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90c68f0d478c0e8831b3b3bb82d048b693a8b2c386124dbf6483b3af8b4b7b66
MD5 66e41383e8756d0e905346c2fcf19101
BLAKE2b-256 63a630027d9a3135f63f9171ad4260a69bb7e6bf0e9935767784389e573b471e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a09a34efeac0239f05d01e842afe307805a732bd986697d6d4edc652820ca49f
MD5 0a7d8cf31848a13390d038d16acb4761
BLAKE2b-256 dde6fea9db5a6541e4006f023bf0fef5973b9eff735fad2e3c6a2d27bcba55ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 228.8 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.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8796b59c68313d58a106b9fc7faa3c4b0b90a03711b01256e471d62975c554f2
MD5 67843a6051182a5203beff95f8e656d6
BLAKE2b-256 087e10ffb2dc760a212b284447ee5f411d7204f09bbba65b3ab337acfd2ff868

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ms_entropy-1.5.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 213.0 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.5.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 85cbc461c671d68fac8a2832713a455d1e28788b14c54ec9957e360028594a6d
MD5 07a3b4fe86cc7d888a46f1a18bd3a00c
BLAKE2b-256 932dedc57d263925a4286ca33e5e3071e091e41d4b1414db6205fb8aa23f5390

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b0446a78c40871394dd8888bfcd95f23fc4d2bec775d2d0bfe6e2876bd0b40f
MD5 4e0ca8b23562341c19300c0aa1aaffa0
BLAKE2b-256 b6789ff10338da3cc5cf80239a37fa63945f33e2c28f9b2714b995c6990a8b50

See more details on using hashes here.

Provenance

The following attestation bundles were made for ms_entropy-1.5.0-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.0-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.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d351b19fface7c32da62425f08284c60ab75ad78e0e831360c4ac1a03c6dbe9e
MD5 c2b6142ad37755b6d9125e7581989f50
BLAKE2b-256 7dec0b77c9aa66c490c7fa6cd41735e35c1c36b7fda2053cbf3dc0723cb3b8e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55f75f2140230b2e58365b08649493336b20015f1510ac126c31881a37b54c11
MD5 ea781a19457973280e7f43ff1060769e
BLAKE2b-256 61a68ab0e52453dd90ce5919fcdfae0157d820854561eb3ff113d4f98950cc3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e215fc6821c5bc693420733d86eabab7a1bacb8a309e4c6f91c362789a0896f4
MD5 9622022674d55153b0cd6e1f89f26af6
BLAKE2b-256 f7e28bcf90353e3182f74186a5345a214f46533262938052e7a0f3598b009399

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ms_entropy-1.5.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dda114fe1efc0d688b339e73ff9b6d510dcd118c30e9cd2cf3ff86d87e728f92
MD5 6c4cff45dbb74b57dfd877ea8d7ded7b
BLAKE2b-256 d61d33344d84fc0f53dbbb2471f998f682dc3b90d8346cd8832e0d2aa3455601

See more details on using hashes here.

Provenance

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