Skip to main content

Python extension for MurmurHash (MurmurHash3), a set of fast and robust hash functions.

Project description

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.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).

5.1.0 - 2025-01-25

Added

Removed

  • Drop support for Python 3.8, as it has reached the end of life on 2024-10-07 (#117).

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

Project details


Download files

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

Source Distribution

mmh3-5.2.1.tar.gz (33.8 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.2.1-cp314-cp314t-win_arm64.whl (40.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

mmh3-5.2.1-cp314-cp314t-win_amd64.whl (43.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

mmh3-5.2.1-cp314-cp314t-win32.whl (41.9 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mmh3-5.2.1-cp314-cp314t-musllinux_1_2_s390x.whl (123.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

mmh3-5.2.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (116.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

mmh3-5.2.1-cp314-cp314t-musllinux_1_2_i686.whl (111.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mmh3-5.2.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (135.3 kB view details)

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

mmh3-5.2.1-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.2.1-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.2.1-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.2.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (109.7 kB view details)

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

mmh3-5.2.1-cp314-cp314t-macosx_11_0_arm64.whl (40.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mmh3-5.2.1-cp314-cp314t-macosx_10_15_x86_64.whl (41.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

mmh3-5.2.1-cp314-cp314t-macosx_10_15_universal2.whl (57.7 kB view details)

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

mmh3-5.2.1-cp314-cp314-win_arm64.whl (39.8 kB view details)

Uploaded CPython 3.14Windows ARM64

mmh3-5.2.1-cp314-cp314-win_amd64.whl (42.1 kB view details)

Uploaded CPython 3.14Windows x86-64

mmh3-5.2.1-cp314-cp314-win32.whl (41.4 kB view details)

Uploaded CPython 3.14Windows x86

mmh3-5.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (97.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mmh3-5.2.1-cp314-cp314-musllinux_1_2_s390x.whl (110.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

mmh3-5.2.1-cp314-cp314-musllinux_1_2_ppc64le.whl (106.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

mmh3-5.2.1-cp314-cp314-musllinux_1_2_i686.whl (98.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mmh3-5.2.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (120.7 kB view details)

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

mmh3-5.2.1-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.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (106.3 kB view details)

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

mmh3-5.2.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (103.3 kB view details)

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

mmh3-5.2.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (97.3 kB view details)

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

mmh3-5.2.1-cp314-cp314-macosx_11_0_arm64.whl (40.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mmh3-5.2.1-cp314-cp314-macosx_10_15_x86_64.whl (40.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

mmh3-5.2.1-cp314-cp314-macosx_10_15_universal2.whl (56.3 kB view details)

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

mmh3-5.2.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (40.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

mmh3-5.2.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (39.8 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

mmh3-5.2.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl (39.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

mmh3-5.2.1-cp314-cp314-android_24_x86_64.whl (41.9 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

mmh3-5.2.1-cp314-cp314-android_24_arm64_v8a.whl (40.8 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

mmh3-5.2.1-cp313-cp313-win_arm64.whl (39.3 kB view details)

Uploaded CPython 3.13Windows ARM64

mmh3-5.2.1-cp313-cp313-win_amd64.whl (41.6 kB view details)

Uploaded CPython 3.13Windows x86-64

mmh3-5.2.1-cp313-cp313-win32.whl (40.8 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mmh3-5.2.1-cp313-cp313-musllinux_1_2_s390x.whl (110.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

mmh3-5.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl (106.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

mmh3-5.2.1-cp313-cp313-musllinux_1_2_i686.whl (98.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mmh3-5.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (99.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mmh3-5.2.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (120.7 kB view details)

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

mmh3-5.2.1-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.2.1-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.2.1-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.2.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (97.3 kB view details)

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

mmh3-5.2.1-cp313-cp313-macosx_11_0_arm64.whl (40.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mmh3-5.2.1-cp313-cp313-macosx_10_13_x86_64.whl (40.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mmh3-5.2.1-cp313-cp313-macosx_10_13_universal2.whl (56.1 kB view details)

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

mmh3-5.2.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (40.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

mmh3-5.2.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (39.8 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

mmh3-5.2.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl (39.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

mmh3-5.2.1-cp313-cp313-android_21_x86_64.whl (42.0 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

mmh3-5.2.1-cp313-cp313-android_21_arm64_v8a.whl (40.8 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

mmh3-5.2.1-cp312-cp312-win_arm64.whl (39.3 kB view details)

Uploaded CPython 3.12Windows ARM64

mmh3-5.2.1-cp312-cp312-win_amd64.whl (41.6 kB view details)

Uploaded CPython 3.12Windows x86-64

mmh3-5.2.1-cp312-cp312-win32.whl (40.8 kB view details)

Uploaded CPython 3.12Windows x86

mmh3-5.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (97.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mmh3-5.2.1-cp312-cp312-musllinux_1_2_s390x.whl (110.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

mmh3-5.2.1-cp312-cp312-musllinux_1_2_i686.whl (98.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mmh3-5.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (99.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mmh3-5.2.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (120.7 kB view details)

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

mmh3-5.2.1-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.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (106.2 kB view details)

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

mmh3-5.2.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (103.3 kB view details)

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

mmh3-5.2.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (97.3 kB view details)

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

mmh3-5.2.1-cp312-cp312-macosx_11_0_arm64.whl (40.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mmh3-5.2.1-cp312-cp312-macosx_10_13_x86_64.whl (40.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mmh3-5.2.1-cp312-cp312-macosx_10_13_universal2.whl (56.1 kB view details)

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

mmh3-5.2.1-cp311-cp311-win_arm64.whl (39.3 kB view details)

Uploaded CPython 3.11Windows ARM64

mmh3-5.2.1-cp311-cp311-win_amd64.whl (41.5 kB view details)

Uploaded CPython 3.11Windows x86-64

mmh3-5.2.1-cp311-cp311-win32.whl (40.8 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mmh3-5.2.1-cp311-cp311-musllinux_1_2_s390x.whl (109.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

mmh3-5.2.1-cp311-cp311-musllinux_1_2_i686.whl (98.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mmh3-5.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (99.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mmh3-5.2.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (120.6 kB view details)

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

mmh3-5.2.1-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.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (106.1 kB view details)

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

mmh3-5.2.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (103.1 kB view details)

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

mmh3-5.2.1-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.2.1-cp311-cp311-macosx_11_0_arm64.whl (40.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mmh3-5.2.1-cp311-cp311-macosx_10_9_x86_64.whl (40.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mmh3-5.2.1-cp311-cp311-macosx_10_9_universal2.whl (56.1 kB view details)

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

mmh3-5.2.1-cp310-cp310-win_arm64.whl (39.3 kB view details)

Uploaded CPython 3.10Windows ARM64

mmh3-5.2.1-cp310-cp310-win_amd64.whl (41.5 kB view details)

Uploaded CPython 3.10Windows x86-64

mmh3-5.2.1-cp310-cp310-win32.whl (40.8 kB view details)

Uploaded CPython 3.10Windows x86

mmh3-5.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (100.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mmh3-5.2.1-cp310-cp310-musllinux_1_2_s390x.whl (111.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

mmh3-5.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl (110.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

mmh3-5.2.1-cp310-cp310-musllinux_1_2_i686.whl (96.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mmh3-5.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (101.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mmh3-5.2.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (118.3 kB view details)

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

mmh3-5.2.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (110.9 kB view details)

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

mmh3-5.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (104.0 kB view details)

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

mmh3-5.2.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (101.2 kB view details)

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

mmh3-5.2.1-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.2.1-cp310-cp310-macosx_11_0_arm64.whl (40.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mmh3-5.2.1-cp310-cp310-macosx_10_9_x86_64.whl (40.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mmh3-5.2.1-cp310-cp310-macosx_10_9_universal2.whl (56.1 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.2.1.tar.gz
Algorithm Hash digest
SHA256 bbea5b775f0ac84945191fb83f845a6fd9a21a03ea7f2e187defac7e401616ad
MD5 7fe346b5742d7ad9e915b4c97e896330
BLAKE2b-256 911aedb23803a168f070ded7a3014c6d706f63b90c84ccc024f89d794a3b7a6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1.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.2.1-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 dfd51b4c56b673dfbc43d7d27ef857dd91124801e2806c69bb45585ce0fa019b
MD5 ffee926bbdb209a11efed9ae0fc36e13
BLAKE2b-256 a00f59204bf136d1201f8d7884cfbaf7498c5b4674e87a4c693f9bde63741ce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 28cfab66577000b9505a0d068c731aee7ca85cd26d4d63881fab17857e0fe1fb
MD5 fef0b68458a46194e88f4017bd7328ce
BLAKE2b-256 9de463a2a88f31d93dea03947cccc2a076946857e799ea4f7acdecbf43b324aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 29bc3973676ae334412efdd367fcd11d036b7be3efc1ce2407ef8676dabfeb82
MD5 c573d41ec31cfc1a6c4d3247553188f4
BLAKE2b-256 21541d71cd143752361c0aebef16ad3f55926a6faf7b112d355745c1f8a25f7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 623f938f6a039536cc02b7582a07a080f13fdfd48f87e63201d92d7e34d09a18
MD5 cbea9df7ec935780a31a4b455012f963
BLAKE2b-256 af4d3c820c6f4897afd25905270a9f2330a23f77a207ea7356f7aadace7273c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4fc6cd65dc4d2fdb2625e288939a3566e36127a84811a4913f02f3d5931da52d
MD5 9a26f5c40d62ae698fcc505bd95f50d6
BLAKE2b-256 cc045a1fe2e2ad843d03e89af25238cbc4f6840a8bb6c4329a98ab694c71deda

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6290289fa5fb4c70fd7f72016e03633d60388185483ff3b162912c81205ae2cf
MD5 ff67c21ca0aa3920c015b457641c744e
BLAKE2b-256 81a6ca51c864bdb30524beb055a6d8826db3906af0834ec8c41d097a6e8573d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c85c38a279ca9295a69b9b088a2e48aa49737bb1b34e6a9dc6297c110e8d912
MD5 89bbd319604bb15c7903fe07d21fac10
BLAKE2b-256 43c46d4b09fcbef80794de447c9378e39eefc047156b290fa3dd2d5257ca8227

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55dbbd8ffbc40d1697d5e2d0375b08599dae8746b0b08dea05eee4ce81648fac
MD5 62cc55147a0468ae41b7108bf86f3bc9
BLAKE2b-256 9767fe7e9e9c143daddd210cd22aef89cbc425d58ecf238d2b7d9eb0da974105

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7aec798c2b01aaa65a55f1124f3405804184373abb318a3091325aece235f67c
MD5 cf346dc8c9b9000a65a50d96681e6726
BLAKE2b-256 a583fe54a4a7c11bc9f623dfc1707decd034245602b076dfc1dcc771a4163170

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 85ffc9920ffc39c5eee1e3ac9100c913a0973996fbad5111f939bbda49204bb7
MD5 537204ea03a7100c669c8ff369b7fff1
BLAKE2b-256 47cbf9c45e62aaa67220179f487772461d891bb582bb2f9783c944832c60efd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22b0f9971ec4e07e8223f2beebe96a6cfc779d940b6f27d26604040dd74d3a44
MD5 110558bec15229bca13055edf3a492f9
BLAKE2b-256 4294dfea6059bd5c5beda565f58a4096e43f4858fb6d2862806b8bbd12cbb284

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7e8ec5f606e0809426d2440e0683509fb605a8820a21ebd120dcdba61b74ef7f
MD5 b866c186b6ac4670fef605fb08229b75
BLAKE2b-256 26948cd0e187a288985bcfc79bf5144d1d712df9dee74365f59d26e3a1865be6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 113f78e7463a36dbbcea05bfe688efd7fa759d0f0c56e73c974d60dcfec3dfcc
MD5 f575f72eec8bb535844e9eaabac55707
BLAKE2b-256 9ebb79a1f638a02f0ae389f706d13891e2fbf7d8c0a22ecde67ba828951bb60a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd6e7d363aa93bd3421b30b6af97064daf47bc96005bddba67c5ffbc6df426b8
MD5 4c6782be819abb96b483f5904c7a0d0d
BLAKE2b-256 76aa66c76801c24b8c9418b4edde9b5e57c75e72c94e29c48f707e3962534f18

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0a3984146e414684a6be2862d84fcb1035f4984851cb81b26d933bab6119bf00
MD5 6fade390911b3e3d8ea4597b764e25c4
BLAKE2b-256 b732731185950d1cf2d5e28979cc8593016ba1619a295faba10dda664a4931b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5174a697ce042fa77c407e05efe41e03aa56dae9ec67388055820fb48cf4c3ba
MD5 c9339f2a65c45e8c36b45707f77c31a7
BLAKE2b-256 27611dabea76c011ba8547c25d30c91c0ec22544487a8750997a27a0c9e1180b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 cd471ede0d802dd936b6fab28188302b2d497f68436025857ca72cd3810423fe
MD5 81ca2780cf08ab26ec69ab70d0f09660
BLAKE2b-256 a47b848a8378059d96501a41159fca90d6a99e89736b0afbe8e8edffeac8c74b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3f796b535008708846044c43302719c6956f39ca2d93f2edda5319e79a29efbb
MD5 9f56aec4deca5ff6de4ce1df70c3b6ff
BLAKE2b-256 710d46d42a260ee1357db3d486e6c7a692e303c017968e14865e00efa10d09fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 54fe8518abe06a4c3852754bfd498b30cc58e667f376c513eac89a244ce781a4
MD5 68f429edea3aa6bb47ea069772cc0344
BLAKE2b-256 420fafa7ca2615fd85e1469474bb860e381443d0b868c083b62b41cb1d7ca32f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7be6dfb49e48fd0a7d91ff758a2b51336f1cd21f9d44b20f6801f072bd080cdd
MD5 cdc7be085799ea6a37a0c83248c17585
BLAKE2b-256 e3377181efd8e39db386c1ebc3e6b7d1f702a09d7c1197a6f2742ed6b5c16597

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 58370d05d033ee97224c81263af123dea3d931025030fd34b61227a768a8858a
MD5 9f23f2531afe6aef598f711fd4ad32ad
BLAKE2b-256 d38fc6e204a2c70b719c1f62ffd9da27aef2dddcba875ea9c31ca0e87b975a46

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f40a95186a72fa0b67d15fef0f157bfcda00b4f59c8a07cbe5530d41ac35d105
MD5 ed3159bb53f5ce8a332d850dfcb350f5
BLAKE2b-256 510476bbce05df76cbc3d396f13b2ea5b1578ef02b6a5187e132c6c33f99d596

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57b52603e89355ff318025dd55158f6e71396c0f1f609d548e9ea9c94cc6ce0a
MD5 1ab44b120c7f29d309f85aad9e216135
BLAKE2b-256 df0a33dd8706e732458c8375eae63c981292de07a406bad4ec03e5269654aa2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92883836caf50d5255be03d988d75bc93e3f86ba247b7ca137347c323f731deb
MD5 256ea449afb1dd2937da1560c9145433
BLAKE2b-256 e4923c7c4bdb8e926bb3c972d1e2907d77960c1c4b250b41e8366cf20c6e4373

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f963eafc0a77a6c0562397da004f5876a9bcf7265a7bcc3205e29636bc4a1312
MD5 0cd65bc5d5490f513b3d670985fe1483
BLAKE2b-256 a77c339971ea7ed4c12d98f421f13db3ea576a9114082ccb59d2d1a0f00ccac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f6e0bfe77d238308839699944164b96a2eeccaf55f2af400f54dc20669d8d5f2
MD5 9f4a3de70dfabc928d3e4f289f9eb867
BLAKE2b-256 77291f86d22e281bd8827ba373600a4a8b0c0eae5ca6aa55b9a8c26d2a34decc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4130d0b9ce5fad6af07421b1aecc7e079519f70d6c05729ab871794eded8617
MD5 30799e9e7c1a670884e014b769cadef5
BLAKE2b-256 4829ad97f4be1509cdcb28ae32c15593ce7c415db47ace37f8fad35b493faa9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8ff038d52ef6aa0f309feeba00c5095c9118d0abf787e8e8454d6048db2037fc
MD5 158e734ff121ec216155005e9753088c
BLAKE2b-256 b671c1a60c1652b8813ef9de6d289784847355417ee0f2980bca002fe87f4ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4cbbde66f1183db040daede83dd86c06d663c5bb2af6de1142b7c8c37923dd74
MD5 5dc3bdc18a6e9dfe6fd90acea92c0cf2
BLAKE2b-256 97ca120d92223a7546131bbbc31c9174168ee7a73b1366f5463ffe69d9e691fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8b4b5580280b9265af3e0409974fb79c64cf7523632d03fbf11df18f8b0181e
MD5 67841ab7e6f52cb049b61a4e487b1dad
BLAKE2b-256 bfb9e4a360164365ac9f07a25f0f7928e3a66eb9ecc989384060747aa170e6aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 72d1cc63bcc91e14933f77d51b3df899d6a07d184ec515ea7f56bff659e124d7
MD5 4d73640c557c8a0d3041eefd97dad753
BLAKE2b-256 6f752c24517d4b2ce9e4917362d24f274d3d541346af764430249ddcc4cb3a08

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 368625fb01666655985391dbad3860dc0ba7c0d6b9125819f3121ee7292b4ac8
MD5 803f9d4a1cb2fcd0565e1f1371dc2af6
BLAKE2b-256 0cb371c8c775807606e8fd8acc5c69016e1caf3200d50b50b6dd4b40ce10b76c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 44983e45310ee5b9f73397350251cdf6e63a466406a105f1d16cb5baa659270b
MD5 e7bb55b5f9907b069c96102775fd65d4
BLAKE2b-256 bd6981699a8f39a3f8d368bec6443435c0c392df0d200ad915bf0d222b588e03

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 d106493a60dcb4aef35a0fac85105e150a11cf8bc2b0d388f5a33272d756c966
MD5 6830716123d4bd3601c998d2dde9a64c
BLAKE2b-256 9bb45a2e0d34ab4d33543f01121e832395ea510132ea8e52cdf63926d9d81754

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 b1f12bd684887a0a5d55e6363ca87056f361e45451105012d329b86ec19dbe0b
MD5 1412f96735f8995618a6ebb910e5e471
BLAKE2b-256 bf9bb653ab611c9060ce8ff0ba25c0226757755725e789292f3ca138a58082cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-android_24_x86_64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 7f196cd7910d71e9d9860da0ff7a77f64d22c1ad931f1dd18559a06e03109fc0
MD5 13353f18a35cde875f1ca64e2ad3a26e
BLAKE2b-256 c4867168b3d83be8eb553897b1fac9da8bbb06568e5cfe555ffc329ebb46f59d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 d771f085fcdf4035786adfb1d8db026df1eb4b41dac1c3d070d1e49512843227
MD5 3dd9add3ccb91cf8c11f62b93dc901e6
BLAKE2b-256 63b465bc1fb2bb7f83e91c30865023b1847cf89a5f237165575e8c83aa536584

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 022aa1a528604e6c83d0a7705fdef0b5355d897a9e0fa3a8d26709ceaa06965d
MD5 6d71f9acfeec36d424d7deabcb3cae42
BLAKE2b-256 c0cc98c90b28e1da5458e19fbfaf4adb5289208d3bfccd45dd14eab216a2f0bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cae6383181f1e345317742d2ddd88f9e7d2682fa4c9432e3a74e47d92dce0229
MD5 411201a10f5798d58842b3020ecca152
BLAKE2b-256 4367850e0b5a1e97799822ebfc4ca0e8c6ece3ed8baf7dcdf64de817dfdda2ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 54b64fb2433bc71488e7a449603bf8bd31fbcf9cb56fbe1eb6d459e90b86c37b
MD5 fa7edbe23ab89e8d4090cfc62540c364
BLAKE2b-256 4bf9dc3787ee5c813cc27fe79f45ad4500d9b5437f23a7402435cc34e07c7718

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fceef7fe67c81e1585198215e42ad3fdba3a25644beda8fbdaf85f4d7b93175a
MD5 6762bde3cb48c10a04392ffed09091b2
BLAKE2b-256 1330ae444ef2ff87c805d525da4fa63d27cda4fe8a48e77003a036b8461cfd5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c88653877aeb514c089d1b3d473451677b8b9a6d1497dbddf1ae7934518b06d2
MD5 2edb45c9c83ebfae2a92ddc46999c53b
BLAKE2b-256 d65cce29ae3dfc4feec4007a437a1b7435fb9507532a25147602cd5b52be86db

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2bd9f19f7f1fcebd74e830f4af0f28adad4975d40d80620be19ffb2b2af56c9f
MD5 679b2ee3af4855b558f19da6b2507bd3
BLAKE2b-256 e888a601e9f32ad1410f438a6d0544298ea621f989bd34a0731a7190f7dec799

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e4e1f580033335c6f76d1e0d6b56baf009d1a64d6a4816347e4271ba951f46d
MD5 5fcc52d8c7608a3866ed77b2364d533a
BLAKE2b-256 54f76b16eb1b40ee89bb740698735574536bc20d6cdafc65ae702ea235578e05

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 169e0d178cb59314456ab30772429a802b25d13227088085b0d49b9fe1533104
MD5 f71f29dc54ef8fb811cb29f8a37aa715
BLAKE2b-256 5382a86cc87cc88c92e9e1a598fee509f0409435b57879a6129bf3b3e40513c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d57dea657357230cc780e13920d7fa7db059d58fe721c80020f94476da4ca0a1
MD5 157ce0025628b42aca1d07f55815b40e
BLAKE2b-256 85579447032edf93a64aa9bef4d9aa596400b1756f40411890f77a284f6293ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2778fed822d7db23ac5008b181441af0c869455b2e7d001f4019636ac31b6fe4
MD5 3af199fe8cedbb4a48c081e6e0540ef9
BLAKE2b-256 5709ea7ffe126d0ba0406622602a2d05e1e1a6841cc92fc322eb576c95b27fad

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3737303ca9ea0f7cb83028781148fcda4f1dac7821db0c47672971dabcf63593
MD5 4e2cb44e473e22c4a6a2bf764318211b
BLAKE2b-256 1cfc2ebaef4a4d4376f89761274dc274035ffd96006ab496b4ee5af9b08f21a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 707151644085dd0f20fe4f4b573d28e5130c4aaa5f587e95b60989c5926653b5
MD5 4d5f240980722e7560d84bb074e27840
BLAKE2b-256 bb0d2c5f9893b38aeb6b034d1a44ecd55a010148054f6a516abe53b5e4057297

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fd96476f04db5ceba1cfa0f21228f67c1f7402296f0e73fee3513aa680ad237b
MD5 1392b447f6b963038ed3092c7bd3df27
BLAKE2b-256 8bf2966ea560e32578d453c9e9db53d602cbb1d0da27317e232afa7c38ceba11

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be77c402d5e882b6fbacfd90823f13da8e0a69658405a39a569c6b58fdb17b03
MD5 dd67ef176f6f9f383bfea14c28de684d
BLAKE2b-256 d44c8e3af1b6d85a299767ec97bd923f12b06267089c1472c27c1696870d1175

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 19bbd3b841174ae6ed588536ab5e1b1fe83d046e668602c20266547298d939a9
MD5 536845b32bc524c4adf03abfc265a11c
BLAKE2b-256 bc344d152fdf4a91a132cb226b671f11c6b796eada9ab78080fb5ce1e95adaab

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d51fde50a77f81330523562e3c2734ffdca9c4c9e9d355478117905e1cfe16c6
MD5 558566877bc6918a17c201ae7946f960
BLAKE2b-256 3d667516d23f53cdf90f43fce24ab80c28f45e6851d78b46bef8c02084edf583

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 17fbb47f0885ace8327ce1235d0416dc86a211dcd8cc1e703f41523be32cfec8
MD5 9c9101a58177d86dc0a9bd963b80c91c
BLAKE2b-256 2fed6f88dda0df67de1612f2e130ffea34cf84aaee5bff5b0aff4dbff2babe34

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a482ac121de6973897c92c2f31defc6bafb11c83825109275cffce54bb64933f
MD5 5c9b2739736d5925a5688d19163bcb1a
BLAKE2b-256 95c2ab7901f87af438468b496728d11264cb397b3574d41506e71b92128e0373

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 e48d4dbe0f88e53081da605ae68644e5182752803bbc2beb228cca7f1c4454d6
MD5 17dfa636c477f2bba1ca6940185e539c
BLAKE2b-256 62fb648bfddb74a872004b6ee751551bfdda783fe6d70d2e9723bad84dbe5311

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp313-cp313-android_21_x86_64.whl.

File metadata

  • Download URL: mmh3-5.2.1-cp313-cp313-android_21_x86_64.whl
  • Upload date:
  • Size: 42.0 kB
  • Tags: Android API level 21+ x86-64, CPython 3.13
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 3619473a0e0d329fd4aec8075628f8f616be2da41605300696206d6f36920c3d
MD5 574ffa1453670bd47c3e2e1cbf7c1539
BLAKE2b-256 0a6b3230c6d80c1f4b766dedf280a92c2241e99f87c1504ff74205ec8cebe451

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-cp313-cp313-android_21_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.2.1-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 723b2681ed4cc07d3401bbea9c201ad4f2a4ca6ba8cddaff6789f715dd2b391e
MD5 67edba0a56da7db0cf7481cc153ba10b
BLAKE2b-256 25a59daa0508a1569a54130f6198d5462a92deda870043624aa3ea72721aa765

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-cp313-cp313-android_21_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.2.1-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bbfcb95d9a744e6e2827dfc66ad10e1020e0cac255eb7f85652832d5a264c2fc
MD5 2c9094cb1e322adfa86551376d081f8e
BLAKE2b-256 15966fe5ebd0f970a076e3ed5512871ce7569447b962e96c125528a2f9724470

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3a9fed49c6ce4ed7e73f13182760c65c816da006debe67f37635580dfb0fae00
MD5 582bb22b5263d45bc6c416c466ae3828
BLAKE2b-256 5b3ccd3527198cf159495966551c84a5f36805a10ac17b294f41f67b83f6a4d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7374d6e3ef72afe49697ecd683f3da12f4fc06af2d75433d0580c6746d2fa025
MD5 40ebb938afd44b52cbdc3a05c27ce0b7
BLAKE2b-256 df946ebb9094cfc7ac5e7950776b9d13a66bb4a34f83814f32ba2abc9494fc68

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d74a03fb57757ece25aa4b3c1c60157a1cece37a020542785f942e2f827eed5
MD5 c80a2a4396616574dbb11a6f41453b69
BLAKE2b-256 3bacca8e0c19a34f5b71390171d2ff0b9f7f187550d66801a731bb68925126a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 67e41a497bac88cc1de96eeba56eeb933c39d54bc227352f8455aa87c4ca4000
MD5 f02969f11315649bb4ecb10ed2300a24
BLAKE2b-256 ddc6fedd7284c459cfb58721d461fcf5607a4c1f5d9ab195d113d51d10164d16

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8f767ba0911602ddef289404e33835a61168314ebd3c729833db2ed685824211
MD5 a19aff00e0e2703fd9367a04bd6652fe
BLAKE2b-256 fd686e292c0853e204c44d2f03ea5f090be3317a0e2d9417ecb62c9eb27687df

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62815d2c67f2dd1be76a253d88af4e1da19aeaa1820146dec52cf8bee2958b16
MD5 7fbff3037f4c0313e94248e1ea6412a2
BLAKE2b-256 dd3899f7f75cd27d10d8b899a1caafb9d531f3903e4d54d572220e3d8ac35e89

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3f99e1756fc48ad507b95e5d86f2fb21b3d495012ff13e6592ebac14033f166
MD5 420fb9e2cc0221ea7af35cf2a9334e8b
BLAKE2b-256 76b370b73923fd0284c439860ff5c871b20210dfdbe9a6b9dd0ee6496d77f174

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 50885073e2909251d4718634a191c49ae5f527e5e1736d738e365c3e8be8f22b
MD5 2139f1426bbcd8ff7624bd15129b7a90
BLAKE2b-256 b6a915d6b6f913294ea41b44d901741298e3718e1cb89ee626b3694625826a43

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3c38d142c706201db5b2345166eeef1e7740e3e2422b470b8ba5c8727a9b4c7a
MD5 ad432948f75de376a0f408f9cd8118a0
BLAKE2b-256 861fd3ba6dd322d01ab5d44c46c8f0c38ab6bbbf9b5e20e666dfc05bf4a23604

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26fb5b9c3946bf7f1daed7b37e0c03898a6f062149127570f8ede346390a0825
MD5 71b519dec440620d45846aab772c8cf6
BLAKE2b-256 75ce12a7524dca59eec92e5b31fdb13ede1e98eda277cf2b786cf73bfbc24e81

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8e6c219e375f6341d0959af814296372d265a8ca1af63825f65e2e87c618f006
MD5 2824a405bcefdc656676f83673500beb
BLAKE2b-256 e5e251ed62063b44d10b06d975ac87af287729eeb5e3ed9772f7584a17983e90

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0d0b7e803191db5f714d264044e06189c8ccd3219e936cc184f07106bd17fd7b
MD5 acbb70ca7cacfacc4d877b7215896c80
BLAKE2b-256 59c2bf4537a8e58e21886ef16477041238cab5095c836496e19fafc34b7445d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eee884572b06bbe8a2b54f424dbd996139442cf83c76478e1ec162512e0dd2c7
MD5 7285cbbf58ac9eca74fb5666e8089779
BLAKE2b-256 8b72e6d6602ce18adf4ddcd0e48f2e13590cc92a536199e52109f46f259d3c46

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4eda76074cfca2787c8cf1bec603eaebdddd8b061ad5502f85cddae998d54f00
MD5 9eddd07fae9177176d3c0eed590ebe88
BLAKE2b-256 f68064a02cc3e95c3af0aaa2590849d9ed24a9f14bb93537addde688e039b7c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0cc21533878e5586b80d74c281d7f8da7932bc8ace50b8d5f6dbf7e3935f63f1
MD5 bafcac7c5fadfb30a704e50229858e5c
BLAKE2b-256 9294bc5c3b573b40a328c4d141c20e399039ada95e5e2a661df3425c5165fd84

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c302245fd6c33d96bd169c7ccf2513c20f4c1e417c07ce9dce107c8bc3f8411f
MD5 e35e9dbafe31fd00a6b91db0aba90383
BLAKE2b-256 8a5f2a511ee8a1c2a527c77726d5231685b72312c5a1a1b7639ad66a9652aa84

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1e4ecee40ba19e6975e1120829796770325841c2f153c0e9aecca927194c6a2a
MD5 1f917c7c4a1e7974c91a01c678f2e30c
BLAKE2b-256 72fc5b11d49247f499bcda591171e9cf3b6ee422b19e70aa2cef2e0ae65ca3b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 baeb47635cb33375dee4924cd93d7f5dcaa786c740b08423b0209b824a1ee728
MD5 190a881433f4eeaa5ad848e4b6333e26
BLAKE2b-256 f1b95e4cca8dcccf298add0a27f3c357bc8cf8baf821d35cdc6165e4bd5a48b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d8089d853c7963a8ce87fff93e2a67075c0bc08684a08ea6ad13577c38ffc38
MD5 fa40273a28d051b7d9bc5cb4108d2598
BLAKE2b-256 b5e61aacc3a219e1aa62fa65669995d4a3562b35be5200ec03680c7e4bec9676

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 41aac7002a749f08727cb91babff1daf8deac317c0b1f317adc69be0e6c375d1
MD5 6cf7b454a8432c8dd8989f83a85d8d3b
BLAKE2b-256 049421adfa7d90a7a697137ad6de33eeff6445420ca55e433a5d4919c79bc3b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fc78739b5ec6e4fb02301984a3d442a91406e7700efbe305071e7fd1c78278f2
MD5 45987cdf017a726a0e153aa5eb8904bb
BLAKE2b-256 5e0e1524566fe8eaf871e4f7bc44095929fcd2620488f402822d848df19d679c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 915e7a2418f10bd1151b1953df06d896db9783c9cfdb9a8ee1f9b3a4331ab503
MD5 aa761757bb5f111f3b64e15a85dd5f86
BLAKE2b-256 36b5613772c1c6ed5f7b63df55eb131e887cc43720fec392777b95a79d34e640

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82f3802bfc4751f420d591c5c864de538b71cea117fce67e4595c2afede08a15
MD5 daec13b61baca92a5da86208d14adecd
BLAKE2b-256 93b9b89a71d2ff35c3a764d1c066c7313fc62c7cc48fa48a4b3b0304a4a0146f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d30b650595fdbe32366b94cb14f30bb2b625e512bd4e1df00611f99dc5c27fd4
MD5 643de367cbb1391a7b0ca7becdeb0168
BLAKE2b-256 cfa103e91fd334ed0144b83343a76eb11f17434cd08f746401488cfeafb2d241

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 960b1b3efa39872ac8b6cc3a556edd6fb90ed74f08c9c45e028f1005b26aa55d
MD5 fdd85474da14a24752191af71710c5f5
BLAKE2b-256 8249192b987ec48d0b2aecf8ac285a9b11fbc00030f6b9c694664ae923458dde

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d9f9a3ce559a5267014b04b82956993270f63ec91765e13e9fd73daf2d2738e
MD5 0615e107986773e2c88a8cef67380908
BLAKE2b-256 61b5f96121e69cc48696075071531cf574f112e1ffd08059f4bffb41210e6fc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 db0562c5f71d18596dcd45e854cf2eeba27d7543e1a3acdafb7eef728f7fe85d
MD5 93df763329ab22fd6ad50d9434421ee5
BLAKE2b-256 ee93723e317dd9e041c4dc4566a2eb53b01ad94de31750e0b834f1643905e97c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e080c0637aea036f35507e803a4778f119a9b436617694ae1c5c366805f1e997
MD5 2344ca811a900b9acf1f7e61a010f862
BLAKE2b-256 f609a806334ce1d3d50bf782b95fcee8b3648e1e170327d4bb7b4bad2ad7d956

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0634581290e6714c068f4aa24020acf7880927d1f0084fa753d9799ae9610082
MD5 59c0a04f0e6fe032f22543108af7334b
BLAKE2b-256 c1b49cd284bd6062d711e13d26c04d4778ab3f690c1c38a4563e3c767ec8802e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9aeaf53eaa075dd63e81512522fd180097312fb2c9f476333309184285c49ce0
MD5 b20282c3174eb320bee36d52a3b888ac
BLAKE2b-256 61966f617baa098ca0d2989bfec6d28b5719532cd8d8848782662f5b755f657f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dae0f0bd7d30c0ad61b9a504e8e272cb8391eed3f1587edf933f4f6b33437450
MD5 2397fc09b2eddec3ee548b6553e71464
BLAKE2b-256 65d73312a59df3c1cdd783f4cf0c4ee8e9decff9c5466937182e4cc7dbbfe6c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7501e9be34cb21e72fcfe672aafd0eee65c16ba2afa9dcb5500a587d3a0580f0
MD5 f7f1728a305b596e33c82f520bae3ea7
BLAKE2b-256 fd318fd42e3c526d0bcb1db7f569c0de6729e180860a0495e387a53af33c2043

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6f01f044112d43a20be2f13a11683666d87151542ad627fe41a18b9791d2802f
MD5 d4ff072cc23373544c392e57d0ff84a3
BLAKE2b-256 c9340b25889450f8aeffcec840aa73251e853f059c1b72ed1d1c027b956f95f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b4cce60d0223074803c9dbe0721ad3fa51dafe7d462fee4b656a1aa01ee07518
MD5 739cfb1b1a827d7043f7232452f20870
BLAKE2b-256 279add4d5a5fb893e64f71b42b69ecae97dd78db35075412488b24036bc5599c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1fbb0a99125b1287c6d9747f937dc66621426836d1a2d50d05aecfc81911b57
MD5 24abecc6c35eaa80903e136740af41f4
BLAKE2b-256 517b6614f3eb8fb33f931fa7616c6d477247e48ec6c5082b02eeeee998cffa94

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e904f2417f0d6f6d514f3f8b836416c360f306ddaee1f84de8eef1e722d212e5
MD5 ada555b2e48d224fc36cc58e16087918
BLAKE2b-256 a8a12644069031c8cec0be46f0346f568a53f42fddd843f03cc890306699c1e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e8b5378de2b139c3a830f0209c1e91f7705919a4b3e563a10955104f5097a70a
MD5 06e89dc3fd3080ee5ed7935b9b3c9d68
BLAKE2b-256 ada7b82fccd38c1fa815de72e94ebe9874562964a10e21e6c1bc3b01d3f15a0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.2.1-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 96.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3cb61db880ec11e984348227b333259994c2c85caa775eb7875decb3768db890
MD5 eb8d60b408f9072baf9fe853f3855afa
BLAKE2b-256 44176e4f80c4e6ad590139fa2017c3aeca54e7cc9ef68e08aa142a0c90f40a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41105377f6282e8297f182e393a79cfffd521dde37ace52b106373bdcd9ca5cb
MD5 8115bda88d10326c937bf5b5aedc1cb3
BLAKE2b-256 862d0551be7fe0000736d9ad12ffa1f130d7a0c17b49193d6dc41c82bd9404c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 add7ac388d1e0bf57259afbcf9ed05621a3bf11ce5ee337e7536f1e1aaf056b0
MD5 dc6b482c976909e47059df930fa0b367
BLAKE2b-256 7208408f11af7fe9e76b883142bb06536007cc7f237be2a5e9ad4e837716e627

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 08043f7cb1fb9467c3fbbbaea7896986e7fbc81f4d3fd9289a73d9110ab6207a
MD5 8ea29ee957b9cd05b26c8157274b8160
BLAKE2b-256 ff8ddab9ee7545429e7acdd38d23d0104471d31de09a0c695f1b751e0ff34532

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d5d542bf2abd0fd0361e8017d03f7cb5786214ceb4a40eef1539d6585d93386
MD5 1b0a03b3dc6c33aedf303460eabc482d
BLAKE2b-256 7f4a1a9bb3e33c18b1e1cee2c249a3053c4d4d9c93ecb30738f39a62249a7e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fb9d44c25244e11c8be3f12c938ca8ba8404620ef8092245d2093c6ab3df260f
MD5 6262dfc7034ef64d3f3d1ec5f0d7e56d
BLAKE2b-256 c6b1e20d5f0d19c4c0f3df213fa7dcfa0942c4fb127d38e11f398ae8ddf6cccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 76219cd1eefb9bf4af7856e3ae563d15158efa145c0aab01e9933051a1954045
MD5 2c7fac86d81bc92cf3c007870c7757aa
BLAKE2b-256 a09e326c93d425b9fa4cbcdc71bc32aaba520db37577d632a24d25d927594eca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bbc17250b10d3466875a40a52520a6bac3c02334ca709207648abd3c223ed5c
MD5 c30316e0b3c55cbd41fac7463499a8f6
BLAKE2b-256 de0b52bffad0b52ae4ea53e222b594bd38c08ecac1fc410323220a7202e43da5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30e4d2084df019880d55f6f7bea35328d9b464ebee090baa372c096dc77556fb
MD5 760ef736755d0f9c5b5741134bf4cd90
BLAKE2b-256 ccbf5404c2fd6ac84819e8ff1b7e34437b37cf55a2b11318894909e7bb88de3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mmh3-5.2.1-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.2.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.2.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5d87a3584093e1a89987e3d36d82c98d9621b2cb944e22a420aa1401e096758f
MD5 777735053996075a015250552f6efa76
BLAKE2b-256 a6bb88ee54afa5644b0f35ab5b435f208394feb963e5bb47c4e404deb625ffa4

See more details on using hashes here.

Provenance

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page