Skip to main content

mmh3

Documentation Status GitHub Super-Linter Build PyPi Version Python Versions License: MIT Total Downloads Recent Downloads DOI

mmh3 is a Python extension for MurmurHash (MurmurHash3), a set of fast and robust non-cryptographic hash functions invented by Austin Appleby.

By combining mmh3 with probabilistic techniques like Bloom filter, MinHash, and feature hashing, you can develop high-performance systems in fields such as data mining, machine learning, and natural language processing.

Another popular use of mmh3 is to calculate favicon hashes, which are utilized by Shodan, the world's first IoT search engine.

This page provides a quick start guide. For more comprehensive information, please refer to the documentation.

Installation

pip install mmh3

Usage

Basic usage

>>> import mmh3
>>> mmh3.hash(b"foo")  # returns a 32-bit signed int
-156908512
>>> mmh3.hash("foo")  # accepts str (UTF-8 encoded)
-156908512
>>> mmh3.hash(b"foo", 42)  # uses 42 as the seed
-1322301282
>>> mmh3.hash(b"foo", 0, False)  # returns a 32-bit unsigned int
4138058784

mmh3.mmh3_x64_128_digest(), introduced in version 5.0.0, efficienlty hashes buffer objects that implement the buffer protocol (PEP 688) without internal memory copying. The function returns a bytes object of 16 bytes (128 bits). It is particularly suited for hashing large memory views, such as bytearray, memoryview, and numpy.ndarray, and performs faster than the 32-bit variants like hash() on 64-bit machines.

>>> mmh3.mmh3_x64_128_digest(numpy.random.rand(100))
b'\x8c\xee\xc6z\xa9\xfeR\xe8o\x9a\x9b\x17u\xbe\xdc\xee'

Various alternatives are available, offering different return types (e.g., signed integers, tuples of unsigned integers) and optimized for different architectures. For a comprehensive list of functions, refer to the API Reference.

hashlib-style hashers

mmh3 implements hasher objects with interfaces similar to those in hashlib from the standard library, although they are still experimental. See Hasher Classes in the API Reference for more information.

Changelog

See Changelog (latest version) for the complete changelog.

5.3.0 - 2026-08-26

Added

  • Add support for Python 3.15 (#192).

Fixed

  • Fix undefined behavior when writing to const-qualified 128-bit digest buffers (#188).

5.2.1 - 2026-03-06

Added

  • Add support for the Android wheel for Python 3.14.

Removed

  • Drop support for Python 3.9, as it has reached the end of life on 2025-10-31.

5.2.0 - 2025-07-29

Added

  • Add support for Python 3.14, including 3.14t (no-GIL) wheels. However, thread safety for the no-GIL variant is not fully tested yet. Please report any issues you encounter (#134, #136).
  • Add support for Android (Python 3.13 only) and iOS (Python 3.13 and 3.14) wheels, enabled by the major version update of cibuildwheel (#135).

License

MIT, unless otherwise noted within a file.

Frequently Asked Questions

Different results from other MurmurHash3-based libraries

By default, mmh3 returns signed values for the 32-bit and 64-bit versions and unsigned values for hash128 due to historical reasons. To get the desired result, use the signed keyword argument.

Starting from version 4.0.0, mmh3 is endian-neutral, meaning that its hash functions return the same values on big-endian platforms as they do on little-endian ones. In contrast, the original C++ library by Appleby is endian-sensitive. If you need results that comply with the original library on big-endian systems, please use version 3.*.

For compatibility with Google Guava (Java), see https://stackoverflow.com/questions/29932956/murmur3-hash-different-result-between-python-and-java-implementation.

For compatibility with murmur3 (Go), see https://github.com/hajimes/mmh3/issues/46.

Handling errors with negative seeds

From the version 5.0.0, mmh3 functions accept only unsigned 32-bit integer seeds to enable faster type-checking and conversion. However, this change may cause issues if you need to calculate hash values using negative seeds within the range of signed 32-bit integers. For instance, Telegram-iOS uses -137723950 as a hard-coded seed (bitwise equivalent to 4157243346). To handle such cases, you can convert a signed 32-bit integer to its unsigned equivalent by applying a bitwise AND operation with 0xffffffff. Here's an example:

>>> mmh3.hash(b"quux", 4294967295)
258499980
>>> d = -1
>>> mmh3.hash(b"quux", d & 0xFFFFFFFF)
258499980

Alternatively, if the seed is hard-coded (as in the Telegram-iOS case), you can precompute the unsigned value for simplicity.

Contributing Guidelines

See Contributing.

Authors

MurmurHash3 was originally developed by Austin Appleby and distributed under public domain https://github.com/aappleby/smhasher.

Ported and modified for Python by Hajime Senuma.

External Tutorials

High-performance computing

The following textbooks and tutorials are great resources for learning how to use mmh3 (and other hash algorithms in general) for high-performance computing.

Internet of things

Shodan, the world's first IoT search engine, uses MurmurHash3 hash values for favicons (icons associated with web pages). ZoomEye follows Shodan's convention. Calculating these values with mmh3 is useful for OSINT and cybersecurity activities.

How to Cite This Library

If you use this library in your research, it would be appreciated if you could cite the following paper published in the Journal of Open Source Software:

Hajime Senuma. 2025. mmh3: A Python extension for MurmurHash3. Journal of Open Source Software, 10(105):6124.

In BibTeX format:

@article{senumaMmh3PythonExtension2025,
  title = {{mmh3}: A {Python} extension for {MurmurHash3}},
  author = {Senuma, Hajime},
  year = {2025},
  month = jan,
  journal = {Journal of Open Source Software},
  volume = {10},
  number = {105},
  pages = {6124},
  issn = {2475-9066},
  doi = {10.21105/joss.06124},
  copyright = {http://creativecommons.org/licenses/by/4.0/}
}

Related Libraries

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mmh3-5.3.0.tar.gz (33.6 kB view details)

Uploaded Source

Built Distributions

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

mmh3-5.3.0-cp315-cp315t-win_arm64.whl (40.3 kB view details)

Uploaded CPython 3.15tWindows ARM64

mmh3-5.3.0-cp315-cp315t-win_amd64.whl (43.2 kB view details)

Uploaded CPython 3.15tWindows x86-64

mmh3-5.3.0-cp315-cp315t-win32.whl (41.7 kB view details)

Uploaded CPython 3.15tWindows x86

mmh3-5.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl (107.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

mmh3-5.3.0-cp315-cp315t-musllinux_1_2_s390x.whl (119.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

mmh3-5.3.0-cp315-cp315t-musllinux_1_2_ppc64le.whl (114.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

mmh3-5.3.0-cp315-cp315t-musllinux_1_2_i686.whl (108.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

mmh3-5.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl (107.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

mmh3-5.3.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (131.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

mmh3-5.3.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (122.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

mmh3-5.3.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (117.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mmh3-5.3.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (114.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

mmh3-5.3.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (108.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

mmh3-5.3.0-cp315-cp315t-macosx_11_0_arm64.whl (40.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

mmh3-5.3.0-cp315-cp315t-macosx_10_15_x86_64.whl (41.0 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

mmh3-5.3.0-cp315-cp315t-macosx_10_15_universal2.whl (57.2 kB view details)

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

mmh3-5.3.0-cp315-cp315-win_arm64.whl (39.7 kB view details)

Uploaded CPython 3.15Windows ARM64

mmh3-5.3.0-cp315-cp315-win_amd64.whl (42.4 kB view details)

Uploaded CPython 3.15Windows x86-64

mmh3-5.3.0-cp315-cp315-win32.whl (41.0 kB view details)

Uploaded CPython 3.15Windows x86

mmh3-5.3.0-cp315-cp315-musllinux_1_2_x86_64.whl (98.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

mmh3-5.3.0-cp315-cp315-musllinux_1_2_s390x.whl (110.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

mmh3-5.3.0-cp315-cp315-musllinux_1_2_ppc64le.whl (106.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

mmh3-5.3.0-cp315-cp315-musllinux_1_2_i686.whl (99.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

mmh3-5.3.0-cp315-cp315-musllinux_1_2_aarch64.whl (99.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

mmh3-5.3.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (121.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

mmh3-5.3.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (113.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

mmh3-5.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (106.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mmh3-5.3.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (104.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

mmh3-5.3.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (98.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

mmh3-5.3.0-cp315-cp315-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

mmh3-5.3.0-cp315-cp315-macosx_10_15_x86_64.whl (40.2 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

mmh3-5.3.0-cp315-cp315-macosx_10_15_universal2.whl (55.5 kB view details)

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

mmh3-5.3.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl (40.0 kB view details)

Uploaded CPython 3.15iOS 13.0+ x86-64 Simulator

mmh3-5.3.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl (39.5 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Simulator

mmh3-5.3.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl (38.8 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Device

mmh3-5.3.0-cp315-cp315-android_24_x86_64.whl (42.2 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.15

mmh3-5.3.0-cp315-cp315-android_24_arm64_v8a.whl (41.0 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.15

mmh3-5.3.0-cp314-cp314t-win_arm64.whl (40.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

mmh3-5.3.0-cp314-cp314t-win_amd64.whl (43.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

mmh3-5.3.0-cp314-cp314t-win32.whl (41.5 kB view details)

Uploaded CPython 3.14tWindows x86

mmh3-5.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (110.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mmh3-5.3.0-cp314-cp314t-musllinux_1_2_s390x.whl (123.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

mmh3-5.3.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (116.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

mmh3-5.3.0-cp314-cp314t-musllinux_1_2_i686.whl (111.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

mmh3-5.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (110.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mmh3-5.3.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (135.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

mmh3-5.3.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (125.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

mmh3-5.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (120.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mmh3-5.3.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (117.4 kB view details)

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

mmh3-5.3.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (109.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

mmh3-5.3.0-cp314-cp314t-macosx_11_0_arm64.whl (40.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mmh3-5.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (41.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

mmh3-5.3.0-cp314-cp314t-macosx_10_15_universal2.whl (57.2 kB view details)

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

mmh3-5.3.0-cp314-cp314-win_arm64.whl (39.7 kB view details)

Uploaded CPython 3.14Windows ARM64

mmh3-5.3.0-cp314-cp314-win_amd64.whl (42.4 kB view details)

Uploaded CPython 3.14Windows x86-64

mmh3-5.3.0-cp314-cp314-win32.whl (41.0 kB view details)

Uploaded CPython 3.14Windows x86

mmh3-5.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (97.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mmh3-5.3.0-cp314-cp314-musllinux_1_2_s390x.whl (109.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

mmh3-5.3.0-cp314-cp314-musllinux_1_2_ppc64le.whl (106.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

mmh3-5.3.0-cp314-cp314-musllinux_1_2_i686.whl (98.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

mmh3-5.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (99.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mmh3-5.3.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (120.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

mmh3-5.3.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (113.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

mmh3-5.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (106.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mmh3-5.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (103.2 kB view details)

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

mmh3-5.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (97.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

mmh3-5.3.0-cp314-cp314-macosx_11_0_arm64.whl (39.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mmh3-5.3.0-cp314-cp314-macosx_10_15_x86_64.whl (40.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

mmh3-5.3.0-cp314-cp314-macosx_10_15_universal2.whl (55.5 kB view details)

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

mmh3-5.3.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (40.0 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

mmh3-5.3.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (39.5 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

mmh3-5.3.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (38.8 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

mmh3-5.3.0-cp314-cp314-android_24_x86_64.whl (42.2 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

mmh3-5.3.0-cp314-cp314-android_24_arm64_v8a.whl (41.0 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

mmh3-5.3.0-cp313-cp313-win_arm64.whl (39.2 kB view details)

Uploaded CPython 3.13Windows ARM64

mmh3-5.3.0-cp313-cp313-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.13Windows x86-64

mmh3-5.3.0-cp313-cp313-win32.whl (40.5 kB view details)

Uploaded CPython 3.13Windows x86

mmh3-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (97.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mmh3-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl (109.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

mmh3-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl (106.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

mmh3-5.3.0-cp313-cp313-musllinux_1_2_i686.whl (98.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mmh3-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (99.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mmh3-5.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (120.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

mmh3-5.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (113.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

mmh3-5.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (106.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mmh3-5.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (103.3 kB view details)

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

mmh3-5.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (97.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

mmh3-5.3.0-cp313-cp313-macosx_11_0_arm64.whl (39.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mmh3-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl (40.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mmh3-5.3.0-cp313-cp313-macosx_10_13_universal2.whl (55.5 kB view details)

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

mmh3-5.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (40.0 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

mmh3-5.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (39.5 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

mmh3-5.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (38.8 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

mmh3-5.3.0-cp313-cp313-android_24_x86_64.whl (42.2 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

mmh3-5.3.0-cp313-cp313-android_24_arm64_v8a.whl (41.0 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

mmh3-5.3.0-cp312-cp312-win_arm64.whl (39.2 kB view details)

Uploaded CPython 3.12Windows ARM64

mmh3-5.3.0-cp312-cp312-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.12Windows x86-64

mmh3-5.3.0-cp312-cp312-win32.whl (40.5 kB view details)

Uploaded CPython 3.12Windows x86

mmh3-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (97.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mmh3-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl (109.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

mmh3-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl (106.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

mmh3-5.3.0-cp312-cp312-musllinux_1_2_i686.whl (98.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mmh3-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (99.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mmh3-5.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (120.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

mmh3-5.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (113.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

mmh3-5.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (106.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mmh3-5.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (103.2 kB view details)

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

mmh3-5.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (97.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

mmh3-5.3.0-cp312-cp312-macosx_11_0_arm64.whl (39.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mmh3-5.3.0-cp312-cp312-macosx_10_13_x86_64.whl (40.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mmh3-5.3.0-cp312-cp312-macosx_10_13_universal2.whl (55.5 kB view details)

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

mmh3-5.3.0-cp311-cp311-win_arm64.whl (39.2 kB view details)

Uploaded CPython 3.11Windows ARM64

mmh3-5.3.0-cp311-cp311-win_amd64.whl (41.8 kB view details)

Uploaded CPython 3.11Windows x86-64

mmh3-5.3.0-cp311-cp311-win32.whl (40.4 kB view details)

Uploaded CPython 3.11Windows x86

mmh3-5.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (97.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mmh3-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl (109.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

mmh3-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl (106.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

mmh3-5.3.0-cp311-cp311-musllinux_1_2_i686.whl (98.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mmh3-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (99.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mmh3-5.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (120.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

mmh3-5.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (112.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

mmh3-5.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (106.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mmh3-5.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (103.0 kB view details)

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

mmh3-5.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (97.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

mmh3-5.3.0-cp311-cp311-macosx_11_0_arm64.whl (39.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mmh3-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl (40.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mmh3-5.3.0-cp311-cp311-macosx_10_9_universal2.whl (55.5 kB view details)

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

mmh3-5.3.0-cp310-cp310-win_arm64.whl (39.2 kB view details)

Uploaded CPython 3.10Windows ARM64

mmh3-5.3.0-cp310-cp310-win_amd64.whl (41.8 kB view details)

Uploaded CPython 3.10Windows x86-64

mmh3-5.3.0-cp310-cp310-win32.whl (40.4 kB view details)

Uploaded CPython 3.10Windows x86

mmh3-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (100.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mmh3-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl (111.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

mmh3-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl (110.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

mmh3-5.3.0-cp310-cp310-musllinux_1_2_i686.whl (96.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mmh3-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (101.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mmh3-5.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (118.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

mmh3-5.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (110.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

mmh3-5.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (103.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mmh3-5.3.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (101.1 kB view details)

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

mmh3-5.3.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (95.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

mmh3-5.3.0-cp310-cp310-macosx_11_0_arm64.whl (39.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mmh3-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl (40.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mmh3-5.3.0-cp310-cp310-macosx_10_9_universal2.whl (55.5 kB view details)

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

File details

Details for the file mmh3-5.3.0.tar.gz.

File metadata

  • Download URL: mmh3-5.3.0.tar.gz
  • Upload date:
  • Size: 33.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0.tar.gz
Algorithm Hash digest
SHA256 95832419b87b882bec9dcd7d041d74887ba7745b3659c14be1ae1db5cfa35cad
MD5 d9d83496565ba1f68592d9e8efb886ab
BLAKE2b-256 aa69d00269fee7a3102fcc0f04f0a312e41c6b237762bdcad4c19426f18e697c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0.tar.gz:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 40.3 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 a8389010a2721e568fbe40ba94e7d8f931beabd59b95af2b2ab8238fd40a6b3e
MD5 6d055d492c8bc3a6e012186b688dfce7
BLAKE2b-256 a20a033fef3d7a486aa369ec11cdf0455bbae6640df13491f6e7d35fd90aa000

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-win_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 43.2 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 1617be1ce93f97513bbf23cafa28a6ab1d20b0928de760054a4c603a89bdab7c
MD5 6d598faee45ce0104d63ee3a2fe06c52
BLAKE2b-256 03735f5d7a5c0bad6ae5568e3232d8b7bcee9639da0de45f8e664342f22bf682

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-win_amd64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 41.7 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 9e03132ea81849b5732122d3d2f39e46a327a461eb3d678f1e74747c9b7ef154
MD5 6d5b4b5bf8868eae86f82a9cac0e2d45
BLAKE2b-256 f5be57df5ff90b968bcce8d173df2a69f668702d0940f0d66696f259f904a373

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-win32.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecd0172b50350cae19e8dbb07789e11234099de8ea44db0a981467a98c165170
MD5 dec058a498fcfe355b092848e3e5a583
BLAKE2b-256 299c9cfe3e09689cbe4e381e09560be44824a143583938392bc3e48b35478dd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 af550cb399a702b1f277c375461fcd9533f46b435bba1e7847b4b729c6a316aa
MD5 d8fcbcbcf11fd8d0a8f29a0cf33c3a57
BLAKE2b-256 edb0d0996aa44f675f3dee627c2f90bf1c071f2424c203c5cfbe4270632bacfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-musllinux_1_2_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1e2cc33121171b1e4657146bfdaf77eb135787465f298d9f5ed04c14771c35d2
MD5 ae77e7a5e2625eeb40b9afcc5c3ae726
BLAKE2b-256 748c09e6e3e74386a73d533903f6e99e0fde75077af3dace436d460ae0e653f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-musllinux_1_2_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp315-cp315t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 108.9 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 844f16c472352afa499d3a2ff0316cc812204bda42540af4768ac80a98b56277
MD5 432daba9cbcf16c5050664f7f32eb24f
BLAKE2b-256 89b0cd2a527717e3171ef9bb50f5391bc0fb8c5c9a5df90293132bd56a8783e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-musllinux_1_2_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 166e3c09c56e980bfef1ee4fe4eded81d544615359eb92fb7ccda8c96f5d9538
MD5 ace45bd6a47c60f7128fd1dbc1e3c505
BLAKE2b-256 1415b9c7f0f6d6453a75eee6b455ee87f8839381bfdfba5ae43a2110911693e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3bfc16e0bca99ecc91d4c9fdc708c432fac2eba3797e78577f4d280031456f37
MD5 c12f1c3e9835e286f8b5de07034d6d2c
BLAKE2b-256 79af99ddc49b1993da421fd25cec9f46f558a624cc9f2e76695d999a03231197

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 002414b951d980072a90dc25e84fe41570e399503c9db46a45edf61c7f0bd3bf
MD5 ea51e860374e5929c156973fba0c5dfa
BLAKE2b-256 c9ac95b7c8b851fb97a6974ea955f3dbe30bf7e3692ba982043f8011b0e39ffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2c36e6d747dcf42f5afc49b107c65c7e2be5dd8e80209244bc50c6bf2bfb81c
MD5 480438e798aa921043c75cc71f9c61b4
BLAKE2b-256 fad3771008dfe72651a95e0b91c141f5938ae346585a3d26296d51d58c7c038c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 44ca9d01e9761208de5ab845ce86096d3e730b35acc0f90cedaf58d3dfa4e325
MD5 7fc160ec937c7e2c27935700ba0d815c
BLAKE2b-256 c49f730e34be444a2924cf3bfa4ac4b015b656eead79e735683efecce5a69c34

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6ff08246d6c6dcdd6306a7d806eb75867cea6238eeb88778fc9c577d8e9fe2d9
MD5 371a654828773177396f32a84d8173ee
BLAKE2b-256 abc500a0589cad767d51b8f431cbcd3295e385bfe4d6b1fea844dd8e8dae612f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22cf74b87b11fbe732ce6e23699d59b53208114232515975ce486d1e6b5248f8
MD5 a9ce541e6ed8a94c1c3688e3721b6ab1
BLAKE2b-256 f784cf430e12828032c459994c09ce8a9f0da6069a02b76359ab229266a41a8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 70cd0d092d872b17cf1cd66c394a0537c291c97a539bd884fd0c2bdbf989cccb
MD5 3f45dcbd4669330086fc7124056d4508
BLAKE2b-256 15a207458f4eb072d684528e2e0aee011edb473842c26cd1d69cb09c197406e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 db98041fc5d22f1cf66b38a361cf07a15321c0f2956b6134b007733de8befe2a
MD5 10644694e6ef004d273e1877d225dfe1
BLAKE2b-256 1e61a77fbc2aeb88c15300f3b179b9afb0c3f6395997371232929eb750b6103a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315t-macosx_10_15_universal2.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 39.7 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 ae30d67c5f41be6c70d28557c0a3285787dccbde46a3c84a97d01996cbf43e7c
MD5 faa648ed3512c2b342e99281840b591e
BLAKE2b-256 6bf0995893261597dbf57446862928c94b7bf3ab44f409b166d2d1404b226f06

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-win_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 42.4 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 8d58d74be01b0eb74a14cfe768495c57f3a7a7c573a9db3c984b5f2c759a0fe5
MD5 40389aebe9b443435919cb11bac46c7c
BLAKE2b-256 6ff7efd515b3b5665ecc5cf5113cc5c012dc8028404ace5865ab774af22f5d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-win_amd64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 a4fa195374868fc65fe0ddefacf080c191f7405b36c8ee4ff7ce6c749b52dff9
MD5 8e56f018f64dfa55dee9e58c62c14b89
BLAKE2b-256 487a726967f0adb26918095a0162f55a65ffdb10e7fa4909d251b9b725f7d361

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-win32.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61104a5fc2923d5670f30e3ecbcb12ed70f49a17dfd757b32bc965eb90b53988
MD5 bf85a70a6671da1ac83c571d44e3149e
BLAKE2b-256 30731bc3907f97cf636316414e56b929d990c0754baffd607b560d0d52e71fdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp315-cp315-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 110.2 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4785dec2f768b74c0735c9f0441b2392111a1467c463cae737bad30ac976b524
MD5 fa4a7f40adf0bc7ced0588b446f15102
BLAKE2b-256 41aeea3879a4da99713b278639d9e55176e45a67464df7809c41d5a0bed9ada1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-musllinux_1_2_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 48ae6e629a63cdadc29264a66edbaac9f18dd77feed973880c65393820867426
MD5 8092cdfa34d69aa7bed19b49c1ebd28e
BLAKE2b-256 e2161f8a1d767c741653100496f2e62866cc857ee14a147628538b83b9cb223d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-musllinux_1_2_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp315-cp315-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 99.6 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 def4d23969c4e944a9b01ad3187893edda1cf185d5913224420a72d1959245ff
MD5 c1faf6345a43dc17b164fa737078ac67
BLAKE2b-256 ecb0411e361db86ded7b9db1db994cd9bd8fc1c50911a6d7a959c1e101214ed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-musllinux_1_2_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9063635665d5e62601d1f089526155ad2aba3c85e2050e439c774919447155aa
MD5 39fb326be1a0354395402f08c14e3db1
BLAKE2b-256 ba7659c41858157a8138e3e0f8a95cb014bbf8105598e3ebc7b53a2254561844

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 90ac257fd93bcd915672262b5f93f606400c1cc29e869bb2ff806038e7234a94
MD5 b986a33c3963a9062eba5cdc41e101b1
BLAKE2b-256 e99e5427b7b5c8ab602a1845550d02da15acece374fe71da602e3b0f37d171b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d1a9424ee53ac4600568f02683254237a3400af2f683060e7217f744d0833885
MD5 fa2e4592c11649f72654d465e3bf38cb
BLAKE2b-256 88a3085c3e201b23430974dfee96df108daecb7142745deffec71e569dfad0bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28de4e0a140f86bea109a6d91de9f1e9a94c9d88e6ec9d4d3c78924e4f8c0a42
MD5 8fe30f299761629b867f2f31e27d0bd0
BLAKE2b-256 e37284dc86824533d3302dc497c8f2c7bfa5e0bcdbf340f378a3c63d05155096

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1232c5667aaa2f1f77096d94dc0019ceb7ace106e9066b66d28773c4226364b0
MD5 d5d7fc5a4592049fbd92a83e39734eb9
BLAKE2b-256 f3c9046535bc0362a83b28630f68e4dbfdb2a5b5e56a6463b226a023a96ad593

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c541249b3b9b5a023a9b6c9cc29e16777926e513c97fad3e2c44956e30d5fc7d
MD5 4b427a3226b48bd3197421825e72bf18
BLAKE2b-256 af0be7db2ea82300479c32e30c26082b88eda5744a49d41d8aa5a0fb60d6b206

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d54b2f5dcd78b99893d0f6f265749886ae4d316fc54ab352444e581972555210
MD5 74bf4c6167e8df7c108ea487cc71211b
BLAKE2b-256 2a0198f2f2ab0ab87eb608841ab277f94a75772661a2b20ce3a9c1bea38f809b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 453571409c955837178bedab51d5514aeda9ee4854dcde9e9134765f22da4380
MD5 ef4e91c3a1f03d7ac39693fa4522a7df
BLAKE2b-256 2a96f4c4c46ef01757e10f4b89886bc49f0fdec904ecc2da9b3844fd5a331d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9438a4436d33b4c71b57f20cb982f791703c868f8c497c998ec33de3b9c4ce0b
MD5 c3aad832b1767ee2dc489521ad2114f6
BLAKE2b-256 8fba88da42a2c9b0d3c7ce030c4c2895cdb01ed64df52c811e08e7358c16eb84

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-macosx_10_15_universal2.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 c1fc62fc688e884fb6300a536297a09c089c43f9eb8228790bafa66c28e28900
MD5 16a5e5cc351600936027687b0dbde4fd
BLAKE2b-256 3b3dbb4b474e5387bc4654cf945734edbdaaf9184dff507df09b624b9389208c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 0619b41fc524c0e1bda7b29e47a9cdb4746be3ebd9413798f82c024894283d47
MD5 d0dd237123e9da05e119d51bacfae309
BLAKE2b-256 d76cbba95309795fc92947b5e2ba86b1bff97ffcd8fc56d59c40073a33cc1259

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 e5133cc123cbbb69b585bb0b0166bf03c035787892a8b365238dd060ce02f8b1
MD5 605d487dfaea64d1bd001de839d7cac0
BLAKE2b-256 4362228fbfe338dfb3fd410fba5f07765cd0180792d4be62581b717dc6160d11

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-android_24_x86_64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp315-cp315-android_24_x86_64.whl
  • Upload date:
  • Size: 42.2 kB
  • Tags: Android API level 24+ x86-64, CPython 3.15
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-android_24_x86_64.whl
Algorithm Hash digest
SHA256 0e23bb59643dd36cfc1b5b6f32ca494dcb798f46281f2fa4561d34e7de777a24
MD5 fdd49f26a99177d561159b34f17f446e
BLAKE2b-256 609ce31280eba39ffcea51e1b895acfe743f5acb5a59162cfac6009360900068

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-android_24_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp315-cp315-android_24_arm64_v8a.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp315-cp315-android_24_arm64_v8a.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: Android API level 24+ ARM64 v8a, CPython 3.15
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp315-cp315-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 88a79efc9949837126358be48d3a73628b615d0f9e4a81b2f819cf324b6fedd2
MD5 c08ca2fb4b1479b7a7efaf3445b46e01
BLAKE2b-256 7a2e7c57e51d1276594e2c790707d2d36cd497fd96127eb6fc311274cb8c887f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp315-cp315-android_24_arm64_v8a.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 40.3 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 50958a182c7e189fa1408d9a28d9a37afbb3d72107cf8c6fb69b07b13506c246
MD5 773105865d5b8533d659d3c04eaa0383
BLAKE2b-256 c88b221f238eb4259f42d72d154ce4c4383c65bdedd7d8823ed9e7a564978a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 43.4 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 55347832dc6d49731283717087551839fa46a7997929403c96599b1bc93124f1
MD5 8d1b7b3c1d6717f09b1e4faf33693127
BLAKE2b-256 1bc8263a2f5af994a2c661fde9483b0e98e737b04831895bfdefc85fd81ed65d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 41.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a0eee1c2cafed49facb1fd300f684401ba5bd557d6d7dfa9bd0c13c5b0904f0c
MD5 725b2f8e265b90e778089f6daee1782e
BLAKE2b-256 160ebacbff120a5218cbf33cbfb562d1435e10ff43bf20345d1125f4086ef842

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-win32.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1cda1816c79bf9f7b0f7ced1b48bda64c8157a8532e1318727b4157062a5a67
MD5 762c59a5cf8bf6bd38a852d9a93af865
BLAKE2b-256 aaa7e45b0a053c79c1567f64989d4f3bb6f44510d2da7c6a38b8f82eee94162b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 93203131f4da1824dec6ffad11ff8afa03f0690f0075efa901ad7517a261a359
MD5 18bca4173303ffbea4bb88cd26f5b88f
BLAKE2b-256 9198bb8f8ded55483672343d6b087e0fc74cd76bc9d1dc1c18c32aa468efd096

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e87e2c89016a83a6d7b8ff4e688ee6da843c5bf46bd1dcbdd36b181639575350
MD5 d6c1995cc315aa4708afd27c40745600
BLAKE2b-256 0de7c17260aba7a7f111d211e382dfaa14891691ab171e0172f7d251498fd60b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 111.1 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2bc13752e7d80c7ea09d09368b78fca0d52f461c5c16abee5e4f78218f3d346a
MD5 73dd8e2a4e85d00a328a5c768ee1fd6a
BLAKE2b-256 d46fa9810ece96d857dc05bda61341e48cbf65bca9c8b24b368724e0e150d2d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23bafb94a90f3ce2044b8a7a36c6c98ac6830ac8df1b3c0b65faa27a1bcbc49e
MD5 f5845533b32bbc8ada5c193ee3dca513
BLAKE2b-256 f9fefa430565444bbc68fef9fea7944ee976265bd0b39ac698cf170e266766e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 10508e24e01f6b52c91577e22c4466d703c2c696d34fac1a9048e0da837a1a1c
MD5 9ab917ff70a4ae4c1a8e140b641db695
BLAKE2b-256 773da109fc9bf5263d14989d7aaa4a51e4f21ef3563b9413ad9c05041c4d8403

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2d028a0e523d0c3e478544fc8350c024a0e0d73b549dd6013af4119a87589de2
MD5 38f6bf814edad894fe0245cf0621c00a
BLAKE2b-256 847e79821c37f93fe15ca6710764c651276c6de63e376004dad7b63bc1ddbf2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27706a3a4700d34718bd1eaf89719a13bbaa269606048dd00173997562c19c92
MD5 d2a49c0c4156f06eb47cebb0eb726ac9
BLAKE2b-256 cbeeb559b1155998448b641ff73d03e1f1141f6390f63ace9df4e42a12120cb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 816db9f5ca3da2ecc9c74481c5b0474cc4368cb94e77f40bff8493abeeac81f0
MD5 29fbc218f8d4a6d53e1ebd7f0025cddc
BLAKE2b-256 74f96ab1a4d663f0c2fea4e7aeb0bfd6be70897981cf4a71f8339b2510d89ea6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 060888503ab547f4700e93d13f45ee0d7633f5196028529c1e98c27d5b31520d
MD5 7a0d9acc6e92b982f0cbe53d2da9f0bd
BLAKE2b-256 260b4427f0134223b4061146bd6131db2c3b882fcaa08068e0f0d8c1f944a3f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 045b44b299a658f02dfb43db4037437c66290f6d00984992030648b8ffc230d0
MD5 39af698bf4f94d6704714cfc6af9880b
BLAKE2b-256 fd7439ca2c868a1f921db0962067e8fd8f5c31a3a4b2d0ea6bb279e8e0948cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe9b3b53b0688e9e5d7358e934e87c2da5ed34d997d0ef1ec403024ea760215b
MD5 af2783b14ec417865451b7313b4caa79
BLAKE2b-256 dd8fcf76d541a79d95254888834d0e848bab14b4f98a44e18942c26ce75bbc83

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 397b26f58cb062233abe36b6cdcb99f08204f529d2384e0f3ed07901dca6a2c0
MD5 24f2681b2daca9f96b4ab250f1dc6e9b
BLAKE2b-256 1afd70b15f5f0038c8fe2cd2a30ca83404e1282af7643ba400214deff3a19498

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 39.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c1fe81cd71d35fd2770dc206a4bd818bd73b515810314e1573b9db8c9a0284db
MD5 6b6145813071e77e54072ab213aba30b
BLAKE2b-256 34ac974345d0709558e4bd2f8d16c46fe480058d1ac4109e90cd5f2a2525bdb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-win_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 42.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2585bef3623efaceb1cf4734c27bbba81b9bcb4ea5b8bf53823ca75b388933c9
MD5 f38f13373883795dbff0d3bdc126dc71
BLAKE2b-256 c7f3571defe22c618c25ba6724c7029fd2ee9977936910aef4f46398f5ec2bb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1b51409765cbec88396b7a47d87220f9a34112c74a8d0db3ca2551941f023c74
MD5 43357db1ff84cd1bd50ba11fb11e9889
BLAKE2b-256 f257c131c0c246714bd6483c52360fd4bbcea86ec007b1e653de3dbdf5bebb79

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-win32.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f60209149e1011b4a3f3119ad2404b06507fe077755bdfcd4ea0090f64cb399
MD5 cc155a9b99738ec9688a678ad443927f
BLAKE2b-256 cd7f356303be62b1053f57a506ac33b2f536a8665dc14a69c6a8468e9f5fb6d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp314-cp314-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 109.9 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 762a03f0726850677f7f1e34a105d9121b4e11a0c20c28c56fc4b33a809c0e64
MD5 6980b1ab10678fd1210593b2aecf3890
BLAKE2b-256 e786f07f14f4dd7c5738d0008e7311b47bb84c3a8ab55c753ba1dadc93a959c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b93c17989d23a08104acc7e1912250b2eec4d24da9983d3c5f8ca9cda8d62a02
MD5 8d9c9f87f9824f87e5d2f96da9d00e50
BLAKE2b-256 790a0077b5ddb6e13c6cda29eb1b31c5cd12d3456cb625e9161e5f35cb0ed787

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 98.6 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5ada8e81fecfca0d934520be81117e5fdccbce7ae43612ae8aeb6c40dfd69ff
MD5 abc6dbab9a6cd453f612472f73975d7b
BLAKE2b-256 514c4ee963b65c9581f429d39b1242d2579c4f74648c848c364634bb24e9a7ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76601efc7bfe44014d7bf7d6ba9c75bbb0b426c93ce0f9216cd9ec5d384c224b
MD5 60f8f14901ad772fc6f9a9125de149cf
BLAKE2b-256 1353904a9e87364a0b472ebc3662a6c2e705b8051a726058cb7776a6c2a0966f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 422defa81ff5c114213033cb1ce45f3904427ec9dbfa0442a0f4656191f75f5b
MD5 8fc251e3659f5ac6b0276e48565762f6
BLAKE2b-256 dce2d2edf34aff2af42afa6abcadb158096dd015234065811323208b63508c03

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e7adbd0f38ead7310e1e7428f254d450857645efc761c937a7d71100cce7a3a4
MD5 e4ef70aad86bf0707f0a5cefe6ab16ad
BLAKE2b-256 78364d87428276987949476258c116a092e2110b1cd33268236282c2a71be074

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a78928eb29e96e8386eebc6c4271648e3918502a24296da7020607d74d33e622
MD5 6616aa634ebf668a65114f9c122813d8
BLAKE2b-256 818795bb64aa64057349257c487a87c7590ca205d61cacd4248875c8ad5f0530

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0a301b316198758aabbfa3ee565e221b757645d9f94b8a9d2889bfefabbb77dd
MD5 026af96c33319c685486a99ca4f500e6
BLAKE2b-256 cb7471b8f3d20b201511cbf3a3d52f7aebf5b62f8a60d8ac1a258f093e447e09

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 302e5b527b36a875abb611911142e92abac7580faec51318440149ab13b8e936
MD5 f012e410e03de446d822ab4c721a453d
BLAKE2b-256 3464cbf9923093f18f16a655ed5405f8992498c542321b0cbfe92c650c778dce

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc6018e95814fd64ea8357c6e9e5608b97b1f33962c76cff60efd52f76b18a40
MD5 ebadad0ec3ea675c8183ee24eda2bf7d
BLAKE2b-256 d8bfe4be8e728d94387c673510b11120d003f929858169017ab87b852ab5ac6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e0c195d2a2cf60c5f32928415d44d430129899b4c215d710f93179a056cf560b
MD5 974327625d6a3b65bf8c6587121dd716
BLAKE2b-256 6e5c4da4d6af3f10635f6042ccfb5cc54ac90a53da9a14fdf1f9168892109b49

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b77364386164808efb1d7ea1305b14bb04fc6907aab242df3f6c04f5f0c1b371
MD5 9cd5994d25bc6dd886e74cce76d61574
BLAKE2b-256 f6edcf1a8e5d5d2a74918891cd790e22779d11e3ceb0bcabacfac7d47be2ccc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a404419c65611d015eb03b204d3558635d97fcef149d0e8ed0ef818f7262f76b
MD5 113db35bbf0939ea88f9159ebcc20b73
BLAKE2b-256 60b85dc5a1c593655b8ded88a88c27532d59ba7c94dac1c51665dddf6457cfca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 24eb191910181f4f41ffa2f323d63ebe725ddb0ac461baaa2274658cbe6b4c7e
MD5 f99fc4d156d10200d8d681aef4544d89
BLAKE2b-256 7fe32a1bfa294ef9df2f48d298e26d1bb05b44ae5ccfab3531a66fcf16eee361

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 9a1841be8752f46cbf58a4825f3789ea66ed9c1190be5d81327509cf757b6f5a
MD5 8dbfafda4ab00aa308abd5d6c373799e
BLAKE2b-256 d6d9c61e52eddb1e02a25367ef1121a14b69696f17067e3395411e0a86d69ce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-android_24_x86_64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 42.2 kB
  • Tags: Android API level 24+ x86-64, CPython 3.14
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 811f0ef99cc178becef108563505b9e5aa69a406028136874edf6513d3568f8b
MD5 6e9d3f2f80da44bf986d1b9ac870bb44
BLAKE2b-256 8883a2ff105cd6bc7f18c19c9e5e288fa741821788834d5ddd637b5f33d879ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-android_24_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp314-cp314-android_24_arm64_v8a.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: Android API level 24+ ARM64 v8a, CPython 3.14
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 60d00bbddaec09e8d3259a0d8805e16b96b2709f14d9c486e29568ffe6f55993
MD5 6e1672df26fb41ffe3fd2c12adb869a7
BLAKE2b-256 ac5d838c2260e490baa075d86900ea5179cc99a3f85b6b4377b0d3671ebc3c7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 39.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3fb0d4918b7d827ac804069849fde03d516628cbbf7bffe0b957ba6f1440cca6
MD5 ce916b7bb0414a0f51ebef1eb7c9916b
BLAKE2b-256 8be14312e5c18c8ef4060c9b50f1a645c9af7c3b79fad012c18fbe64a1b17103

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b1829bfe98d1f6e7bd79646b78e73dcef92c5aa32aaa622b9e07bf39df98c9b5
MD5 ad84fb516d569c895a3aeb33dc5bbcad
BLAKE2b-256 45c7138d77c740f9d33ceffa968786fe23abe24ce442c210772b5b7cb6e0c198

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 40.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d7eec1b09bde3a9b6e2102717a587b9c9a96c360a1ef478b5668414619cac606
MD5 30a9cd63890ca4ba2124efff64e3128a
BLAKE2b-256 ee807911629b930d46ef8cb3165bce44f021d31361a2d7c56e35efe7b0d90493

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-win32.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f61f2850b318c043961662f6cdd08e69b05f1d25d0e321782a3995d39f811548
MD5 b97cfbdb7c1aa4f1681f0b513ccfa393
BLAKE2b-256 0ed2ac7e18d6fcee3b26e06b3d33ecab4459b7aa6aff9859b13eb13e353a69ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 109.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8962a67c314f1da82957aee5b940698aaffff13e41b3298baa59d30cbddb23e2
MD5 de459eaf370cf2dc4896285fdccd1f68
BLAKE2b-256 a6613b974a1cfe683c6cb01d2d3f2d5eddfca7e0a175d976d2307269143f4e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 da4ad7a0d4c589069c46101dcb55ee304616293bcf614f4c445b3ecc961fa836
MD5 a5ffab1885277cd4edb14042cdb8d585
BLAKE2b-256 9710abfa952c6a443d07efb286b53b439d4418f7cfbac49fca8974cd78c17427

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 98.6 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99a5b0a908beb01b0e134b7b085d0ea6bfb7ed28ba3ed0737365aa2ce9bda0e4
MD5 81b445ca724392163060f573684569dc
BLAKE2b-256 1b28b0548d78133f8e79bb16d6487f2df504ff4e16ea1330954f26be83b645ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00105934e7d52f80b4364282918c37e2cc3cf9868ef4052016cbc39d8711c3f4
MD5 6935ca9d423801725a8cd186a5dd0473
BLAKE2b-256 9218a879ce4c26e8c1741b575e6c854b2323fd7e116000965c8904428e66fba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5c0772d6bba19a5601d24b3c6ce6627484fd5a3fd1d402913e1578b1447d51a0
MD5 6c3ae289531cf662884989d880209f88
BLAKE2b-256 6ef668dbb5461727bb14fbca2342a7bba4521400d679d64e00dd98a992eb0be4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 598350a6adefb5799c800fd00bbeacbc115ee560e2fd7b35f703608c1037a2ed
MD5 b2c1bd012fbfbb21ea643ba45ee8ac9d
BLAKE2b-256 1b6123168dc6fa92e1d9b57905b89c694a521a00570f0fe325bc3f6422fe6119

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83d93abf6a68d54b4e2c4c041ffcffeb94b1c9ab3171443fda3f5f19024be517
MD5 99f2cf0fab273df91dfd7cda2466564e
BLAKE2b-256 a32af4fe4ebf2e44f49953ed1ee6b90d329d6843ebb949e60e881dbfde84e17d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4a19b00097fcc8e3008bb006cd6bfaf0544e9fa2abc4cc77fbad57971a37dcc0
MD5 fab3a33aec4444d8d28ca80adef54c25
BLAKE2b-256 da6fc6a4acf4715fede1e0acb17d6080ebe9b88290d113bbf9513a8728c65b4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b6b7397804e9299bd0c01ea426245fa3d730d3e9c31f583f51aa87bed399c481
MD5 0cbdc2e8ef946de89979a3e5771e0fa3
BLAKE2b-256 b5619506d0b30d7388846cc3b884ec63b8d67f3ad2d521e61775315111e70ec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f9cb34c661454f73432112a81ac522ebe69500feeb8d77f744f6bd3e8b2f2ba
MD5 ec73cc036f88c28a8aff4d31e246fee7
BLAKE2b-256 02f6f5cb0e2f7bb7df876847dab63ee984c3f6173569d5b892edc04bc797c1b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e2f439ffd4fd7d64b77f6a287d4605700bad26fe12bb1b63b4ee45211344e2fc
MD5 e8d982938d4042c761d20c455ab3bd8a
BLAKE2b-256 49b7841b580415a614a3ad836db1cb8d57c425bbeb717c80263a9d979b1a4eac

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d95ee6696aa5b7283f4a27b67eb7db1c4fb5bb7a9117205d29ebaaa7f6294d7b
MD5 14e094d7405e13f60e65c8431fbec40c
BLAKE2b-256 f9ae11459b39af5341de2a048998a717f57b3a1c4e6a9edf8fe09e314b2c263c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 222ea0a485e23bdcb29e28d15b8b01ebe34e8720bad4b5f92b645ed86e3fc715
MD5 94d325395313a64b64ebee0812f6483f
BLAKE2b-256 74e8a9031fe6ed0eb06ab1c98eb76182eb01dc484dc46873a8e5ef3097d9bdf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 86238bb78ff65c9fc1e6b371b78f271e23c5d61898222c201122209dc8eadc76
MD5 6273785433455a082bcb5c37e5d87499
BLAKE2b-256 ad05e137452583b33a56d053ad48643a7c56e4cf466efc8a145da6a736913ae3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 f401a82d80c53d88605b82a80623edd95d922732d2c513c1c5f8e4b5e10c2913
MD5 e536f1b3153da70a9c97cb6b265950bf
BLAKE2b-256 271c99f2ff480922046a496c2e53728a13a467b68f01a0f48370577c0825a763

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-android_24_x86_64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 42.2 kB
  • Tags: Android API level 24+ x86-64, CPython 3.13
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 2b4cd2fcf1b517872530d9ef1a2de2ef9b86e5a0f8927539ea0b68337618244e
MD5 b3c32043da2f4e77ec6e0113190a65ce
BLAKE2b-256 629ccb0f23e71bddcc519331c9787ec029e0d2fef64ed1bc490ad84b00a43950

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-android_24_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp313-cp313-android_24_arm64_v8a.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: Android API level 24+ ARM64 v8a, CPython 3.13
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 6576400e7a748ec5c7ea72f38d626939876dd1756f4a0ccf552b8646dcf6f3e9
MD5 ce94532d1f8de770892fe02460903102
BLAKE2b-256 8bfae07f6b9e2fba550fe539b6c66ee7fc28e44f5bd445a7203ae4c169d4aa72

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp313-cp313-android_24_arm64_v8a.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 39.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4b660543eee66d5f07408fc1cdd0d017416f0f5cd1725def314cca3f67b0cac5
MD5 cd5103868c0cfe9bd7852a7d09829405
BLAKE2b-256 d1eab534107b184454994865f5c1695df2f666672f16636b814da182b3ab0f6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ad5e6b56000d4b1b82a380c664982371939dc8f728fcbb73d017edc035247dcb
MD5 6f16d5d8fbecf40071ba11af54adf3a3
BLAKE2b-256 3986695592b763d2c0a5739ff50e62be102a1790bd5817a5f7f9ed2ffcbe198f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 40.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d4cc2cb5f117da6460c14c65cbc0d1cf0976af3e56de6cd627cc36019f323e15
MD5 da8502e68e7713e2935c6b8c71d3b200
BLAKE2b-256 f4beeaa4b95e3fdb2617ec1c1502ab15f5941408c02a3c80a5df63ab4c412abd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-win32.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2b77b3e6a9d817822407b32c514205b44ceeb8ab197bee09de19e5f1e04ce18
MD5 c583a1bb855a4a90af6dcbdba238a905
BLAKE2b-256 a68990e3f0f59eb13b362cb0c091a1ce43b94325fae8c6c20a991dc9ee6bd0b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 109.9 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 408d37be08e12a154b482dcb300781d3dd154abab8e002ab32ecde6aa6a325bc
MD5 d83ffa804a53c9511aba87c2a6988619
BLAKE2b-256 f7af7e072e63c10f81b0d4f2abff29363029144c62006baa1fbe437302d24f05

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 767c6c0cf3f67c3e4e246ae7e1cc9ce7755f174f994aa3111c8357f16a587161
MD5 f43a5e09a30a059508ba2af43e3a9962
BLAKE2b-256 011e501564ca0687e4138c01c12d5b1bc049511753f5a5db2538ad662bf16d97

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 98.5 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0c7a36ccb66bfc8fcfa7a9722614b959231e325f0e08862c6ea70a7283a6520
MD5 ec07e10dd0052b681a697573445569d0
BLAKE2b-256 e7a80ce084753cc8a82f8cbadcb6723f2e17c341b17683eafc49729a55db4930

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a6bd95c410ec9500d9515a4fe522e24452f71df38de47395f99aebc085a5d5a
MD5 c0b08feffa0003f6eef8cbf2f70b6b58
BLAKE2b-256 f36b665f1bd97666095f8a92b4191e22c21038c3e5f6bccad2a09218962e0541

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1d5de36640293374673ec6813b7a23d8a9621bbd87f079c6ec4c5e8585cb1f64
MD5 a3a3269ee25d08b25193c375fe8d0754
BLAKE2b-256 cd0434e1242a23e14c78a39dd76ffdf860e76d01c917e4103b9729c27efc22f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ef9fe783b932927da8070f5b2913ce412e42c80bf17fd523042325ee3a44f756
MD5 c7110ea518c4b9204ccaa5ac2c4e68ed
BLAKE2b-256 c5dce7737d142ecb5847aad04fc92d63bd455587f5dc33ebbfddeb7936f98713

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa216ac716e7c99e4dc4b039c6219a31cd381cc0588ca45cf66f36011613f3ed
MD5 50ed0a2214f502f250fbd0ed07abeb4a
BLAKE2b-256 47535710edf5edd969bbc42985577ddc73758a1c90a1613ffc4356087b5e330f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 98db40c6ef8bbeb028e0424736a6bef3b1d8d0a02399236eb00db0dd0b7ca957
MD5 b0850d14ff6d2d44ba105df14ff58a40
BLAKE2b-256 afa65012e363699c598166fb955f7267975284dd51eadc0383771a1a593d4ac2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c6fbc4e3017fb99e639abdb58a6a31e14bcbd270562805a0b80a102f8a4f3024
MD5 02ead1241fe3ef9c1c322aa43e71c8c6
BLAKE2b-256 13ace9a157fbeebf44da5e39e49ef3901cbd68651d966658b58303074f349422

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bee76669a5b588cd806aa619ea9eb8f0c8a00e6991001d830e07cc69258962a9
MD5 6b85c5f5d08b8332ae71cb7a5d17d673
BLAKE2b-256 c7640a5832cd45207c507ee83bb7286dfeccf51c438aa8b6217f44f286f354f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 430ed4de594d0084d9b7956b05075a9054d290a3a0d7b370553a9096a4fd429f
MD5 e28d20f7e969dcee2b81d205a933fa02
BLAKE2b-256 4413629beb4d3e92ffcf1486c81cbb0605d9e6685b2721eb6753946a9d217359

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5e7373e6834e4bdf2c24dbb1a0c6dd834bb5a189efb65723ebb58a8f3e76204b
MD5 d7401e8bac48e68475097df1d6a2b2d0
BLAKE2b-256 ef9728c3905a7e27e100ef50322798659e0af514eff600aabffbab00e3cd27ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 39.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ca4b9402ca8ad16ac8a76aa740c6d8c33a783c684b2f9320685f806ea88306ca
MD5 640bc78afc94e31465a7ad484a8a15b9
BLAKE2b-256 99bf724fb70eefe649efa9470350efa3628815afb10a38fd9fdb6136c39f187f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-win_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 41.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d0eaf2ff43d5940112cb863c6a09d7d942b6317c006362c555d4c523eab6367a
MD5 9358bfd7d95818696a08da0d105da450
BLAKE2b-256 0598255190dfa39718e02f588b1f6178b5478c7a664ce545869ac9d392b4281a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ceee3a95661cd91eaa7b42d303e1d3c7d0d302674cefe74022b574523af218d2
MD5 f6afdd16ebb75f71bcbce1118562921a
BLAKE2b-256 50b79b12b72aeeb7a1200b007e0389d632f40a69f3fcb193bbec0701efa90064

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-win32.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49e91971bcc5f6170b451a18bf2c7c50072826ffce7a365d097b32ee01789add
MD5 ddfbc5020de378f3cc90b3f3342ad561
BLAKE2b-256 07dc9fe5b9b0b506427ff8be2fc39573c4ced33b991b543e107b91b95dcf3d22

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 109.7 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d5babb2a32f79826644c75ebe1e449ddf9035f38cfe4c820e2e3aa61adb0dd08
MD5 a77502a4e6f926f28c8dd506d173b754
BLAKE2b-256 e2d37fd61091f0d0dc5db04e66e51e245ca12ec90f61ce619ada582b57c0eca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6e30838399bf3ff46a97a90a9997ed6960abce22352b33f7469d0f54b4294064
MD5 60fd556c59ac497cd92ed12ca02e129f
BLAKE2b-256 f7fb4b02bf59dac23e3cf879e2ecd0048081a229b756954b0a12a5a0fb4cbff2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 98.4 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 235135d482a4176b9cf42920bc1f47f46daf746f5124921e3bf1932b55b6a327
MD5 e7a1924b5f7a9f60d9fdc9a734c27b8a
BLAKE2b-256 eec1cb93ab01202633a55a3ff65c6f98dc7626664ef27b65cce03efbdb221ecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcd32858eb0df02dd0210523f12e1dabbae1a8d2d74b58ba40aabf2ca75ef872
MD5 16fedeaef8a5028015339c614d9d67d5
BLAKE2b-256 aafae1902b6b00ccb139368cc6251fb405a8666104c615ec6a5c8819838be29e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 81b2682cdcaef93e1bc110ee4d626d8117c50c0427e0e9b8120e7c00dca90474
MD5 208a7cf0ed8cf5f6ac1917f26982220b
BLAKE2b-256 2f3b4bf9bd3a9ad3b8b15678a908111710309a40b55a23ea3d76604db0705be4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ad12368a31ddcbc3aed132ffee572917026315936a7df5433b9a9e8a5a9b0c33
MD5 d7cb125f40cbbac157683a64bc624da9
BLAKE2b-256 2f23d0ac1695f9176fc40eeea62d97f9ebba8533e3ba36f20b5d294f8759df94

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be154e808cce4259aec43e3097599d8986f39963cf300fba1b414eb1c3137e1d
MD5 a71d19296e3e93f4d4e1790ae9d1b97d
BLAKE2b-256 6d1a168493efccc0a901ebd3a825102f676e7f0a3e7b2ab2e926d85734fdda7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 231fa0e3e9f9d02f46b19c2fd5bba4d61db4415f06f450b9f0bcb82a69be6f48
MD5 f61a78ccd562b54e90c975894a65459c
BLAKE2b-256 287225cdb414d1f77198bbc477a6fe44f8b9bc02eda5ef0c048e1acbd8383f73

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 83537149cfeff3d960758a2e5db9894f6207d83750858b4e1ec249849d864edb
MD5 54b0fc671ef449c7ef9ec44c54eda792
BLAKE2b-256 c52a090225e40fe1e94dc685665e25e1c8c578d87a335fdf467e7250ab0d61a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e90bf1e025fee24edbba0b1459624d46ef9208d3d479cd13fae799d26f1609b4
MD5 00ada39ce67fcf4b03b5bf057e84f684
BLAKE2b-256 5dac3d8675e976068cdc91f8a0beba5cda102cda7fef87dbb8a13d27d327513a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 592e561f01e670699126207ac05b0cfa068af110adf95c7a8317615cdd9345d8
MD5 162f528432b77e961d08efd85d105122
BLAKE2b-256 361f590c4cabd7488f6ed40e3b63ac30deec422e984a14502ddd23e585b525e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp311-cp311-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 55.5 kB
  • Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d04df504ac8c214eb5e0c9ef640ebe97c539c4a32a94603e9c7aea595aeba688
MD5 e129949311af908b821489d31e9f52c2
BLAKE2b-256 d730e954812b018e3967ff308a8b118465836b217796ba607e40b1743d7e89a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 39.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2d58d876bfeb587cd95c9e00e31cd7d2737cb31e6ca83dbcba445667c4403ac3
MD5 9a2f01ef07ceea23ccf2e371f3d1c56a
BLAKE2b-256 294d21e470747dbf05a6b73a90196725d272328d1dfffb5686985c79dff0e824

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-win_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 41.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4770ee0d719be9edc3849a231fc29fde75bfab6cf234b79733ed35cb7cf901f7
MD5 2901a41568af13e8c9a349ccb3e45276
BLAKE2b-256 c47d3c551934eadb6ff6daa812ec65d95ddd4b2c40990c01b704eca554bde209

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e4e32e99c3f56f4e4766bd86f0d14f32590098240bce76df2452a8caecf7cdac
MD5 d1b60788d974fcf0eb75e283702fa47d
BLAKE2b-256 51418ad9289cdc1e426d3794df9e2d09bfb92043fbac6642bac8361f167a97e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-win32.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 381e2f183ebf25ac91c73e5d1b44b1676b287062fc9732d63bd05fb35bacb2b1
MD5 262fe868ede0de5f484ad7a2e53e088e
BLAKE2b-256 dd6f07be9498cde2f619caa77aec36691dbfe853dc680e778496afa978400e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 111.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1d5cd932e6e44762e393570299d50c719c91f3610e33da4bc82578bcdd039c29
MD5 e9e2539b28a8fd2bcc20d19dc6aef751
BLAKE2b-256 6a71fed7519e651b88f01dfbea1b02d4b06fc840f96b534c600f57ce69fd05cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c260e150268c47a51b5dc7c2d907ca2a18ecc9a1dabebd62da427342fa6923b6
MD5 968c58f3028f73113e8b4297efc710e6
BLAKE2b-256 e077bd0c254f7ab1582661a9341dc6e076e25a471fd3a05b6bcaaa00244a6d6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 96.6 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8404f75bd1f23c2a806d8e61c95845969f9e256a91d8cdc07fdecde9a39b88b2
MD5 28265886ac163c70961a06daa4dab113
BLAKE2b-256 3e061e7ae758acd44865a528116cf259479e31195f6eaf15bde41e44867c8d62

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b8e62fec0ca6a14d8e47cde788be90237b089ef9cf46628dafcd5bb1bd64a219
MD5 65336c0039a9af59b0f9ff789962dfca
BLAKE2b-256 200af3559646e2c1b60b1b0588a3310889f964a0efcd3cf521da243db0bfa652

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2ff91eadc4301f12ca6b46eaef21937348ed35a4789803fd92df5a2c044fdb3f
MD5 df378132e47ab4cb808d302d96286b06
BLAKE2b-256 688ba2de474c7edfc8318fd3b8048a5e200b0d43ce37e50612458fb02cf1fc46

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 25743ca117f8fdb707952c55fd86a03457e99036c9bcd22e6d5f9dbd0d80dc7a
MD5 1431cde841349c2704c7354a6f5c37f0
BLAKE2b-256 462cc81fcbb47819602ef6985eac08a2ed95dafa7f7d3167e8bda494ea7b991a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6f6a61516c4caa5413bd71e635039976224ccc56e82e3eb4a1df3eb5e370a28
MD5 126d76809f76110f791b9ac3df67b5d5
BLAKE2b-256 9f71b3ec99f5fe658488d84187c52af76fa77adf7882eac6a11ac3322dea6693

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bd044cff158529364124210044fec4f1b0a13219fb6e8b9e393384458bb753fc
MD5 eba7aa70686e687fb315e497ac6643c2
BLAKE2b-256 e52b8c7400a305c7f7180bf72476473decd15db7ad93f1283dc80177659ac433

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 97206d90a8c68079525f9c4f64e94699927ceb01569b4a4da1c798c758abcf47
MD5 0dcff8a3c979341fe42ef6aa42737e17
BLAKE2b-256 3e51cfb9395d924361898db9ddd42cfed6e9652eb9629b631ea6b739f1a33ce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6be479b31ba2f4f86f886060cff1e640facc7f22d266d960b0ca41a9bf2690ef
MD5 02d5c7cb46ed69432392d2f99a73c2e7
BLAKE2b-256 7144e81837bf0704347b936e44714eae0b3681aaee4f935fe8b20d48d6370449

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67be681c7024df71c5d38c976b8d38c5998a17058533fc4eca6599b730d73b3a
MD5 bbac9db8f33ae553d6fe0118563891b9
BLAKE2b-256 cb2c5292fff800e829622a0e0ed995cf77e2b3facbb994f7f6c70fbeba7c02a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on hajimes/mmh3

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

File details

Details for the file mmh3-5.3.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: mmh3-5.3.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 55.5 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mmh3-5.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0d8deb73a11a7b41bb831bc1c40fb9a70d9993d96dbfe82c0d3c6fb3acbe14ea
MD5 59994e9a7c82a937f7a6fc6dc5db61a0
BLAKE2b-256 91c2832363657484efece490fc1b8218a9aa0e1350b296b3e8b55ccdd27799f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.3.0-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: wheels.yml on hajimes/mmh3

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

Release history Release notifications | RSS feed

This release

5.3.0 This release

144 files

5.2.1

107 files

5.2.0

121 files

5.1.0

81 files

5.0.1

96 files

5.0.0

96 files

4.1.0

80 files

4.0.1

64 files

4.0.0

64 files

3.1.0

35 files

3.0.0

26 files

2.5.1

1 file

2.5

1 file

2.4

1 file

2.3.1

1 file

2.3

1 file

2.2

1 file

2.0

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page