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

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 for the complete changelog.

5.0.0 - 2024-09-18

Added

  • Add support for Python 3.13.
  • Improve the performance of the hash() function with METH_FASTCALL, reducing the overhead of function calls. For data sizes between 1–2 KB (e.g., 48x48 favicons), performance is 10%–20% faster. For smaller data (~500 bytes, like 16x16 favicons), performance increases by approximately 30% (#87).
  • Add digest functions that support the new buffer protocol (PEP 688) as input (#75). These functions are implemented with METH_FASTCALL too, offering improved performance (#84).
  • Slightly improve the performance of the hash_bytes() function (#88)
  • Add Read the Docs documentation (#54).
  • Document benchmark results (#53).

Changed

  • Backward-incompatible: The seed argument is now strictly validated to ensure it falls within the range [0, 0xFFFFFFFF]. A ValueError is raised if the seed is out of range (#84).
  • Backward-incompatible: Change the constructors of hasher classes to accept a buffer as the first argument (#83).
  • The type of flag argumens has been changed from bool to Any (#84).
  • Change the format of CHANGELOG.md to conform to the Keep a Changelog standard (#63).

Deprecated

  • Deprecate the hash_from_buffer() function. Use mmh3_32_sintdigest() or mmh3_32_uintdigest() as alternatives (#84).

Fixed

  • Fix a reference leak in the hash_from_buffer() function (#75).
  • Fix type hints (#76, #77, #84).

4.1.0 - 2024-01-09

Added

  • Add support for Python 3.12.

Fixed

  • Fix issues with Bazel by changing the directory structure of the project (#50).
  • Fix incorrect type hints (#51).
  • Fix invalid results on s390x when the arg x64arch of hash64 or hash_bytes() is set to False (#52).

License

MIT, unless otherwise noted within a file.

Known Issues

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 returns the same values on big-endian platforms as it does on little-endian ones, whereas the original C++ library 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.

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.

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.0.0.tar.gz (28.7 kB view details)

Uploaded Source

Built Distributions

mmh3-5.0.0-cp313-cp313-win_arm64.whl (32.2 kB view details)

Uploaded CPython 3.13Windows ARM64

mmh3-5.0.0-cp313-cp313-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.13Windows x86-64

mmh3-5.0.0-cp313-cp313-win32.whl (34.9 kB view details)

Uploaded CPython 3.13Windows x86

mmh3-5.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (85.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mmh3-5.0.0-cp313-cp313-musllinux_1_2_s390x.whl (87.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

mmh3-5.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl (90.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

mmh3-5.0.0-cp313-cp313-musllinux_1_2_i686.whl (85.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mmh3-5.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (86.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mmh3-5.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (95.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

mmh3-5.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (95.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

mmh3-5.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (90.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mmh3-5.0.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.5 kB view details)

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

mmh3-5.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (83.3 kB view details)

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

mmh3-5.0.0-cp313-cp313-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mmh3-5.0.0-cp313-cp313-macosx_10_13_x86_64.whl (34.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mmh3-5.0.0-cp313-cp313-macosx_10_13_universal2.whl (48.6 kB view details)

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

mmh3-5.0.0-cp312-cp312-win_arm64.whl (32.2 kB view details)

Uploaded CPython 3.12Windows ARM64

mmh3-5.0.0-cp312-cp312-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.12Windows x86-64

mmh3-5.0.0-cp312-cp312-win32.whl (34.9 kB view details)

Uploaded CPython 3.12Windows x86

mmh3-5.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (85.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mmh3-5.0.0-cp312-cp312-musllinux_1_2_s390x.whl (87.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

mmh3-5.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl (90.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

mmh3-5.0.0-cp312-cp312-musllinux_1_2_i686.whl (85.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mmh3-5.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (86.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mmh3-5.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (95.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

mmh3-5.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (95.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

mmh3-5.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (90.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mmh3-5.0.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.7 kB view details)

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

mmh3-5.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (83.3 kB view details)

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

mmh3-5.0.0-cp312-cp312-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mmh3-5.0.0-cp312-cp312-macosx_10_13_x86_64.whl (34.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mmh3-5.0.0-cp312-cp312-macosx_10_13_universal2.whl (48.6 kB view details)

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

mmh3-5.0.0-cp311-cp311-win_arm64.whl (32.2 kB view details)

Uploaded CPython 3.11Windows ARM64

mmh3-5.0.0-cp311-cp311-win_amd64.whl (35.4 kB view details)

Uploaded CPython 3.11Windows x86-64

mmh3-5.0.0-cp311-cp311-win32.whl (34.8 kB view details)

Uploaded CPython 3.11Windows x86

mmh3-5.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (85.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mmh3-5.0.0-cp311-cp311-musllinux_1_2_s390x.whl (86.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

mmh3-5.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl (90.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

mmh3-5.0.0-cp311-cp311-musllinux_1_2_i686.whl (85.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mmh3-5.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (86.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mmh3-5.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (95.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

mmh3-5.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (95.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

mmh3-5.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (90.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mmh3-5.0.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.5 kB view details)

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

mmh3-5.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (83.2 kB view details)

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

mmh3-5.0.0-cp311-cp311-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mmh3-5.0.0-cp311-cp311-macosx_10_9_x86_64.whl (34.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mmh3-5.0.0-cp311-cp311-macosx_10_9_universal2.whl (48.6 kB view details)

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

mmh3-5.0.0-cp310-cp310-win_arm64.whl (32.2 kB view details)

Uploaded CPython 3.10Windows ARM64

mmh3-5.0.0-cp310-cp310-win_amd64.whl (35.4 kB view details)

Uploaded CPython 3.10Windows x86-64

mmh3-5.0.0-cp310-cp310-win32.whl (34.8 kB view details)

Uploaded CPython 3.10Windows x86

mmh3-5.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (88.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mmh3-5.0.0-cp310-cp310-musllinux_1_2_s390x.whl (89.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

mmh3-5.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl (95.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

mmh3-5.0.0-cp310-cp310-musllinux_1_2_i686.whl (84.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mmh3-5.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (89.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mmh3-5.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (93.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

mmh3-5.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (94.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

mmh3-5.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (89.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mmh3-5.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (88.9 kB view details)

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

mmh3-5.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (82.0 kB view details)

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

mmh3-5.0.0-cp310-cp310-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mmh3-5.0.0-cp310-cp310-macosx_10_9_x86_64.whl (34.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mmh3-5.0.0-cp310-cp310-macosx_10_9_universal2.whl (48.6 kB view details)

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

mmh3-5.0.0-cp39-cp39-win_arm64.whl (32.2 kB view details)

Uploaded CPython 3.9Windows ARM64

mmh3-5.0.0-cp39-cp39-win_amd64.whl (35.4 kB view details)

Uploaded CPython 3.9Windows x86-64

mmh3-5.0.0-cp39-cp39-win32.whl (34.8 kB view details)

Uploaded CPython 3.9Windows x86

mmh3-5.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (88.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

mmh3-5.0.0-cp39-cp39-musllinux_1_2_s390x.whl (89.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

mmh3-5.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl (94.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

mmh3-5.0.0-cp39-cp39-musllinux_1_2_i686.whl (83.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mmh3-5.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (89.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

mmh3-5.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (93.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

mmh3-5.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (93.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

mmh3-5.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (89.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mmh3-5.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (88.7 kB view details)

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

mmh3-5.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (81.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

mmh3-5.0.0-cp39-cp39-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mmh3-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl (34.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mmh3-5.0.0-cp39-cp39-macosx_10_9_universal2.whl (48.6 kB view details)

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

mmh3-5.0.0-cp38-cp38-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.8Windows x86-64

mmh3-5.0.0-cp38-cp38-win32.whl (34.9 kB view details)

Uploaded CPython 3.8Windows x86

mmh3-5.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (86.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

mmh3-5.0.0-cp38-cp38-musllinux_1_2_s390x.whl (86.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

mmh3-5.0.0-cp38-cp38-musllinux_1_2_ppc64le.whl (91.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

mmh3-5.0.0-cp38-cp38-musllinux_1_2_i686.whl (82.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mmh3-5.0.0-cp38-cp38-musllinux_1_2_aarch64.whl (86.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

mmh3-5.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (90.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

mmh3-5.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (91.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

mmh3-5.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (86.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

mmh3-5.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (85.8 kB view details)

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

mmh3-5.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (80.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

mmh3-5.0.0-cp38-cp38-macosx_11_0_arm64.whl (33.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mmh3-5.0.0-cp38-cp38-macosx_10_9_x86_64.whl (34.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mmh3-5.0.0-cp38-cp38-macosx_10_9_universal2.whl (48.4 kB view details)

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

File details

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

File metadata

  • Download URL: mmh3-5.0.0.tar.gz
  • Upload date:
  • Size: 28.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0.tar.gz
Algorithm Hash digest
SHA256 60d1713457789c70292f1f04ca984e3175fc66e6c3545582fd2b4af7f5a61c73
MD5 c4d71af4ef4eba75b7b7dabc4c247f18
BLAKE2b-256 9ce240dc31be41d4913c488d55f1e75a276a5d1a840f5b79c2652d29eb7bf5ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9126155ad1a9418920360497a0b44906dce32f0732cb44378ace08c62751dd1e
MD5 327ed51f6879763bd83b23d788424bc1
BLAKE2b-256 8cdfc070cf4dd4425f1c2abbff9b922ffb7a5161667a39cf32c618422406d78b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 35.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 47d9a9c1c48accaf78ddb77669c40c837e90be2ecddd39bf7ef2f8dacff85ca6
MD5 3fcbe7a7b8bfc9e1090c06253c532b88
BLAKE2b-256 a2b5cb5b2fa2ceb34a65367afef283126c79f15e8f864bea50742f7184f6acf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 34.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7101a12a2a4b39d7748d2d83310d5e0415950ccf6b9ec8da1d35af3f50b3ef0e
MD5 cc3f38fbbfe7c43d59e08617d6978b74
BLAKE2b-256 e403249dc33217095088c9519ddda809e728d18a8cf1eefa2619c2586224eb2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05b10476fd5cfb0fd63ceebf7430612423e7f79e9732e0b344225aa642e12be4
MD5 46ba84d10e764761ab7734f474c701e6
BLAKE2b-256 7bcb9da22a15b73ae5346fb51c7fab665adb9b4cf79038299c6eaea9b68b4f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cc0caa0d2800d54384cc048e49e6c2b4a90cba1afff0597d7c2a5006c42b5536
MD5 9f457ba361c838a8c334a27f1c238415
BLAKE2b-256 c91bcefb28385f8bfa24c058caf106a5cf7a28a238d06a7ce27a41b50a7b06bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fcac7a75846aec7bd168c05576dc8c9448a9705165dfa0986d0f48952eca62a4
MD5 b5b13ed21e344343dca4dfaeee8fad4d
BLAKE2b-256 e48407584c6fbf82981359e3f702ed56a1e42657f4d670ae8e505c62df55a0cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 85.3 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b178b744685de956ff84b3b2531271824a2e4372aff199ab805e1fdd7f996f5c
MD5 64132cf9b069d4ddfccf5af6e6b2728f
BLAKE2b-256 968416a2a0a196c151d5d3d5513c5a5042b9c1cef428f68f2668337924b04fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29b2c8eb7a473f6f235c2d9905912a76350dd11b42058364de984264fa4f74ca
MD5 f39a18b41bd9187a8b1178155359b40e
BLAKE2b-256 a0c4aa8f8527dfeff955e7be85901fde840df407a26b7f52e2a114e094c08422

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b65b6eabd9e78e2b8eee2b8d4db34d4d2f5b540f2ac06ec0a76a1f1566f0ff7
MD5 606cc0869c5bdb17f05e2177eae47566
BLAKE2b-256 f212a7a3b84645106ad5c64e16557a97ab305673bbb6fe14ab55c1fc23083939

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0be4d14ab3a690bac6c127733490493b8698f84eadb9d667be7eb952281c51e4
MD5 2a5b91ba5575fb8a613e7849dba4c092
BLAKE2b-256 99ad9f1e0d11d4ed095b0c02a424b414b51596a18dacfb8f06912d042d597bb6

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a572adb41cf831d79b3b38c7994e5a5bc1a8ea8d7b574ce0c24272fc5abb52df
MD5 77b2835f1f335f583d078c5edb00b5a3
BLAKE2b-256 6524e52443fb243a479513b7c1811798dd29d285b4d5edd2ef412aa77d0637bb

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1b12073a58be5e6408c6bd8366bbf6253defe042cdec25ee51f123c944e5a8f
MD5 d9c3fa1e4f5b815cfe86ca9388dc2076
BLAKE2b-256 4355a924e81867406bb0d1bf59039732e927a05a5c56b08e7b894687fda71881

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b433656f371af5edf44cf00862e288e08327bb9e90c8aaa5e4e60dfebc62039
MD5 0ee0a64c3d973cf6cb3158dddce1ede4
BLAKE2b-256 68666ccf44dc2adcde5bfd30a642880a51cf78712fd74195d88e103b8d10d084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a1c056b65be3077496ed655731eff1f65ee67f2b31f40a027f3171ba0ac20d1
MD5 90bdd688b39fdd4d7c87001cb598a45d
BLAKE2b-256 77ebf6f734766113017a9d76bf25f83a8bc7b09a3798b92d357ad0418ed18bbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d4ac0b8d48ce1e7561cf330ec73b9582f6773e40aaf8a771dd51a0bb483ec94f
MD5 77e70aed7055f6f62dbef676be3e561f
BLAKE2b-256 1a90f3f4fe3fea68d949fbe554841e036c33d571756ae4a9921d27e8fdb5e3e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 05b09d98cbdb6ad03eb9c701e87cea005ececd4fd7d2968ff0f5a86af1ef340d
MD5 e45408b4dd7f8ffb9a0f906c65055434
BLAKE2b-256 1f1d621df14c109a53148717a6e9aceef93b1a65bb46938cfc176eb5fb8664b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e6e3334985865ec3bdfcc4ae8df4a1939be048c5ae3ce1c8c309744400f8e4de
MD5 29244f295d512a54b2c8de9061fc7919
BLAKE2b-256 88a1e8f896aa6a61c8655e5ba708004700c142f2c34d02222d3e1afdcf2aaead

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 35.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 897ebafa83bbbbb1958ee30cda78c7ad4b12f2b9360f96b22e488eb127b2cb4f
MD5 d76f17a77fc3d675d74a11d4e0e710f3
BLAKE2b-256 866b24c9c618993a5d5612a12c156aa30b6a58e9123d9798642ed8d9608ef6f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 34.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cb1a96488dc8fccf843ccdbdd10faf1939e6e18cd928c2beff17e70c2ab09ec1
MD5 e665c7bea7496c20a1fcd1e3f462aece
BLAKE2b-256 8e0cf30776ad91410d35148fcd7595ca2489e6f9c8cead8350ac976fc2ccf162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee22cd4cad4fc7d4e5282b2729899460b03c388cde0290d411e877249f78a373
MD5 2941d0bb9fb7010b9af854d60b396112
BLAKE2b-256 038c3f2c216f16f05da7f48893144a63f88466f8c7dbb8f6b955d3714e8e833f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ce678ac7d31e83fecc817ab630cc7254c7826de11fd2b3e8c31a8a5b0b762884
MD5 07a3dd7155bce4444028c343c5868acb
BLAKE2b-256 6e2c916c881e5ec5920ea1f26ea749329b195a850628e2bdc5e5dd76b74b9714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 aa790a46370eeedb474c462820be78597452f54c5fffe1f810fc8e847faf42a1
MD5 1fee7522cd8c0d0a301f8c8e3e1be527
BLAKE2b-256 b526b6c6b713341674200d10b6b39d9523a54afbad305c226f14019e1505410a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 85.2 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e70c4fc340509f6554a1748fe6f539a846fbacf147255048d1702def820a1520
MD5 9923ecb003d7bdc969b0d72eb0b89667
BLAKE2b-256 6a3427cf51e7a4697b4a0ac2fde1cbea3ebe5ed0899645cdcfdd741d1183f0a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11e29156edb1990600cb4b91bcb371a2adf20a0fcb818837fb78408be19e9117
MD5 49123a3640587124a47b37d30138e324
BLAKE2b-256 923a743c53d584acf07a8e9a78f2fc2815996d01f63acd05f57b66b8428475f0

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff4405f231032b8f8ae93d9a558ddc04b9aa94a59c309cb265ebe1e79ced920e
MD5 26e4e33bcf7e0f402d8e89dc76443719
BLAKE2b-256 eef20bfc0434845034e3afe9d38775cbd91d9d8b1e0858ac1b3cdd49ff522f4e

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a567a87026f103778b70f2b19637fb490d9c29dc7d3af9cd46185d48efbd49dc
MD5 21a72ce2c2baceab44eabaa436666ce4
BLAKE2b-256 0d2c00fded897ff8a05f6241b2e3f396094c122868d9cd6508d59ffd35faa2b6

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f50535009c1aaa44f9702ad14551d12d1755b537fc25a5bd7d46c493ec4bcfaa
MD5 52eff1326adf0428be8f40dd20f3e5c7
BLAKE2b-256 fd9e6866f4cb9be5908eff335369f8d214a04718fda6ab3821f13e1069344dfb

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 361f9d611debc10992888cbace09dbc47391ae8b84b50c995a6d97e6314bb422
MD5 ac7be5c50878bc552f03b7a69cacbf4f
BLAKE2b-256 d4d382a119f7a079cac3e07ae50756d85df89ed9d915856168035d1f0572f647

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d630fe75ef7d4ab1a95eb824d81dee15ed73020703bf030515f03283cb8f086f
MD5 c30942f9e062f0ec4ee19b6eb027517b
BLAKE2b-256 4442e3fa4bd3222a87e7f8fe6444d903024efd6cc901f4ba30a02913a64824a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e86246d036da05d54e833cdc342ad9c62f38f2507b14f2c58ce2c271f22d7251
MD5 e71c630bfa401f17bbb80afdb1d5c815
BLAKE2b-256 57646682b31df93c46b4a55ea3de1b328d6a2d651e0b01a0709b2f92ae05d26d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b020012e30ba0e4b002a150ca1c1d590a7387fac50dfd9b6b5dc66d9d0e61257
MD5 307a152f89b62139f3690218b2181bdf
BLAKE2b-256 8f50a2ab4155fa338acfdc020b752057c164a3350495747f02cde4d73127d8e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ed23a89a6daeb9b0d4db9fa865b125300516e8d6961f771b2dd97965bf888bce
MD5 78cb368ed8df13c8d0400e0935780f87
BLAKE2b-256 4a46e3bdf55ddadb6174414df98c64d0045d2142efc8657c9bb0686aaba3ba88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2ee87816b838709bd0fc623e3277736e9465a941d27b14f35d0df1c2006e4438
MD5 451e2b149046d4b52880ada400936f50
BLAKE2b-256 6f2935110041e065bacbdd6440eb29e6d9b0bb6b396d221515ffed14a10c3fd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 35.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 47b3823a88c5f7859580688016bff13437fd866f6132e4770b306f0c6edb01a7
MD5 27a00002af6967e5143178962a5cd0ef
BLAKE2b-256 77c1dac0e65e482c9f6205020c06d5db20397745211d162be7dcd98e0f2cec30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 34.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2d039b32f4194ac345c0f52441b7ff0a55735a896303a3eb9054e5f8512d84c8
MD5 9a8aa62a6152daef2a1071b1b5ace77f
BLAKE2b-256 b874f7201c1e5ef5cd84f210ba0f6a5810e2726dfdc22c1ddc5c81363b286997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16f46dc1774bf3e8305fa33207a502317cd7a592cb79b0d65c84f0fbcf9d9ffa
MD5 b9460d3651d45597b1a7db7b9eeba5f9
BLAKE2b-256 5143564b427dc2a3c9d90ae4946a25a14926ff3bf71625ebd944967ed0a7005d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9f699f2232efe3907a6a05d9661edd2f4045a0e05161dc1087f72957d752a47a
MD5 fd60c07bad09ee5fc658a7ac91cec65f
BLAKE2b-256 8c6104d196fb38d79c11f4858122844916d55fd061b6650902c74f3268ce8016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3d969f1813b27bd4caac359e0ea0f6b711d252e872c0723124b58d7ac275cb0e
MD5 cb2df8c544ef74598b8971cbf456a8db
BLAKE2b-256 01a79f68185843ba171c52b04db3ab5a39f991fbeedb89da85c2a0d533995c00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 85.1 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01636d74df6371f192dc5a112f4afc43cb4119a9ea6de704469161fd4ab9e86b
MD5 67e437740f97d0276db43d808df98762
BLAKE2b-256 53550269256d61783a783a82c189e165a00dcc5499f0670049e5c408e2162f6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 337f747eaf6ab78d0be9cbbb763781ae76eb2e4c0e6523e74582877fe827ec51
MD5 344876b5b323baf7de63cad2df60ee03
BLAKE2b-256 2e63b6a45319059855fbcb20a02bc5803deb10327842846d98d559cf1c35e89f

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec24039151e67c5fc026ce5be8788e3e8093d9ce3e114d7a6175f453521bacc9
MD5 97affb9394f3df8b16ea6b8ad5e12449
BLAKE2b-256 94d1d197e47e9a28e6d4faaad7ee4cab0c2c79a246a0995a0609e9a8db9fe2e4

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3d75183b7d5df178bf01f0d9ac366525fd54e828d799fe3892882b83c13454b
MD5 87a6bb7c2152799fd37431a01fc92e96
BLAKE2b-256 a17eee067c17df65f3b30f1dbfe75b9f87ff114a04125286f55912fb5b1c5691

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2400e805018e04718c9367e85d694c036d21a41b37024d5b0dc8ef80cb984cf0
MD5 1ed9bf17cf6504a4deeb96e4c5d937cc
BLAKE2b-256 857e1da6f2c77a2db61fe73c5832f51ed604f07dd989b03027308030e09f8714

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a015a90951b31d45a01c8f92703c028d8d759f71dc31727581c916f31cacbade
MD5 5b21ae06dde1bf465d2bd97ce2b722a8
BLAKE2b-256 a73c756620970d575c66677c9c13ca871d52b8b23f8f13cb6c81cc85caeb0658

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88513eb686937b26d33fe7ded7ed1a68ede490d326eea2344447c0cc42fb7f97
MD5 687a34a8bd7c1a6bd98d54d3070e5ecb
BLAKE2b-256 4d0d2849b96caf2bad20f9af4a27d11a1cd6a62018b28e7f333875b15d468cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f271a043545c86cce51c35e5bb6f52dceb535dcd2d46c2129a9c869b80ec2eaa
MD5 1cf0633c15f0bce68a217e6020bff0a0
BLAKE2b-256 299998d47eb4d18556a7fd13bfa4d7a358faef1ba08981c1d7cdc21642fd1bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5580c7bf9570458d8096a016f7012453306a14d2e3e4ef1267b9c9c9f506d8a4
MD5 9bb1b15b49a5de7a5c99f2edde75e336
BLAKE2b-256 60da135b43806e59b1fcc7a6c27a029922c60785353c84c4bd4915b603725b4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 690cb4b36ed7c863680029c2370b4f3a0c3dc8900320eb5ce79a867eb8b37151
MD5 747c6e8f12a483ef9d8f5eb909f213a2
BLAKE2b-256 28b827d06956add5f882c7120ade726f6e772325a267a4bb0f1589397d75163d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 341ad4f902ebb7fc14751fab67fb4eedf800a1744bc9dc214a56e11b62d0bfdd
MD5 f20c5c38fddaeda77008bd8971cf8832
BLAKE2b-256 b9591e767bbea3b68205e78c963107932fb7e87046f78f4a74f5394aaea131cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 35.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9a8bcaa5c0fd9c4679639c830b46e52fcc3b84502faa2aa5f3ca1dacb7cdbb1f
MD5 2255c0a16239e48def0d07d803495d7d
BLAKE2b-256 8e504e629064bc48c17a970b6897bb799b2fd1774cc136231ab34ab9471c0e2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 34.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 917b72bc8b238286d7e2c586c19d604b3b3e5a93f054020cd15530324b868e6e
MD5 7bfb21dce5bfec4b0439f45f0b8db507
BLAKE2b-256 1c7bc3de7359af41670a181fae919a6e1fee095aada20d3173942464f12174d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e713afe276481af7ea0330f40214c71c11486b28754aa2d1cb286b5ee9571dee
MD5 76906efa5026fadd57f77e7b6c606a9a
BLAKE2b-256 d604c20c2b285b0f0de6cdad691153fb634b17b192bee1e3dbd92cc0f3dd4a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 333057bcf12804a8cae12adb2a5cef3bc50fc8de044ad6a01ae1918a342d6f0e
MD5 e985b9af695b66d3622b47217e715fbc
BLAKE2b-256 2206bc22a7c776c2f19349dc6675d2da33d24d62c2bbcfab90947aad0e615322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5f814a621fd0e567a121ace724ad57f28fb9972acfd54c854749ee91d5c4905c
MD5 5f8f096bed5c722d5e1c41da4c156f9f
BLAKE2b-256 3e04f73fe2bbde831e78b4d6f5d9905aa195de7fb8115d8bc8a4f22c0e5e1145

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 84.1 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9154a0a32de54b812d178541468cce4c73b112fbd8b5b0a4add92cfda69c390
MD5 52b488a0aabb6d9856f53e7c0f1f0d83
BLAKE2b-256 8a660e9ecf5f860864a3524ddb6bbe8b317f7593340e5e0cc24c9d93c985ef7d

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7653d8177e4241a5f7913a675636ccc701722741b153b0a43c82464a4a865752
MD5 03da3554166a545be385077866b77c96
BLAKE2b-256 d42cc6a4adba7edf8a4c8f3af1d0bea9f882bb290fd74f7d601eb702b33e2840

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b46b6d5c0fcd2620ebc699099fed6fda0101805d7d4c274fa2b2c384e8b9e8b9
MD5 abd1bf5973671815ef5fac1b540b4499
BLAKE2b-256 cbf794f1988fef130ce1ac4aad243c7952fb2620c312613a0ca7178a148451e0

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d3e3d94553b321b26952d507dace15509463604ead98fece710237ca8cb5983d
MD5 e259a1d2547382df476e5f6f065d7c52
BLAKE2b-256 ad3e9e14a3c742dbc9c584aef304c1c563754f18293369e615a2e8f724f13e23

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1616cb621cab3bc5b58dba9605311c346b45e732818f12f943a803b9a641f09c
MD5 df3a22f3e71d30747fad05f9a5df9df9
BLAKE2b-256 04e622b1a7f1ecae2fab2ad58cfe0980521db6f26d6f0bc4e12149dde8128fed

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 903cdb66f8d8de26a0a6c737a13664388b5ed14813f84793bccbba44ffa09fa2
MD5 fa5a472e3bfed886008e68b654c447e0
BLAKE2b-256 9464436925da3a70fed754e4636d84d4c0251e7d3751108f3f91c88aaa81beb8

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a2a9cd368f2a15f06f2749db764e410b7dc260822319f169a52c649da078bf6
MD5 2019551cc60a389a6acd9c506871999f
BLAKE2b-256 72ba7ad763b950a68c070fe10e02a6a7d5e4e7d23f6802fb950bb26203a731e7

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bfc15d11bcc5ce96254f5399582104c566a1eeeb91072ff0a0de92b24f704ff
MD5 4eed58408fb6235de8c01e19772b8573
BLAKE2b-256 bc0535e048b5e77c989a16a225e915c6ad28db231ffcc43e6562774ec5e49195

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66d5423c65aebe94f244e8204cc8b39a4b970e342fb619621376af90c5f9a421
MD5 64733c67662c14eda618d02077e873aa
BLAKE2b-256 fa89d52316cf1565374a33318009edccc92d0d81d2e8ac141924d4827e58fc2d

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e65e16c9de793bfa334355c60fccc859faf1c0b707d847252841cee72b5309df
MD5 b976216da1cc06aedc4c8a71c9229052
BLAKE2b-256 99de19c97460492496ed5e21d8d7cffb86e26e27424e594992da7e111abf289d

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4e66a0f85c8a2f54025f3d477a141458b0338f1b519ad0286c704865513c814f
MD5 5cfa89f530dd857e18e5df284bb3b199
BLAKE2b-256 e13c838a44a057ab8e42f6dfd9541ec7b3c010675b5e4a3d5576a1eb682ecf8a

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 35.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8fbe4112955b33e1b4893b144bee9cc5bc476159d1d1cad9b8c0451047b6abde
MD5 b3b2fbb4262b23bf5674cb0a76663b8a
BLAKE2b-256 8a1a4444405338fd871e9f87518dcfa9ee77fe1db81a12b91c9487e000e83aaf

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 34.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 29b311d4f8dc277c8ef716c68b8020fe0e702807ba7f631fe57ad037d35713aa
MD5 33844f7fbabaaa91b6c1020b53a36c29
BLAKE2b-256 7475be4c5b3c2be760b7c293794008570373b3c8cbb2f37b272d2efdfbee9a98

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 88.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3672b5ea6d7c9c5feeb3f75a695b622ee6a82d22897fa0aa4bf1d8ca99ac9c87
MD5 c0420bc65ca3b7241d9a0945a9487f66
BLAKE2b-256 27541cbf286c3ceb593f5395e263407557f55d7659c0b75b61c271e7aa295943

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 89.4 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cad6c32ab86e48ac73af45bcd118b931e677e038167c36186ac0d640f76c8b1e
MD5 45bdcb4952c0895e3c4bcb7b2c36c4ae
BLAKE2b-256 0801c3370b384691f3bca9948951f4b77cc1ba79aefe80aed84bc39d11c7bd85

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d5904ef1621c9ef680fd2ff3c1e433205e05093d26aa42840337630ac20912f1
MD5 b5429673f3cf7d3cc25d3c4f05e1ebbe
BLAKE2b-256 f419e0eedd495be319840808847d9051d3e948d59eda4a88b61e0a333c4c5fe2

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 83.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ea987eeb860723a0a0217b2e84c327ba5fd143cd8e7e289f008ae95280d30bb
MD5 2b281b1179eeaeeef11d49a5a612520e
BLAKE2b-256 20f477cb01fe00e0e2b9ccec3bae1531531ec1912fb427fc8ff7a9a93d642c9c

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1a2b2dc334a27a5d129cfbe848dbbbc22f1a744dcebab70b406528bca874009
MD5 7257d32922958460febc60f02b095915
BLAKE2b-256 51a53c2d91a015b6b896952629c7d6abad14d05057927f5e92dbca2bfd970492

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03c2feef9fa839899065dc29cec2f921b1194bddaa9999e5460f9ab903e0ef24
MD5 66adc51f0e39966b8bd53893b4b678a7
BLAKE2b-256 05becfb29914baa199ca28b4ddf6fc59e298050ab94792b7eafd402c7309f191

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf6fa9d615f782a4626b0f99ec0a2d755e72b4e01a34503129bcc05488f4c404
MD5 7ffc57a14ae675e76b4d5eaab99d9e0a
BLAKE2b-256 649654a397ed1449625fcf1a0d2d0bcd319d3bd450852c1242fc25452c3b4458

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 072dda5e7e27a01c9c393c0558a210051d49750cd27807b443ba3285793f31bb
MD5 3be28ca23367f4c5cac44b4122864bd0
BLAKE2b-256 ae45ef430200d1ce2efd191e3ebc39ce4f91d66bd11e35dbd7963d24250d9440

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f632b8962474ce3db9fec0d9e2c0038bc1339295796b0e76ac1d27b47bb60f9c
MD5 cd7bd7dd105232ee24f3a53c781f1724
BLAKE2b-256 bc93a58fe0f3a32d094c5cf115d36893f99edd6cb95e42c66062cb194fac8c3d

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d67a7671b847ad934fea80702665b0903a5e19339713ea7a46f7e8eea21299d0
MD5 9781f0d2cc3af6644d092dbc4b27a4a3
BLAKE2b-256 99dad1227de0e2b2c63ab75a7412bb75c11aff16fa417ddbaccc97f931570270

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 33.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e818d949829aeb25898db76d5a88411c2cc899c00e1c1c1a30916254f8762e2
MD5 1c630f46bb1c065dd5d5be50a72db4b8
BLAKE2b-256 719ba0b9350f20bcde03d02b8d3794da028ed96b71a2fa96e55e90104970192e

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 34.0 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa6393cd40c3687b1d0bd3fbac8f9e81bbeb949bab63268e3756f9061c19d75c
MD5 f02a537700dd8271e8230c9af429877b
BLAKE2b-256 baf48a314f44667ec34108b73ec87426dde10f645fa6d0fcff05cfcef6c2b669

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 48.6 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 175037381e94d65553631b301c5c6f0cd69c7f8519e634221e7361595c7de0c3
MD5 2ba2c78a6846e7085f5689a0ab6b5047
BLAKE2b-256 5647ea5217a12f8852b94fd65c43805eccfbee9043665c2715b4786f8dad0b3e

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 35.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4ac9de75f3782a5c4dae1c60ed69f2a487439398ef694fc2b77c0a4e61268307
MD5 bee581a335bc1d08580dc304f01870d9
BLAKE2b-256 6bb2f75347d70d030a2ade6d6e26433ee4f7c53f5f867455171efbeb1e2b2532

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 34.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1d96e0ec13acf1c725b3ba5c932f0f4153238598880d4b32260dd552a34d6576
MD5 a1698bfbea05f4a6171ba659235362fe
BLAKE2b-256 c6e7458a819f39c659d77b6e544adb117896ed3c946be1bd93677071bb7805c9

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 86.1 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f1c6c36135635c418b3e4e39f9bd3d0ef4afaf3c328c727f94cba0c146abba1
MD5 1f00070feca1728fc5dffd9ff5938fb4
BLAKE2b-256 a7cbd60550597462857dea90570d5d1e9476b508893fc91d6571186df13ec43b

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp38-cp38-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 86.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1424a9ffa472d4a9f5581f4eeac118d2c746e1980cbb48b7c1ddd1155e8d0d11
MD5 b560e060caa1adfab23d337528f64cc6
BLAKE2b-256 1ab429cd33830d85a18e34e616e3958b61f9b41f99894d5f183fb9c90dcc21a9

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 493479781554a98492a20bd659dd470608a9ceb5b229efcc4ce03ea4c849e81e
MD5 657062f7d837f3e626ccaafad1f4b346
BLAKE2b-256 e8da513bb4518fffb70e543d007497e9ffb39f82d4249299161081dcb94e3784

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 82.2 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8971c3bc630cd3d3f2ba7b0a98b6eb3b5a83089f76e53500c53d3b3132d3437c
MD5 b01d42f8409d5fe3a9e20c3e2683cb04
BLAKE2b-256 e913e683e1a29e84c1ce44a4c7afe4049c4fd041c7af287f3569063640705ae6

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 566ab00f7bc779d6d887b2d2ec96345483ed7091796d303f5df20cb06b4327ba
MD5 1bfccd65e775a391dcd8a29119ba0680
BLAKE2b-256 9900cbc3d5c35c290e6772effec01d44fceb3c634258225b1d9d3d674310a2ac

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d1ac511ad1775f793b4c34fe40e43e213bc59620fcf7d3046ee7d73dd629f82
MD5 b2778878c4221383e2ca95e031d1e138
BLAKE2b-256 1718032d50227e313d862ae18dc5e4af5dab439ab6d7ce1daf4b9a71cfde4471

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 157159c3306e11225111e7d2db6bee1ff81d2286df53d6a305728656cf694076
MD5 53440431c359b4ea0f51d46f2c52191c
BLAKE2b-256 506c7060c2d1b3954a9ebc02c80cd1544026fbbade28ce41b2b548db77de253c

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5bd7a88b40c5c715c9afe6af4034f23a2222045d17215ffdde357733d976fde2
MD5 1bb6ee4792cec283578bf039246861d6
BLAKE2b-256 e3d5135c7c03f97f63b69238ed3c2fcf5187a18d6db1eca3074fa42ef398aadf

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e326d9e1756ccacb2a8047d924101c3ed44bb2ac6aa6fc92efbbd1f2858f7b5
MD5 b337f6c9b9038b520ba2473758b29f41
BLAKE2b-256 1d035751b6ad71d772c2081bd29ac387268b64cb58257f3cf4597a9a33b8f13f

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb92b0e27775b078d469d948341f20a071943b4dacb4950d708a04722a8d6fee
MD5 a161f2e4823a8846fd777e950bfa2b26
BLAKE2b-256 90d5edad455c987a0bfa9751752deb2360be5cca68eb37acdbdb64cbbbf63f54

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 33.8 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8df414110fdbcf689812bf0ecab83611f97191dea2ab378bd384a6166bf0849b
MD5 994eed64e702b3b37a817b264d7ffc6e
BLAKE2b-256 af0c67f3757c7b89c11d17abf18d6b162817132cb7e5db52145a46abdab3e9ae

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 34.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 17c0af11c1c4217b30635d3b3ad03dc61388f14b19a4f74bfcd6f29cfac3a59e
MD5 d812fabc4675e327f43a7ffd639da402
BLAKE2b-256 85c048942d837abfceb40a149e9cadad1e4a838dbc4e5c859c966fdfdc4dc361

See more details on using hashes here.

File details

Details for the file mmh3-5.0.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: mmh3-5.0.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 48.4 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for mmh3-5.0.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9d8ac8b3f53d2146680a2e16908620f209778bfb6c7a5d1e64b10f496f3c87f7
MD5 6db8659bb603e7c34b0083b42b8c5030
BLAKE2b-256 a2c667db7b8abcfeced4d412eff9b45583d25edec4aa967a2c42b92c140d5927

See more details on using hashes here.

Supported by

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