Skip to main content

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

Project description

mmh3

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

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

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

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

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

Installation

pip install mmh3

Usage

Basic usage

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

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

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

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

hashlib-style hashers

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

Changelog

See Changelog (latest version) for the complete changelog.

5.1.0 - 2025-01-25

Added

Removed

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

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

License

MIT, unless otherwise noted within a file.

Frequently Asked Questions

Different results from other MurmurHash3-based libraries

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

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

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

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

Handling errors with negative seeds

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

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

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

Contributing Guidelines

See Contributing.

Authors

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

Ported and modified for Python by Hajime Senuma.

External Tutorials

High-performance computing

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

Internet of things

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

How to Cite This Library

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

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

In BibTeX format:

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

Related Libraries

Project details


Download files

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

Source Distribution

mmh3-5.1.0.tar.gz (33.7 kB view details)

Uploaded Source

Built Distributions

mmh3-5.1.0-cp313-cp313-win_arm64.whl (38.9 kB view details)

Uploaded CPython 3.13 Windows ARM64

mmh3-5.1.0-cp313-cp313-win_amd64.whl (41.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

mmh3-5.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (97.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

mmh3-5.1.0-cp313-cp313-musllinux_1_2_s390x.whl (98.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

mmh3-5.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl (105.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

mmh3-5.1.0-cp313-cp313-musllinux_1_2_i686.whl (96.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

mmh3-5.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (98.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

mmh3-5.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (106.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

mmh3-5.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (108.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

mmh3-5.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (102.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

mmh3-5.1.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (101.6 kB view details)

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

mmh3-5.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (93.7 kB view details)

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

mmh3-5.1.0-cp313-cp313-macosx_11_0_arm64.whl (40.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

mmh3-5.1.0-cp313-cp313-macosx_10_13_x86_64.whl (40.6 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

mmh3-5.1.0-cp313-cp313-macosx_10_13_universal2.whl (56.2 kB view details)

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

mmh3-5.1.0-cp312-cp312-win_arm64.whl (38.9 kB view details)

Uploaded CPython 3.12 Windows ARM64

mmh3-5.1.0-cp312-cp312-win_amd64.whl (41.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

mmh3-5.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (97.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

mmh3-5.1.0-cp312-cp312-musllinux_1_2_s390x.whl (98.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

mmh3-5.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl (105.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

mmh3-5.1.0-cp312-cp312-musllinux_1_2_i686.whl (96.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

mmh3-5.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (98.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

mmh3-5.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (107.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

mmh3-5.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (108.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

mmh3-5.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (102.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

mmh3-5.1.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (101.7 kB view details)

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

mmh3-5.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (93.8 kB view details)

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

mmh3-5.1.0-cp312-cp312-macosx_11_0_arm64.whl (40.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mmh3-5.1.0-cp312-cp312-macosx_10_13_x86_64.whl (40.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

mmh3-5.1.0-cp312-cp312-macosx_10_13_universal2.whl (56.2 kB view details)

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

mmh3-5.1.0-cp311-cp311-win_arm64.whl (38.9 kB view details)

Uploaded CPython 3.11 Windows ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

mmh3-5.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (97.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

mmh3-5.1.0-cp311-cp311-musllinux_1_2_s390x.whl (98.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

mmh3-5.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl (105.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

mmh3-5.1.0-cp311-cp311-musllinux_1_2_i686.whl (96.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

mmh3-5.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (98.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

mmh3-5.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (106.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

mmh3-5.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (108.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

mmh3-5.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (102.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

mmh3-5.1.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (101.6 kB view details)

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

mmh3-5.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (93.7 kB view details)

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

mmh3-5.1.0-cp311-cp311-macosx_11_0_arm64.whl (40.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

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

mmh3-5.1.0-cp310-cp310-win_arm64.whl (38.9 kB view details)

Uploaded CPython 3.10 Windows ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

mmh3-5.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (100.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

mmh3-5.1.0-cp310-cp310-musllinux_1_2_s390x.whl (100.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

mmh3-5.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl (109.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

mmh3-5.1.0-cp310-cp310-musllinux_1_2_i686.whl (94.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

mmh3-5.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (104.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

mmh3-5.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (106.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

mmh3-5.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

mmh3-5.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (99.2 kB view details)

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

mmh3-5.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (91.7 kB view details)

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

mmh3-5.1.0-cp310-cp310-macosx_11_0_arm64.whl (40.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

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

mmh3-5.1.0-cp39-cp39-win_arm64.whl (38.9 kB view details)

Uploaded CPython 3.9 Windows ARM64

mmh3-5.1.0-cp39-cp39-win_amd64.whl (41.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

mmh3-5.1.0-cp39-cp39-win32.whl (40.8 kB view details)

Uploaded CPython 3.9 Windows x86

mmh3-5.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (99.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

mmh3-5.1.0-cp39-cp39-musllinux_1_2_s390x.whl (100.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

mmh3-5.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl (109.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

mmh3-5.1.0-cp39-cp39-musllinux_1_2_i686.whl (94.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

mmh3-5.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (101.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

mmh3-5.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (104.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

mmh3-5.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (106.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

mmh3-5.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (99.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

mmh3-5.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (98.9 kB view details)

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

mmh3-5.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (91.4 kB view details)

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

mmh3-5.1.0-cp39-cp39-macosx_11_0_arm64.whl (40.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mmh3-5.1.0-cp39-cp39-macosx_10_9_x86_64.whl (40.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mmh3-5.1.0-cp39-cp39-macosx_10_9_universal2.whl (56.1 kB view details)

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

File details

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

File metadata

  • Download URL: mmh3-5.1.0.tar.gz
  • Upload date:
  • Size: 33.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mmh3-5.1.0.tar.gz
Algorithm Hash digest
SHA256 136e1e670500f177f49ec106a4ebf0adf20d18d96990cc36ea492c651d2b406c
MD5 6296b804ff0de8951c9f4996c262ab43
BLAKE2b-256 471b1fc6888c74cbd8abad1292dde2ddfcf8fc059e114c97dd6bf16d12f36293

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 38.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b22fe2e54be81f6c07dcb36b96fa250fb72effe08aa52fbb83eade6e1e2d5fd7
MD5 138f81d4e59eaf8b0dfd29e7ae5be897
BLAKE2b-256 16714ad9a42f2772793a03cb698f0fc42499f04e6e8d2560ba2f7da0fb059a8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 41.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 10db7765201fc65003fa998faa067417ef6283eb5f9bba8f323c48fd9c33e91f
MD5 53794adb5e79534a6be27f0ce4e4661c
BLAKE2b-256 09339fb90ef822f7b734955a63851907cf72f8a3f9d8eb3c5706bfa6772a2a77

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c65dbd12885a5598b70140d24de5839551af5a99b29f9804bb2484b29ef07692
MD5 82446ccc3de737e73992f26a49493c9a
BLAKE2b-256 23facbbb7fcd0e287a715f1cd28a10de94c0535bd94164e38b852abc18da28c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9135c300535c828c0bae311b659f33a31c941572eae278568d1a953c4a57b59
MD5 5ca58eea71d9b0737f5f51ac262851ff
BLAKE2b-256 f0d025c4b0c7b8e49836541059b28e034a4cccd0936202800d43a1cc48495ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e513983830c4ff1f205ab97152a0050cf7164f1b4783d702256d39c637b9d107
MD5 f8908dcc7c2b464a701a5ac8e055be85
BLAKE2b-256 6b4490b11fd2b67dcb513f5bfe9b476eb6ca2d5a221c79b49884dc859100905e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0f4be3703a867ef976434afd3661a33884abe73ceb4ee436cac49d3b4c2aaa7b
MD5 d5b473c9b01d4edc9f743b25899b0db3
BLAKE2b-256 be439e205310f47c43ddf1575bb3a1769c36688f30f1ac105e0f0c878a29d2cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 785ae09276342f79fd8092633e2d52c0f7c44d56e8cfda8274ccc9b76612dba2
MD5 3f2acc669dc096f93ed679afc0949710
BLAKE2b-256 9947dff2b54fac0d421c1e6ecbd2d9c85b2d0e6f6ee0d10b115d9364116a511e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e550a45d2ff87a1c11b42015107f1778c93f4c6f8e731bf1b8fa770321b8cc4
MD5 00d9e9d27c18479d8ac001a3ca257272
BLAKE2b-256 5e6fb9d735533b6a56b2d56333ff89be6a55ac08ba7ff33465feb131992e33eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31b47a620d622fbde8ca1ca0435c5d25de0ac57ab507209245e918128e38e676
MD5 722143fdf38056f7a788ff7a80847b24
BLAKE2b-256 341e92c212bb81796b69dddfd50a8a8f4b26ab0d38fdaf1d3e8628a67850543b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d19fa07d303a91f8858982c37e6939834cb11893cb3ff20e6ee6fa2a7563826a
MD5 45050ed2021c4140b397e6871ba0d03d
BLAKE2b-256 4694d6c5c3465387ba077cccdc028ab3eec0d86eed1eebe60dcf4d15294056be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0d6719045cda75c3f40397fc24ab67b18e0cb8f69d3429ab4c39763c4c608dd
MD5 3f491391fed86ac506c15ddc6326390a
BLAKE2b-256 112b1f9e962fdde8e41b0f43d22c8ba719588de8952f9376df7d73a434827590

See more details on using hashes here.

File details

Details for the file mmh3-5.1.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.1.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6128b610b577eed1e89ac7177ab0c33d06ade2aba93f5c89306032306b5f1c6
MD5 ccb599d99d4991d7fd8b104c0ee4f312
BLAKE2b-256 9ea9a2cc4a756d73d9edf4fb85c76e16fd56b0300f8120fd760c76b28f457730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00f810647c22c179b6821079f7aa306d51953ac893587ee09cf1afb35adf87cb
MD5 66930a397fc646c39c9840f3b2e739fa
BLAKE2b-256 f441f2f494bbff3aad5ffd2085506255049de76cde51ddac84058e32768acc79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52e12895b30110f3d89dae59a888683cc886ed0472dd2eca77497edef6161997
MD5 2792a74f72fc773b4807ae110aacbf66
BLAKE2b-256 367e2b6c43ed48be583acd68e34d16f19209a9f210e4669421b0321e326d8554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 17cef2c3a6ca2391ca7171a35ed574b5dab8398163129a3e3a4c05ab85a4ff40
MD5 ed5001b2dc4f9c61e5eca56433e61c64
BLAKE2b-256 5a65eaada79a67fde1f43e1156d9630e2fb70655e1d3f4e8f33d7ffa31eeacfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7a523899ca29cfb8a5239618474a435f3d892b22004b91779fcb83504c0d5b8c
MD5 e9e28cda2b3d62b2fe164c9ccdd5278a
BLAKE2b-256 0506a098a42870db16c0a54a82c56a5bdc873de3165218cd5b3ca59dbc0d31a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 38.9 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a4c1a76808dfea47f7407a0b07aaff9087447ef6280716fd0783409b3088bb3c
MD5 2536fde382ed345d51c6337e4e185277
BLAKE2b-256 809d627375bab4c90dd066093fc2c9a26b86f87e26d980dbf71667b44cbee3eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 41.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aa75981fcdf3f21759d94f2c81b6a6e04a49dfbcdad88b152ba49b8e20544776
MD5 3a12cf4adabf5a531a0fea03b08fd192
BLAKE2b-256 12dd7cbc30153b73f08eeac43804c1dbc770538a01979b4094edbe1a4b8eb551

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1d6508504c531ab86c4424b5a5ff07c1132d063863339cf92f6657ff7a580f76
MD5 2715700631ad037f504cbc0c8586563c
BLAKE2b-256 2929831ea8d4abe96cdb3e28b79eab49cac7f04f9c6b6e36bfc686197ddba09d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3313577453582b03383731b66447cdcdd28a68f78df28f10d275d7d19010c1df
MD5 522a467cd1a51f4c353086c1f6c08ad8
BLAKE2b-256 72d23c259d43097c30f062050f7e861075099404e8886b5d4dd3cebf180d6e02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bf658a61fc92ef8a48945ebb1076ef4ad74269e353fffcb642dfa0890b13673b
MD5 7c808c3d28acf2d934a809c81284f4bd
BLAKE2b-256 d37c65047d1cccd3782d809936db446430fc7758bda9def5b0979887e08302a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 832dae26a35514f6d3c1e267fa48e8de3c7b978afdafa0529c808ad72e13ada3
MD5 392512884b910bedff27561d6215a748
BLAKE2b-256 8a4d340d1e340df972a13fd4ec84c787367f425371720a1044220869c82364e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b3a04bc214a6e16c81f02f855e285c6df274a2084787eeafaa45f2fbdef1b63
MD5 d0b820cad8bd03cc778322b010560050
BLAKE2b-256 819026adb15345af8d9cf433ae1b6adcf12e0a4cad1e692de4fa9f8e8536c5ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71408579a570193a4ac9c77344d68ddefa440b00468a0b566dcc2ba282a9c559
MD5 732aeaf3bee847080d05826442c4f136
BLAKE2b-256 4939a92c60329fa470f41c18614a93c6cd88821412a12ee78c71c3f77e1cfc2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c94d999c9f2eb2da44d7c2826d3fbffdbbbbcde8488d353fee7c848ecc42b968
MD5 48c4d974e5ccee1692357f26879f243f
BLAKE2b-256 1ff611c556324c64a92aa12f28e221a727b6e082e426dc502e81f77056f6fc98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2044a601c113c981f2c1e14fa33adc9b826c9017034fe193e9eb49a6882dbb06
MD5 021b505e8c78117a076e9b3ca0b0f312
BLAKE2b-256 945c5a18acb6ecc6852be2d215c3d811aa61d7e425ab6596be940877355d7f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4f47f58cd5cbef968c84a7c1ddc192fef0a36b48b0b8a3cb67354531aa33b00
MD5 bee74176df7028d103fabda6977d8fbb
BLAKE2b-256 833330d163ce538c54fc98258db5621447e3ab208d133cece5d2577cf913e708

See more details on using hashes here.

File details

Details for the file mmh3-5.1.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.1.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 457da019c491a2d20e2022c7d4ce723675e4c081d9efc3b4d8b9f28a5ea789bd
MD5 caf07b99de0a6472d299e5456f4dcc1f
BLAKE2b-256 b4550927c33528710085ee77b808d85bbbafdb91a1db7c8eaa89cac16d6c513e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a015dcb24fa0c7a78f88e9419ac74f5001c1ed6a92e70fd1803f74afb26a4c83
MD5 402e484f8ffaa3e8b63170ad3f4935c9
BLAKE2b-256 5d61ca0c196a685aba7808a5c00246f17b988a9c4f55c594ee0a02c273e404f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 babf2a78ce5513d120c358722a2e3aa7762d6071cd10cede026f8b32452be322
MD5 0c3e0fb3bb056982b3835647891b5d7d
BLAKE2b-256 c02ac52cf000581bfb8d94794f58865658e7accf2fa2e90789269d4ae9560b16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b1020735eb35086ab24affbea59bb9082f7f6a0ad517cb89f0fc14f16cea4dae
MD5 9a7ad756aa2be4deb9d7e85f6e58a3d6
BLAKE2b-256 60382132d537dc7a7fdd8d2e98df90186c7fcdbd3f14f95502a24ba443c92245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 45712987367cb9235026e3cbf4334670522a97751abfd00b5bc8bfa022c3311d
MD5 541c8a4fd6413c73068de18415495c9e
BLAKE2b-256 f447e5f452bdf16028bfd2edb4e2e35d0441e4a4740f30e68ccd4cfd2fb2c57e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 38.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f29dc4efd99bdd29fe85ed6c81915b17b2ef2cf853abf7213a48ac6fb3eaabe1
MD5 93856df9653577be1526e9272ab499eb
BLAKE2b-256 bd080315ccaf087ba55bb19a6dd3b1e8acd491e74ce7f5f9c4aaa06a90d66441

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ad777a48197882492af50bf3098085424993ce850bdda406a358b6ab74be759
MD5 78e92d79cd96774c794cffe9bcb5203e
BLAKE2b-256 98d5424ba95062d1212ea615dc8debc8d57983f2242d5e6b82e458b89a117a1e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1e3554d8792387eac73c99c6eaea0b3f884e7130eb67986e11c403e4f9b6d372
MD5 a18df1fe6cddbc7221eb04950ba2f39f
BLAKE2b-256 6d4c26e1222aca65769280d5427a1ce5875ef4213449718c8f03958d0bf91070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25f565093ac8b8aefe0f61f8f95c9a9d11dd69e6a9e9832ff0d293511bc36258
MD5 19193421b59c2878f982a050ba3ec1c4
BLAKE2b-256 8c608526b0c750ff4d7ae1266e68b795f14b97758a1d9fcc19f6ecabf9c55656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2a1b0878dd281ea3003368ab53ff6f568e175f1b39f281df1da319e58a19c23a
MD5 0d417b5032bb1e8e14a58a5e6acdf64d
BLAKE2b-256 b70230360a5a66f7abba44596d747cc1e6fb53136b168eaa335f63454ab7bb79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bb9bf7475b4d99156ce2f0cf277c061a17560c8c10199c910a680869a278ddc7
MD5 af5e38371fca7403e8a3dd8568b84094
BLAKE2b-256 9e07f2751d6a0b535bb865e1066e9c6b80852571ef8d61bce7eb44c18720fbfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e25ba5b530e9a7d65f41a08d48f4b3fedc1e89c26486361166a5544aa4cad33
MD5 464b67ac272ce765128873b05e0e81db
BLAKE2b-256 7049ba64c050dd646060f835f1db6b2cd60a6485f3b0ea04976e7a29ace7312e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 99e07e4acafbccc7a28c076a847fb060ffc1406036bc2005acb1b2af620e53c3
MD5 16259752c267ea166126ef4ee23cb384
BLAKE2b-256 70b61fb163cbf919046a64717466c00edabebece3f95c013853fec76dbf2df92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57730067174a7f36fcd6ce012fe359bd5510fdaa5fe067bc94ed03e65dafb769
MD5 e8ab6d45ea13dad977156dfb02d26877
BLAKE2b-256 bd91e59a66538a3364176f6c3f7620eee0ab195bfe26f89a95cbcc7a1fb04b28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c8105c6a435bc2cd6ea2ef59558ab1a2976fd4a4437026f562856d08996673a
MD5 3d14b7dc7ac355a9608109988f0fca24
BLAKE2b-256 48118f09dc999cf2a09b6138d8d7fc734efb7b7bfdd9adb9383380941caadff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2139bfbd354cd6cb0afed51c4b504f29bcd687a3b1460b7e89498329cc28a894
MD5 0e3f8bc00f7809b4720c5b658c0c96c3
BLAKE2b-256 bd784f12f16ae074ddda6f06745254fdb50f8cf3c85b0bbf7eaca58bed84bf58

See more details on using hashes here.

File details

Details for the file mmh3-5.1.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.1.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9c8eddcb441abddeb419c16c56fd74b3e2df9e57f7aa2903221996718435c7a
MD5 3a4760c17fe4fab259d6846d2239d8a3
BLAKE2b-256 acaa8bc964067df9262740c95e4cde2d19f149f2224f426654e14199a9e47df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bde80eb196d7fdc765a318604ded74a4378f02c5b46c17aa48a27d742edaded2
MD5 4b042fb3c3fdea6fc78c6f2771a42b39
BLAKE2b-256 2514b85836e21ab90e5cddb85fe79c494ebd8f81d96a87a664c488cc9277668b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22d31e3a0ff89b8eb3b826d6fc8e19532998b2aa6b9143698043a1268da413e1
MD5 33c818eb6a6635815dd93e7b5396ced1
BLAKE2b-256 4f2125ea58ca4a652bdc83d1528bec31745cce35802381fb4fe3c097905462d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4db1079b3ace965e562cdfc95847312f9273eb2ad3ebea983435c8423e06acd7
MD5 c461fc4184b7040c169502ab8d304992
BLAKE2b-256 0cab84c7bc3f366d6f3bd8b5d9325a10c367685bc17c26dac4c068e2001a4671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0b529dcda3f951ff363a51d5866bc6d63cf57f1e73e8961f864ae5010647079d
MD5 588315a1b3901f55666a4f5fa11ef411
BLAKE2b-256 5609fda7af7fe65928262098382e3bf55950cfbf67d30bf9e47731bf862161e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.1.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 38.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 45da549269883208912868a07d0364e1418d8292c4259ca11699ba1b2475bd26
MD5 134bf607292fdd15d7276e4706d493d5
BLAKE2b-256 a1f1663e16134f913fccfbcea5b300fb7dc1860d8f63dc71867b013eebc10aec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e4e8c7ad5a4dddcfde35fd28ef96744c1ee0f9d9570108aa5f7e77cf9cfdf0bf
MD5 cfbad36584e7543adf2f5711a1cfa90d
BLAKE2b-256 38b5c8fbe707cb0fea77a6d2d58d497bc9b67aff80deb84d20feb34d8fdd8671

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2e6c8dc3631a5e22007fbdb55e993b2dbce7985c14b25b572dd78403c2e79182
MD5 ac8fc0530db281c795595ff06a002c6f
BLAKE2b-256 6f1d2efc3525fe6fdf8865972fcbb884bd1f4b0f923c19b80891cecf7e239fa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99297f207db967814f1f02135bb7fe7628b9eacb046134a34e1015b26b06edce
MD5 df147066c4567925146690860d4b72ec
BLAKE2b-256 7b00504ca8f462f01048f3c87cd93f2e1f60b93dac2f930cd4ed73532a9337f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3f0e8ae9f961037f812afe3cce7da57abf734285961fffbeff9a4c011b737732
MD5 cb3712ef7d3ce0ce29eb8c59e0a87b63
BLAKE2b-256 0b8e27d04f40e95554ebe782cac7bddda2d158cf3862387298c9c7b254fa7beb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4052fa4a8561bd62648e9eb993c8f3af3bdedadf3d9687aa4770d10e3709a80c
MD5 8e90e53c9a82a0a1e1bb637436bb0af3
BLAKE2b-256 6188c9ff76a23abe34db8eee1a6fa4e449462a16c7eb547546fc5594b0860a72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fa97f7d1e1f74ad1565127229d510f3fd65d931fdedd707c1e15100bc9e5ebb
MD5 b0706bbfb9c4e5b134c58b4a378a2f20
BLAKE2b-256 1cc333fb3a940c9b70908a5cc9fcc26534aff8698180f9f63ab6b7cc74da8bcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f16e976af7365ea3b5c425124b2a7f0147eed97fdbb36d99857f173c8d8e096
MD5 5cfc6cc9d246162679ce2e4e8355a801
BLAKE2b-256 b9ed54ddc56603561a10b33da9b12e95a48a271d126f4a4951841bbd13145ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 78ae6a03f4cff4aa92ddd690611168856f8c33a141bd3e5a1e0a85521dc21ea0
MD5 f2deeefdffe0f8dc835ef19fb005cf3c
BLAKE2b-256 67dc350a54bea5cf397d357534198ab8119cfd0d8e8bad623b520f9c290af985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d05ed3962312fbda2a1589b97359d2467f677166952f6bd410d8c916a55febf
MD5 b8748a49562905cf5881b96efcd9aaaa
BLAKE2b-256 c3ee9381f825c4e09ffafeffa213c3865c4bf7d39771640de33ab16f6faeb854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d69281c281cb01994f054d862a6bb02a2e7acfe64917795c58934b0872b9ece4
MD5 20b6a76d3114a3fb29329919cde846b8
BLAKE2b-256 e496beaf0e301472ffa00358bbbf771fe2d9c4d709a2fe30b1d929e569f8cbdf

See more details on using hashes here.

File details

Details for the file mmh3-5.1.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.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d46fdd80d4c7ecadd9faa6181e92ccc6fe91c50991c9af0e371fdf8b8a7a6150
MD5 233d70fee45594a7e22f7107506fd75f
BLAKE2b-256 f1ac17030d24196f73ecbab8b5033591e5e0e2beca103181a843a135c78f4fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95f983535b39795d9fb7336438faae117424c6798f763d67c6624f6caf2c4c01
MD5 b73f834a61a3d60d5d422bdd30a4170b
BLAKE2b-256 b25d2c6eb4a4ec2f7293b98a9c07cb8c64668330b46ff2b6511244339e69a7af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4ba8cac21e1f2d4e436ce03a82a7f87cda80378691f760e9ea55045ec480a3d
MD5 4522a770b2731881d5411dada07c48f3
BLAKE2b-256 4f85728ca68280d8ccc60c113ad119df70ff1748fbd44c89911fed0501faf0b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 48f9aa8ccb9ad1d577a16104834ac44ff640d8de8c0caed09a2300df7ce8460a
MD5 84471a4baebff331c0f35e945618b8d4
BLAKE2b-256 e4d77b39307fc9db867b2a9a20c58b0de33b778dd6c55e116af8ea031f1433ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eaf4ac5c6ee18ca9232238364d7f2a213278ae5ca97897cafaa123fcc7bb8bec
MD5 1eb4eef8025d1347af633a7c536099f2
BLAKE2b-256 a1019d06468928661765c0fc248a29580c760a4a53a9c6c52cf72528bae3582e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.1.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 38.9 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 0daaeaedd78773b70378f2413c7d6b10239a75d955d30d54f460fb25d599942d
MD5 00b82d3e9569df1da25bb035b8f0f809
BLAKE2b-256 20bbcb97418e487632eb1f6fb0f2fa86adbeec102cbf6bfa4ebfc10a8889da2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 41.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 49d444913f6c02980e5241a53fe9af2338f2043d6ce5b6f5ea7d302c52c604ac
MD5 0dbe34e771ba4e26cca532c4a71c5bee
BLAKE2b-256 bd67c4468b21d9d219e0d64708c07936666968c88d92e3542cfb6c47ce06768b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mmh3-5.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 40.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d6eaa711d4b9220fe5252032a44bf68e5dcfb7b21745a96efc9e769b0dd57ec2
MD5 6661afb1ad8e6244d68fe4700c45bdb9
BLAKE2b-256 6d659b5b506e8a88386316d9cff0c4b155262200d1ec95cad6d4287ec240a7fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b6727a5a20e32cbf605743749f3862abe5f5e097cbf2afc7be5aafd32a549ae
MD5 eefc9fa89a03b1addd0f5bb1ae2e64ff
BLAKE2b-256 bb98e157770077a19322483a1ab661fce14b6489bca8da49bd6fece98918c845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8e574fbd39afb433b3ab95683b1b4bf18313dc46456fc9daaddc2693c19ca565
MD5 cbd4a2db5f498d74342d653f60db21fd
BLAKE2b-256 8dd5accc9372f70e15db8e8e203940b25ac409e061460cd6f96aab6066bb66a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7785205e3e4443fdcbb73766798c7647f94c2f538b90f666688f3e757546069e
MD5 e86cd73bb88c3f64ce9c50add85e0443
BLAKE2b-256 ff3a118c058b05f2396e3c4077183ad8f5d0e0a508c28eaae57b08d6c49a0754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5766299c1d26f6bfd0a638e070bd17dbd98d4ccb067d64db3745bf178e700ef0
MD5 cad4bd9740881b06c7f805da5fd01af2
BLAKE2b-256 6ed607ac481d91dc4659c9c556a326e4349d08331b5713a1ac11bf7b063c6bdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27e46a2c13c9a805e03c9ec7de0ca8e096794688ab2125bdce4229daf60c4a56
MD5 05b1666de1b4f3e0e9052238caaf6ec7
BLAKE2b-256 cb78f247daea100fb9f4a7aad3fb01aa6e258de12fc594f37415c8dc22d8bd71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d51a1ed642d3fb37b8f4cab966811c52eb246c3e1740985f701ef5ad4cdd2145
MD5 f2a2fdbef1ef035e0bea3191c0732599
BLAKE2b-256 4ff3f9c5e4051e8ab54fd92717906f998f7161bfd3440bcea1b6f84e956e168a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd51597bef1e503363b05cb579db09269e6e6c39d419486626b255048daf545b
MD5 f28ce922ba7da0e1d05ca93d0af16c7c
BLAKE2b-256 221673e25fc16b17acc0de604a28c716407728777c4d52dae72a0e505e32d281

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba9ce59816b30866093f048b3312c2204ff59806d3a02adee71ff7bd22b87554
MD5 db7c9a0cff8dc96e80311e18d63f7e91
BLAKE2b-256 47c6f0e33468cc00729cb4019176288ed1506632dce12ee7a842f1c78d1f2c93

See more details on using hashes here.

File details

Details for the file mmh3-5.1.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.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e01a9b0092b6f82e861137c8e9bb9899375125b24012eb5219e61708be320032
MD5 3966371e45767ff4557aeb047d89505d
BLAKE2b-256 66597e16f10ee38f56bb0890d4da2c5bf1bfd77b15ea8e91244eeebdcfc84077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 709bfe81c53bf8a3609efcbd65c72305ade60944f66138f697eefc1a86b6e356
MD5 61f4e9070c1d12c17b42732060777ee6
BLAKE2b-256 e1186452be7e21f792f69e83854bc71fa4443816a6f8e909374a547f2eccdd44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a61f434736106804eb0b1612d503c4e6eb22ba31b16e6a2f987473de4226fa55
MD5 9eadb6f8cba4eeb9f8887fa6afe5bd23
BLAKE2b-256 4c4d83927efc3ff223c564d6b2686880ef5087b6215bbfc1b73fcb7a1e0d12ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 adba83c7ba5cc8ea201ee1e235f8413a68e7f7b8a657d582cc6c6c9d73f2830e
MD5 8144da4158acdf21f560f69b7f3b6468
BLAKE2b-256 7303f6c27e317c52f8f12faa2f9fd237f27f50fc7bcd9b862d3d7101932319a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mmh3-5.1.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 166b67749a1d8c93b06f5e90576f1ba838a65c8e79f28ffd9dfafba7c7d0a084
MD5 6e50964ad7221078f286cc1afe12798b
BLAKE2b-256 44e865dae27ee37a8b00bb580cebe62e79e0901f7e06210fd5cf900da1751a50

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page