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.1 - 2024-09-22

Fixed

  • Fix the issue that the package cannot be built from the source distribution (#90).

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

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

Uploaded Source

Built Distributions

mmh3-5.0.1-cp313-cp313-win_arm64.whl (36.5 kB view details)

Uploaded CPython 3.13 Windows ARM64

mmh3-5.0.1-cp313-cp313-win_amd64.whl (39.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

mmh3-5.0.1-cp313-cp313-win32.whl (39.2 kB view details)

Uploaded CPython 3.13 Windows x86

mmh3-5.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (89.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

mmh3-5.0.1-cp313-cp313-musllinux_1_2_s390x.whl (91.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

mmh3-5.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl (94.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

mmh3-5.0.1-cp313-cp313-musllinux_1_2_i686.whl (89.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

mmh3-5.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (90.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

mmh3-5.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (99.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

mmh3-5.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (100.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

mmh3-5.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (95.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

mmh3-5.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (94.8 kB view details)

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

mmh3-5.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (87.6 kB view details)

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

mmh3-5.0.1-cp313-cp313-macosx_11_0_arm64.whl (38.2 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

mmh3-5.0.1-cp313-cp313-macosx_10_13_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

mmh3-5.0.1-cp313-cp313-macosx_10_13_universal2.whl (52.9 kB view details)

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

mmh3-5.0.1-cp312-cp312-win_arm64.whl (36.5 kB view details)

Uploaded CPython 3.12 Windows ARM64

mmh3-5.0.1-cp312-cp312-win_amd64.whl (39.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

mmh3-5.0.1-cp312-cp312-win32.whl (39.2 kB view details)

Uploaded CPython 3.12 Windows x86

mmh3-5.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (89.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

mmh3-5.0.1-cp312-cp312-musllinux_1_2_s390x.whl (91.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

mmh3-5.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl (94.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

mmh3-5.0.1-cp312-cp312-musllinux_1_2_i686.whl (89.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

mmh3-5.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (90.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

mmh3-5.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (99.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

mmh3-5.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (100.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

mmh3-5.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (95.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

mmh3-5.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (95.0 kB view details)

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

mmh3-5.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (87.7 kB view details)

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

mmh3-5.0.1-cp312-cp312-macosx_11_0_arm64.whl (38.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mmh3-5.0.1-cp312-cp312-macosx_10_13_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

mmh3-5.0.1-cp312-cp312-macosx_10_13_universal2.whl (52.9 kB view details)

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

mmh3-5.0.1-cp311-cp311-win_arm64.whl (36.5 kB view details)

Uploaded CPython 3.11 Windows ARM64

mmh3-5.0.1-cp311-cp311-win_amd64.whl (39.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

mmh3-5.0.1-cp311-cp311-win32.whl (39.2 kB view details)

Uploaded CPython 3.11 Windows x86

mmh3-5.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (89.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

mmh3-5.0.1-cp311-cp311-musllinux_1_2_s390x.whl (91.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

mmh3-5.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl (94.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

mmh3-5.0.1-cp311-cp311-musllinux_1_2_i686.whl (89.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

mmh3-5.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (90.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

mmh3-5.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (99.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

mmh3-5.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (100.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

mmh3-5.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (95.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

mmh3-5.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (94.8 kB view details)

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

mmh3-5.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (87.5 kB view details)

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

mmh3-5.0.1-cp311-cp311-macosx_11_0_arm64.whl (38.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mmh3-5.0.1-cp311-cp311-macosx_10_9_x86_64.whl (38.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

mmh3-5.0.1-cp311-cp311-macosx_10_9_universal2.whl (52.9 kB view details)

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

mmh3-5.0.1-cp310-cp310-win_arm64.whl (36.5 kB view details)

Uploaded CPython 3.10 Windows ARM64

mmh3-5.0.1-cp310-cp310-win_amd64.whl (39.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

mmh3-5.0.1-cp310-cp310-win32.whl (39.2 kB view details)

Uploaded CPython 3.10 Windows x86

mmh3-5.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (92.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

mmh3-5.0.1-cp310-cp310-musllinux_1_2_s390x.whl (93.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

mmh3-5.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl (99.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

mmh3-5.0.1-cp310-cp310-musllinux_1_2_i686.whl (88.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

mmh3-5.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (93.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

mmh3-5.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (98.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

mmh3-5.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (98.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

mmh3-5.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (93.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

mmh3-5.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (93.2 kB view details)

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

mmh3-5.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (86.3 kB view details)

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

mmh3-5.0.1-cp310-cp310-macosx_11_0_arm64.whl (38.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mmh3-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

mmh3-5.0.1-cp310-cp310-macosx_10_9_universal2.whl (52.9 kB view details)

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

mmh3-5.0.1-cp39-cp39-win_arm64.whl (36.5 kB view details)

Uploaded CPython 3.9 Windows ARM64

mmh3-5.0.1-cp39-cp39-win_amd64.whl (39.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

mmh3-5.0.1-cp39-cp39-win32.whl (39.2 kB view details)

Uploaded CPython 3.9 Windows x86

mmh3-5.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (92.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

mmh3-5.0.1-cp39-cp39-musllinux_1_2_s390x.whl (93.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

mmh3-5.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl (99.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

mmh3-5.0.1-cp39-cp39-musllinux_1_2_i686.whl (88.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

mmh3-5.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (93.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

mmh3-5.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (97.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

mmh3-5.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (98.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

mmh3-5.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (93.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

mmh3-5.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (93.0 kB view details)

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

mmh3-5.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (86.1 kB view details)

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

mmh3-5.0.1-cp39-cp39-macosx_11_0_arm64.whl (38.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mmh3-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mmh3-5.0.1-cp39-cp39-macosx_10_9_universal2.whl (52.9 kB view details)

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

mmh3-5.0.1-cp38-cp38-win_amd64.whl (39.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

mmh3-5.0.1-cp38-cp38-win32.whl (39.3 kB view details)

Uploaded CPython 3.8 Windows x86

mmh3-5.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (90.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

mmh3-5.0.1-cp38-cp38-musllinux_1_2_s390x.whl (91.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

mmh3-5.0.1-cp38-cp38-musllinux_1_2_ppc64le.whl (95.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

mmh3-5.0.1-cp38-cp38-musllinux_1_2_i686.whl (86.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

mmh3-5.0.1-cp38-cp38-musllinux_1_2_aarch64.whl (90.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

mmh3-5.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (94.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

mmh3-5.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (95.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

mmh3-5.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (90.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

mmh3-5.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.1 kB view details)

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

mmh3-5.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (84.8 kB view details)

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

mmh3-5.0.1-cp38-cp38-macosx_11_0_arm64.whl (38.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mmh3-5.0.1-cp38-cp38-macosx_10_9_x86_64.whl (38.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

mmh3-5.0.1-cp38-cp38-macosx_10_9_universal2.whl (52.7 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1.tar.gz
Algorithm Hash digest
SHA256 7dab080061aeb31a6069a181f27c473a1f67933854e36a3464931f2716508896
MD5 afb6819114be4cff8144a80948b558b8
BLAKE2b-256 e20804ad6419f072ea3f51f9a0f429dd30f5f0a0b02ead7ca11a831117b6f9e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 122fa9ec148383f9124292962bda745f192b47bfd470b2af5fe7bb3982b17896
MD5 a93e5998ec4b561caaeb83d67e9400c2
BLAKE2b-256 9dd3f7e6d7d062b8d7072c3989a528d9d47486ee5d5ae75250f6e26b4976d098

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d3ffb792d70b8c4a2382af3598dad6ae0c5bd9cee5b7ffcc99aa2f5fd2c1bf70
MD5 99bb78226a34a7ffac7317783db49cb3
BLAKE2b-256 ed07316c062f09019b99b248a4183c5333f8eeebe638345484774908a8f2c9c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 16e6dddfa98e1c2d021268e72c78951234186deb4df6630e984ac82df63d0a5d
MD5 60577e7f3397fc96b7a4c0adf29a6a7c
BLAKE2b-256 c2d246a6d070de4659bdf91cd6a62d659f8cc547dadee52b6d02bcbacb3262ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5eb12e886f3646dd636f16b76eb23fc0c27e8ff3c1ae73d4391e50ef60b40f6
MD5 0099903c2f88811907f61e462fa20001
BLAKE2b-256 dfa121ee8017a7feb0270c49f756ff56da9f99bd150dcfe3b3f6f0d4b243423d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e143b8f184c1bb58cecd85ab4a4fd6dc65a2d71aee74157392c3fddac2a4a331
MD5 ce81cd81a24eb44ebfeae47a49ba3c3b
BLAKE2b-256 7451f748f00c072006f4a093d9b08853a0e2e3cd5aeaa91343d4e2d942851978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cdad7bee649950da7ecd3cbbbd12fb81f1161072ecbdb5acfa0018338c5cb9cf
MD5 065dfdbd71e62f950196e627d8668466
BLAKE2b-256 95ab6e7a5e765fc78e3dbd0a04a04cfdf72e91eb8e31976228e69d82c741a5b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7989530c3c1e2c17bf5a0ec2bba09fd19819078ba90beedabb1c3885f5040b0d
MD5 4072352e1066a31a536a3536fadf47c1
BLAKE2b-256 642f0ed38aefe2a87f30bb1b12e5b75dc69fcffdc16def40d1752d6fc7cbbf96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27e5fc6360aa6b828546a4318da1a7da6bf6e5474ccb053c3a6aa8ef19ff97bd
MD5 676b457eae70503cd1fd0cab8f2e0b10
BLAKE2b-256 c833fda67c5f28e4c2131891cf8cbc3513cfc55881e3cfe26e49328e38ffacb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dceacf6b0b961a0e499836af3aa62d60633265607aef551b2a3e3c48cdaa5edd
MD5 f5b417c924ec6439e99ecd2011dc19d4
BLAKE2b-256 ac68d148327337687c53f04ad9ceaedfa9ad155ee0111d0cb06220f044d66720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53fd6bd525a5985e391c43384672d9d6b317fcb36726447347c7fc75bfed34ec
MD5 6ea824efcff6d0174a38bbd4341672e0
BLAKE2b-256 87e54dc67e7e0e716c641ab0a5875a659e37258417439590feff5c3bd3ff4538

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 632c28e7612e909dbb6cbe2fe496201ada4695b7715584005689c5dc038e59ad
MD5 f4afd0e6062d129e05f5fb3a63ad62f4
BLAKE2b-256 f85bf1c9110aa70321bb1ee713f17851b9534586c63bc25e0110e4fc03ae2450

See more details on using hashes here.

File details

Details for the file mmh3-5.0.1-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.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e70285e7391ab88b872e5bef632bad16b9d99a6d3ca0590656a4753d55988af
MD5 fe9929e753d83449a732845d915b4259
BLAKE2b-256 f2c20404383281df049d0e4ccf07fabd659fc1f3da834df6708d934116cbf45d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f0738d478fdfb5d920f6aff5452c78f2c35b0eff72caa2a97dfe38e82f93da2
MD5 28bf5cf499f8b772561138f140ccd35f
BLAKE2b-256 1379782adb6df6397947c1097b1e94b7f8d95629a4a73df05cf7207bd5148c1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ed57a5e28e502a1d60436cc25c76c3a5ba57545f250f2969af231dc1221e0a5
MD5 01861a49e51199ee24cf0800d5089bb8
BLAKE2b-256 1f9a142bcc9d0d28fc8ae45bbfb83926adc069f984cdf3495a71534cc22b8e27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f795a306bd16a52ad578b663462cc8e95500b3925d64118ae63453485d67282b
MD5 5b585c7c32a8df87d7b0ceccec70809c
BLAKE2b-256 c39454fc591e7a24c7ce2c531ecfc5715cff932f9d320c2936550cc33d67304d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 673e3f1c8d4231d6fb0271484ee34cb7146a6499fc0df80788adb56fd76842da
MD5 f472eb8eb9a97f3079d9be4dca47f6a7
BLAKE2b-256 09e0fb19c46265c18311b422ba5ce3e18046ad45c48cfb213fd6dbec23ae6b51

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a5da292ceeed8ce8e32b68847261a462d30fd7b478c3f55daae841404f433c15
MD5 ab5b47054a4a3306a3c4458bc2a94fce
BLAKE2b-256 bd25ff2cd36c82a23afa57a05cdb52ab467a911fb12c055c8a8238c0d426cbf0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d963be0dbfd9fca209c17172f6110787ebf78934af25e3694fe2ba40e55c1e2b
MD5 744714e26da4bba12596889786788a53
BLAKE2b-256 66e8542ed252924002b84c43a68a080cfd4facbea0d5df361e4f59637638d3c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 842516acf04da546f94fad52db125ee619ccbdcada179da51c326a22c4578cb9
MD5 c3e53c07fa730043508ce74709e4eb4e
BLAKE2b-256 9bfdeb1a3573cda74d4c2381d10ded62c128e869954ced1881c15e2bcd97a48f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b97b5b368fb7ff22194ec5854f5b12d8de9ab67a0f304728c7f16e5d12135b76
MD5 189f9382b03690fa4be40b553018f8b6
BLAKE2b-256 80750a5acab5291480acd939db80e94448ac937fc7fbfddc0a67b3e721ebfc9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 41f7090a95185ef20ac018581a99337f0cbc84a2135171ee3290a9c0d9519585
MD5 28916d0741b48d54c14657efb5fa4d85
BLAKE2b-256 edf94d55063f9dcaed41524f078a85989efdf1d335159af5e70af29942ebae67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5cf4a8deda0235312db12075331cb417c4ba163770edfe789bde71d08a24b692
MD5 73ff20ecf4580336e1ca279babea81a1
BLAKE2b-256 e7e85803181eac4e015b4caf307af22fea74292dca48e580d93afe402dcdc138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09b31ed0c0c0920363e96641fac4efde65b1ab62b8df86293142f35a254e72b4
MD5 b6979b4ab688bec2cde2830ba7296d96
BLAKE2b-256 3aa0eb9da5f93dea3f44b8e970f013279d1543ab210ccf63bb030830968682aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0771f90c9911811cc606a5c7b7b58f33501c9ee896ed68a6ac22c7d55878ecc0
MD5 f2511e68645fa40b5112dd7aeab2be57
BLAKE2b-256 8efae8059199fe6fbb2fd6494302904cb1209b2f8b6899d58059858a280e89a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ff8551fee7ae3b11c5d986b6347ade0dccaadd4670ffdb2b944dee120ffcc84
MD5 754b6511a277268343a0239dcba09e3b
BLAKE2b-256 18e87d5fd73f559c423ed5b72f940130c27803a406ee0ffc32ef5422f733df67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a09fd6cc72c07c0c07c3357714234b646d78052487c4a3bd5f7f6e08408cff60
MD5 9128f2cd22746e6f22cf2f9ae725055e
BLAKE2b-256 fae94ac56001a5bab6d26aa3dfabeddea6d7f037fd2972c76803259f51a5af75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eae8c19903ed8a1724ad9e67e86f15d198a7a1271a4f9be83d47e38f312ed672
MD5 c143fb76790174065066e036438035b5
BLAKE2b-256 f8048860cab35b48aaefe40cf88344437e79ddc93cf7ff745dacd1cd56a2be1e

See more details on using hashes here.

File details

Details for the file mmh3-5.0.1-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.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eba6001989a92f72a89c7cf382fda831678bd780707a66b4f8ca90239fdf2123
MD5 6c5be8e8f92828a8267b04e1ead42eae
BLAKE2b-256 dd41ec0ee3fd5124c83cb767dcea8569bb326f8981cc88c991e3e4e948a31e24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e39694c73a5a20c8bf36dfd8676ed351e5234d55751ba4f7562d85449b21ef3f
MD5 5493ac16c10b8a983630ac9356ea0b19
BLAKE2b-256 54d8c0d89da6c729feec997a9b3b68698894cef12359ade0da95eba9e03b1d5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbca322519a6e6e25b6abf43e940e1667cf8ea12510e07fb4919b48a0cd1c411
MD5 acd9c328f7ac4b13374051e805c196e9
BLAKE2b-256 339949bf3c86244857b3b250c2f54aff22a5a78ef12258af556fa39bb1e80699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6246927bc293f6d56724536400b85fb85f5be26101fa77d5f97dd5e2a4c69bf2
MD5 9eb41f25916eb267816caee800e9f6a1
BLAKE2b-256 01b59609fa353c27188292748db033323c206f3fc6fbfa124bccf6a42af0da08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f2730bb263ed9c388e8860438b057a53e3cc701134a6ea140f90443c4c11aa40
MD5 7798db0ded91cd625700a0ee86bc9573
BLAKE2b-256 75c75b52d0882e7c0dccfaf8786a648e2b26c5307c594abe5cbe98c092607c97

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 af6522722fbbc5999aa66f7244d0986767a46f1fb05accc5200f75b72428a508
MD5 0621c297d75a4fc81e63b49bc2fb05a4
BLAKE2b-256 c751538f2b8412303281d8ce2a9a5c4ea84ff81f06de98af0b7c72059727a3bb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 336bc4df2e44271f1c302d289cc3d78bd52d3eed8d306c7e4bff8361a12bf148
MD5 df7226f5f103463a60f991d8b70ebce1
BLAKE2b-256 486997029eda3df0f84edde16a496a2e71bac508fc5d1f0a31e163da071e2670

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9a76518336247fd17689ce3ae5b16883fd86a490947d46a0193d47fb913e26e3
MD5 791c3701f6b719ecaab255f6ebc4c8c1
BLAKE2b-256 0b79b986bb067dbfcba6879afe6e723aad1bd53f223450532dd9a4606d0af389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71f3b765138260fd7a7a2dba0ea5727dabcd18c1f80323c9cfef97a7e86e01d0
MD5 7953aa2a54fab6764e1b4c9d64f8763d
BLAKE2b-256 5c3aab31bb5e9e1a19a4a997593cbe6ce56710308218ff36c7f76d40ff9c8d2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c100dd441703da5ec136b1d9003ed4a041d8a1136234c9acd887499796df6ad8
MD5 244895dfbfc4578d4d101e120fd60bd4
BLAKE2b-256 5e4a34d5691e7be7c63c34181387bc69bdcc0005ca93c8b562d68cb5775e0e78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b7fb5db231f3092444bc13901e6a8d299667126b00636ffbad4a7b45e1051e2f
MD5 905b1cc1fa5c917a262697b45fdc07a3
BLAKE2b-256 3cc5daea5d534fcf20b2399c2a7b1cd00a8d29d4d474247c15c2c94548a1a272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ee7d85438dc6aff328e19ab052086a3c29e8a9b632998a49e5c4b0034e9e8d6
MD5 773c710b8e512bfc2f2556b8cea93a28
BLAKE2b-256 d9234732ba68c6ef7242b69bb53b9e1bcb2ef065d68ed85fd26e829fb911ab5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4fb670c29e63f954f9e7a2cdcd57b36a854c2538f579ef62681ccbaa1de2b69
MD5 34d0c9894f81926327d027d19e3e1d7e
BLAKE2b-256 c9a1f094ca8b8fb5e2ac53201070bda42b0fee80ceb92c153eb99a1453e3aed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b2797063a34e78d1b61639a98b0edec1c856fa86ab80c7ec859f1796d10ba429
MD5 8377cc375dcba18edaad2ac5c24b0026
BLAKE2b-256 d574681113776fe406c09870ab2152ffbd214a15bbc8f1d1da9ad73ce594b878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0217987a8b8525c8d9170f66d036dec4ab45cfbd53d47e8d76125791ceb155e
MD5 a16ee7e047992ab48871c26a57837ebd
BLAKE2b-256 ec45c7c8ae64e3ae024776a0ce5377c16c6741a3359f3e9505fc35fc5012beb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d47ba84d48608f79adbb10bb09986b6dc33eeda5c2d1bd75d00820081b73bde9
MD5 3ce4d2cbe657ae8eee875783b64dfb5b
BLAKE2b-256 e356a2d203ca97702d4e045ac1a46a608393da1a1dddb24f81de664dae940518

See more details on using hashes here.

File details

Details for the file mmh3-5.0.1-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.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 282797957c9f60b51b9d768a602c25f579420cc9af46feb77d457a27823d270a
MD5 070e881c434243d84ba98deb8cb0d7fc
BLAKE2b-256 5f82274d646f3f604c35b7e3d4eb7f3ff08b3bdc6a2c87d797709bb6f084a611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bba16340adcbd47853a2fbe5afdb397549e8f2e79324ff1dced69a3f8afe7c3
MD5 0efc0b040f7adedb0fc90fbec61324be
BLAKE2b-256 bf4fdbb8be18ce9b6ff8df14bc14348c0404b3091fb51df9c673ebfcf5877db3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bd3c94b110e55db02ab9b605029f48a2f7f677c6e58c09d44e42402d438b7e1
MD5 c91c220b981040ff8e7df23a3c6b5138
BLAKE2b-256 13f02d3daca276a4673f82af859e4b0b18befd4e6e54f1017ba48ea9735b2f1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3349b968be555f7334bbcce839da98f50e1e80b1c615d8e2aa847ea4a964a012
MD5 1c622b5d320acfcc26df9084622e3131
BLAKE2b-256 bf06f466e0da3c5bd6fbb1e047f70fd4e9e9563d0268aa56de511f363478dbf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9a6d5a9b1b923f1643559ba1fc0bf7a5076c90cbb558878d3bf3641ce458f25d
MD5 6e9fa81320bf4bc5457523260d02a628
BLAKE2b-256 fb8af3b9cf8b7110fef0f130158d7602af6f5b09f2cf568130814b7c92e2507b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b17156d56fabc73dbf41bca677ceb6faed435cc8544f6566d72ea77d8a17e9d0
MD5 b18af632068fabea3226dc846eb3d0c6
BLAKE2b-256 162bcd5cfa4d7ad40a37655af491f9270909d63fc27bcf0558ec36000ee5347f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c5e741e421ec14400c4aae30890515c201f518403bdef29ae1e00d375bb4bbb5
MD5 bf07371e159df77d73e91f2bdc397b74
BLAKE2b-256 748e4bb5ade332a87de633cda21dae09d6002d69601f2b93e9f40302ab2d9acf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c028fa77cddf351ca13b4a56d43c1775652cde0764cadb39120b68f02a23ecf6
MD5 56788f5342a4b91089bf4caa93f91318
BLAKE2b-256 0a3fd5fecf13915163a15b449e5cc89232a4df90e836ecad1c38121318119d27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50c2495a02045f3047d71d4ae9cdd7a15efc0bcbb7ff17a18346834a8e2d1d19
MD5 8eabf72c3f551dc84a596c3963816821
BLAKE2b-256 8d6bdf60b14a2dd383d8848f6f35496c86c7003be3ffb236789e98d002c542c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2ae9b1f5ef27ec54659920f0404b7ceb39966e28867c461bfe83a05e8d18ddb0
MD5 452f467ebbf738747b201345aa3e446a
BLAKE2b-256 38267267146122deb584cf377975b994d80c6d72c4c8d0e8eedff4d0cc5cd4c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 42050af21ddfc5445ee5a66e73a8fc758c71790305e3ee9e4a85a8e69e810f94
MD5 522a9610a07c5a68b067637e162799af
BLAKE2b-256 1458e0d258b18749d8640233976493716a40aa27352dcb1cea941836357dac24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e299408565af7d61f2d20a5ffdd77cf2ed902460fe4e6726839d59ba4b72316
MD5 e0da7a411f51e32ac99e9b9513c064f5
BLAKE2b-256 d966770b5ad35b5a2eb7965f3fcaeaa76148e59543575d2e27b80690c1b0795c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16347d038361f8b8f24fd2b7ef378c9b68ddee9f7706e46269b6e0d322814713
MD5 6ddbb35b5e4edbed477b4fc8cb7875a5
BLAKE2b-256 9e1cd0ce5f498493be4de2e7e7596e1cbf63315a4c0bb8bb94e3c37c4fad965d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 389a6fd51efc76d3182d36ec306448559c1244f11227d2bb771bdd0e6cc91321
MD5 a450dc5ad70da7eb6240ecea0abd3695
BLAKE2b-256 35fde181f4f4b250f7b63ee27a7d65e5e290a3ea0e26cc633f4bfd906f04558b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8b4d72713799755dc8954a7d36d5c20a6c8de7b233c82404d122c7c7c1707cc
MD5 c7dae1bd9fab50cc9914f5ed8b90fd8b
BLAKE2b-256 65f329726296fadeaf06134a6978f7c453dfa562cf2f0f1faf9ae28b9b8ef76e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 081a8423fe53c1ac94f87165f3e4c500125d343410c1a0c5f1703e898a3ef038
MD5 ed97b17e00074ec8c5f7c932859b4fec
BLAKE2b-256 35cb4980c7eb6cd31f49d1913a4066562bc9e0af28526750f1232be9688a9cd4

See more details on using hashes here.

File details

Details for the file mmh3-5.0.1-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.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d5d23a94d91aabba3386b3769048d5f4210fdfef80393fece2f34ba5a7b466c
MD5 7c1f1ee1c26852c4ea8021735850a2f4
BLAKE2b-256 10803f33a8f4de12cea322607da1a84d001513affb741b3c3cc1277ecb85d34b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39f4128edaa074bff721b1d31a72508cba4d2887ee7867f22082e1fe9d4edea0
MD5 4af5b1d55c5990e7cbaad73a373fda7a
BLAKE2b-256 615c8a5d838da3eb3fb91035ef5eaaea469abab4e8e3fae55607c27a1a07d162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a2583b5521ca49756d8d8bceba80627a9cc295f255dcab4e3df7ccc2f09679a
MD5 aac280cbae21027f109dae9674a20d4a
BLAKE2b-256 7684a98f59a620b522f218876a0630b02fc345ecf078f6393595756ddb3aa0b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac7a391039aeab95810c2d020b69a94eb6b4b37d4e2374831e92db3a0cdf71c6
MD5 f7e0451b3135f91ed4239bff441ec01f
BLAKE2b-256 da286b37f0d6707872764e1af49f327b0940b6a3ad995d91b3839b90ba35f559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f0a4b4bf05778ed77d820d6e7d0e9bd6beb0c01af10e1ce9233f5d2f814fcafa
MD5 ea88fb8b1383825cff25acaba44f51e8
BLAKE2b-256 fab99a91b0a0e330557cdbf51fc43ca0ba306633f2ec6d2b15e871e288592a32

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 0d0a35a69abdad7549c4030a714bb4ad07902edb3bbe61e1bbc403ded5d678be
MD5 6628068f24860840048c43ac3ddaeb0b
BLAKE2b-256 2c0610858214dc0829ae9d9e33190665fbbb4d788713902cae4ebf68ad9984fc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9e26a0f4eb9855a143f5938a53592fa14c2d3b25801c2106886ab6c173982780
MD5 82c100a29dea8fd139e9217e7125f335
BLAKE2b-256 26586f1ad1d9570d071a9ae7f75d03f2a242cd1c366a12a73d9a559a5a404c20

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1455fb6b42665a97db8fc66e89a861e52b567bce27ed054c47877183f86ea6e3
MD5 3df3e79cf68d001722a6adc261ff25a1
BLAKE2b-256 6f58119cb72fefac84595813457dd0bafbcec1ae05757808b0f516856cbff9f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd4383f35e915e06d077df27e04ffd3be7513ec6a9de2d31f430393f67e192a7
MD5 b4d83794110d4139d52f248996ec2931
BLAKE2b-256 53ce83c90ac60c045fafb3229b2dfdd9e36d538a1ae70eec65c56672facf1383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5f30b834552a4f79c92e3d266336fb87fd92ce1d36dc6813d3e151035890abbd
MD5 a6e4bfbbc7663b234ace03a6381c816c
BLAKE2b-256 bc3acda77f5a318b5e4bedbcad57cb1d31e2732d295bd8febf0159aed37dbeda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6182d5924a5efc451900f864cbb021d7e8ad5d524816ca17304a0f663bc09bb5
MD5 000672783ecdbe1303a43362af14d847
BLAKE2b-256 f1ffdc1a51ae4f5828eb8e301b18874f259782c7e82da6b734b02391074800f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8021851935600e60c42122ed1176399d7692df338d606195cd599d228a04c1c6
MD5 81e9e06e87b45954f821be249525b6aa
BLAKE2b-256 f1318de75963ac592927688bf718e2a3ee4a06baab096d410294e2fc2008abd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb3d4f751a0b8b4c8d06ef1c085216c8fddcc8b8c8d72445976b5167a40c6d1e
MD5 fa8bc53d1ef3c13f78e747237c88d7b6
BLAKE2b-256 94cffa875748d0b2c0da2aabb49f11ad41bc58fa751ef5164acfc1f72e8fb2de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d45733a78d68b5b05ff4a823aea51fa664df1d3bf4929b152ff4fd6dea2dd69b
MD5 f2a5e317a7132149314e8933ffdd3587
BLAKE2b-256 9eff63f8574b7519c57e7821fccfdbfbed8d6d47d3d72491e83d9af3abccc753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a16bd3ec90682c9e0a343e6bd4c778c09947c8c5395cdb9e5d9b82b2559efbca
MD5 4c5d6c88b1b5445c706ce6359a8f09fa
BLAKE2b-256 a2709df067f22dc75cf84881b0d1e9932f257f34ae0a048606315a86c6903bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5ff2a8322ba40951a84411550352fba1073ce1c1d1213bb7530f09aed7f8caf
MD5 16924a9c8bf167db33a222c4eca81b3e
BLAKE2b-256 dd1f39557da793579b568eb054d55e662eed14116ef3277d116cc60194ddbe7d

See more details on using hashes here.

File details

Details for the file mmh3-5.0.1-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.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac4aeb1784e43df728034d0ed72e4b2648db1a69fef48fa58e810e13230ae5ff
MD5 02111676610d19b1608f6a9e882cca68
BLAKE2b-256 0679c050c67beed7adbde9d1540eae89b2a6b9282c42c23b5db7567c1bb748ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 904285e83cedebc8873b0838ed54c20f7344120be26e2ca5a907ab007a18a7a0
MD5 24268e642de51fb51909c5d4acb6e0c5
BLAKE2b-256 c76b83aa6e9d3abd571f4cd9e6ca59fe76cfb59ac3df6334ff834a4e12af123f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2771a1c56a3d4bdad990309cff5d0a8051f29c8ec752d001f97d6392194ae880
MD5 1f9b62648c368bc0ed27a364bbc45697
BLAKE2b-256 d7ee59fd4dc16041b06b051e69d6728fe8b4cb6c834038766fdb8f4af28129c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6dd9dc28c2d168c49928195c2e29b96f9582a5d07bd690a28aede4cc07b0e696
MD5 32d0c39a24942a3960709112f1f5b4c0
BLAKE2b-256 913f964d693021fe830820e57fe001cf77d17f5b80f045ceaa754e33f8d7adf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 48e84cf3cc7e8c41bc07de72299a73b92d9e3cde51d97851420055b1484995f7
MD5 4d51ebad3d8164ed81a6caaa0c73256a
BLAKE2b-256 253f899d182ac4dedc1982b5a5ac77522c6a9c3d5cf68e211ff8c5a87e420844

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 de15739ac50776fe8aa1ef13f1be46a6ee1fbd45f6d0651084097eb2be0a5aa4
MD5 697cb12a88c4548f0b8b2f97b55aa682
BLAKE2b-256 de7539185fff3bd01400b39ca811cca866a37c315b8e98fcb0fd87975ee9d4c3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5610a842621ff76c04b20b29cf5f809b131f241a19d4937971ba77dc99a7f330
MD5 ded5d223760447b49dfb9557ec742089
BLAKE2b-256 0e6b46be2d5aac7136b45dd8a6affa7072036b8c077e4a5dd402b4c771321506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be74c2dda8a6f44a504450aa2c3507f8067a159201586fc01dd41ab80efc350f
MD5 56d159bc19e157703a0b8baca0807067
BLAKE2b-256 dccd02aaeb64efb71faa5bb5f93b1bae48f9a424b3e1c284787f02fc2ccf435a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5ff5c1f301c4a8b6916498969c0fcc7e3dbc56b4bfce5cfe3fe31f3f4609e5ae
MD5 cd910c518f49a197824b83d74067a414
BLAKE2b-256 d93bb53e2a75580fbd9e6107b9348989ee6ac073b37ef64c05b60942ff62ce1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 42865567838d2193eb64e0ef571f678bf361a254fcdef0c5c8e73243217829bd
MD5 05e67dc46fd3a71e2fe7499d3dbdfc23
BLAKE2b-256 689c95e71b9ce70e95f48ec2baea88e228d83b2f7afefa4451c19e612c3d7dad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32898170644d45aa27c974ab0d067809c066205110f5c6d09f47d9ece6978bfe
MD5 d3c4e413b9e21ab1d614b38fc208b847
BLAKE2b-256 3db344aed3210fb0720a866cd638e43300939f4feef43fa82f05759d7dd85ac6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc6aafb867c2030df98ac7760ff76b500359252867985f357bd387739f3d5287
MD5 b03de67179fdb288ff75250be70dcdcb
BLAKE2b-256 539e1307e4d8fa4915030e137581c40c9c6c401669329f885b529ce2e52b02f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 242f77666743337aa828a2bf2da71b6ba79623ee7f93edb11e009f69237c8561
MD5 7a907dc4d7962c131a5332f9aa2ce8cb
BLAKE2b-256 102ac3516b43df08d29e9943ac44a713cd2836d3cdd7e780370b1c163fac714e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79f37da1eed034d06567a69a7988456345c7f29e49192831c3975b464493b16e
MD5 df039da04bf68a0543cab0b9196a2855
BLAKE2b-256 eb820063e2e72674355e8db1933248f22caf1db79b70b101208130d70205f4db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d04d9aa19d48e4c7bbec9cabc2c4dccc6ff3b2402f856d5bf0de03e10f167b5b
MD5 e6f3799e16555e1868fcd5474856073f
BLAKE2b-256 1aad299bc37138764948fae373e2fb30e5c7ba6bfff2b702f560626573de4e0d

See more details on using hashes here.

File details

Details for the file mmh3-5.0.1-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.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 565b15f8d7df43acb791ff5a360795c20bfa68bca8b352509e0fbabd06cc48cd
MD5 0390139878069a81e4259f1648af4824
BLAKE2b-256 6504fe61ef7a9339b00a4c2fb977ceab04f3b789b539deb8aa2e2b396e354e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffd943fff690463945f6441a2465555b3146deaadf6a5e88f2590d14c655d71b
MD5 b1dcc7f49827394198734aa1daae21a1
BLAKE2b-256 c8156f2065526457ae2f668e70d4bf409b1df7c3a72b7d59fff2b8d8452da561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eee6134273f64e2a106827cc8fd77e70cc7239a285006fc6ab4977d59b015af2
MD5 7259b0a73240f5b3b9539c6d97eabeaf
BLAKE2b-256 95b254dfe64837623d1cf739561e261f6688c32f481f3bc9d7211826d21f8c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5bbb066538c1048d542246fc347bb7994bdda29a3aea61c22f9f8b57111ce69
MD5 a4f6b688c95bb96e6c7473bf8a7289d3
BLAKE2b-256 21a00f14b041900a3f35844882ff1efde55f4ead011fc306c96db079745d39fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.0.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b12bad8c75e6ff5d67319794fb6a5e8c713826c818d47f850ad08b4aa06960c6
MD5 d9824f734be4a7802b36bf606b21df8a
BLAKE2b-256 a4c86cc117f4dd41d2c66ebee5ad5980935d3ba66de0ec1e20bf90c4836e920b

See more details on using hashes here.

Supported by

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