Skip to main content

mmh3

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

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

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

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

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

Installation

pip install mmh3

Usage

Basic usage

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

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

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

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

hashlib-style hashers

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

Changelog

See Changelog for the complete changelog.

5.0.0 - 2024-09-18

Added

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

Changed

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

Deprecated

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

Fixed

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

4.1.0 - 2024-01-09

Added

  • Add support for Python 3.12.

Fixed

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

License

MIT, unless otherwise noted within a file.

Known Issues

Different results from other MurmurHash3-based libraries

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

Starting from version 4.0.0, mmh3 returns the same values on big-endian platforms as it does on little-endian ones, whereas the original C++ library is endian-sensitive. If you need results that comply with the original library on big-endian systems, please use version 3.*.

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

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

Contributing Guidelines

See Contributing.

Authors

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

Ported and modified for Python by Hajime Senuma.

External Tutorials

High-performance computing

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

Internet of things

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

Related Libraries

Release files for mmh3 5.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for mmh3 5.0.0
File Size Uploaded
mmh3-5.0.0.tar.gz 28.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for mmh3 5.0.0
File
mmh3-5.0.0-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
mmh3-5.0.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
mmh3-5.0.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
mmh3-5.0.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
mmh3-5.0.0-cp313-cp313-musllinux_1_2_s390x.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ IBM System/390x Details
mmh3-5.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ PowerPC 64-le Details
mmh3-5.0.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
mmh3-5.0.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
mmh3-5.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
mmh3-5.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
mmh3-5.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
mmh3-5.0.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
mmh3-5.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
mmh3-5.0.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
mmh3-5.0.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
mmh3-5.0.0-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
mmh3-5.0.0-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
mmh3-5.0.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
mmh3-5.0.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
mmh3-5.0.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
mmh3-5.0.0-cp312-cp312-musllinux_1_2_s390x.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ IBM System/390x Details
mmh3-5.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ PowerPC 64-le Details
mmh3-5.0.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
mmh3-5.0.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
mmh3-5.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
mmh3-5.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
mmh3-5.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
mmh3-5.0.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
mmh3-5.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
mmh3-5.0.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
mmh3-5.0.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
mmh3-5.0.0-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
mmh3-5.0.0-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
mmh3-5.0.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
mmh3-5.0.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
mmh3-5.0.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
mmh3-5.0.0-cp311-cp311-musllinux_1_2_s390x.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ IBM System/390x Details
mmh3-5.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ PowerPC 64-le Details
mmh3-5.0.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
mmh3-5.0.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
mmh3-5.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
mmh3-5.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
mmh3-5.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
mmh3-5.0.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
mmh3-5.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
mmh3-5.0.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
mmh3-5.0.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
mmh3-5.0.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
mmh3-5.0.0-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
mmh3-5.0.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
mmh3-5.0.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
mmh3-5.0.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
mmh3-5.0.0-cp310-cp310-musllinux_1_2_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ IBM System/390x Details
mmh3-5.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ PowerPC 64-le Details
mmh3-5.0.0-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
mmh3-5.0.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
mmh3-5.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
mmh3-5.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
mmh3-5.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
mmh3-5.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
mmh3-5.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
mmh3-5.0.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
mmh3-5.0.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
mmh3-5.0.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
mmh3-5.0.0-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
mmh3-5.0.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
mmh3-5.0.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
mmh3-5.0.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
mmh3-5.0.0-cp39-cp39-musllinux_1_2_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ IBM System/390x Details
mmh3-5.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ PowerPC 64-le Details
mmh3-5.0.0-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
mmh3-5.0.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
mmh3-5.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
mmh3-5.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
mmh3-5.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
mmh3-5.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
mmh3-5.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
mmh3-5.0.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
mmh3-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
mmh3-5.0.0-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
mmh3-5.0.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
mmh3-5.0.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
mmh3-5.0.0-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
mmh3-5.0.0-cp38-cp38-musllinux_1_2_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ IBM System/390x Details
mmh3-5.0.0-cp38-cp38-musllinux_1_2_ppc64le.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ PowerPC 64-le Details
mmh3-5.0.0-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
mmh3-5.0.0-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
mmh3-5.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
mmh3-5.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
mmh3-5.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
mmh3-5.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
mmh3-5.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
mmh3-5.0.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
mmh3-5.0.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
mmh3-5.0.0-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 6.6 MB

Release files / mmh3-5.0.0.tar.gz

Download URL mmh3-5.0.0.tar.gz
Size 28.7 kB
Tags Source
SHA-256 checksum
How to use checksums
60d1713457789c70292f1f04ca984e3175fc66e6c3545582fd2b4af7f5a61c73
BLAKE2b-256 checksum
How to use checksums
9ce240dc31be41d4913c488d55f1e75a276a5d1a840f5b79c2652d29eb7bf5ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-win_arm64.whl

Download URL mmh3-5.0.0-cp313-cp313-win_arm64.whl
Size 32.2 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
9126155ad1a9418920360497a0b44906dce32f0732cb44378ace08c62751dd1e
BLAKE2b-256 checksum
How to use checksums
8cdfc070cf4dd4425f1c2abbff9b922ffb7a5161667a39cf32c618422406d78b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-win_amd64.whl

Download URL mmh3-5.0.0-cp313-cp313-win_amd64.whl
Size 35.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
47d9a9c1c48accaf78ddb77669c40c837e90be2ecddd39bf7ef2f8dacff85ca6
BLAKE2b-256 checksum
How to use checksums
a2b5cb5b2fa2ceb34a65367afef283126c79f15e8f864bea50742f7184f6acf2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-win32.whl

Download URL mmh3-5.0.0-cp313-cp313-win32.whl
Size 34.9 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
7101a12a2a4b39d7748d2d83310d5e0415950ccf6b9ec8da1d35af3f50b3ef0e
BLAKE2b-256 checksum
How to use checksums
e403249dc33217095088c9519ddda809e728d18a8cf1eefa2619c2586224eb2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL mmh3-5.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 85.5 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
05b10476fd5cfb0fd63ceebf7430612423e7f79e9732e0b344225aa642e12be4
BLAKE2b-256 checksum
How to use checksums
7bcb9da22a15b73ae5346fb51c7fab665adb9b4cf79038299c6eaea9b68b4f55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-musllinux_1_2_s390x.whl

Download URL mmh3-5.0.0-cp313-cp313-musllinux_1_2_s390x.whl
Size 87.0 kB
Tags CPython 3.13 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
cc0caa0d2800d54384cc048e49e6c2b4a90cba1afff0597d7c2a5006c42b5536
BLAKE2b-256 checksum
How to use checksums
c91bcefb28385f8bfa24c058caf106a5cf7a28a238d06a7ce27a41b50a7b06bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl

Download URL mmh3-5.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Size 90.6 kB
Tags CPython 3.13 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
fcac7a75846aec7bd168c05576dc8c9448a9705165dfa0986d0f48952eca62a4
BLAKE2b-256 checksum
How to use checksums
e48407584c6fbf82981359e3f702ed56a1e42657f4d670ae8e505c62df55a0cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-musllinux_1_2_i686.whl

Download URL mmh3-5.0.0-cp313-cp313-musllinux_1_2_i686.whl
Size 85.3 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
b178b744685de956ff84b3b2531271824a2e4372aff199ab805e1fdd7f996f5c
BLAKE2b-256 checksum
How to use checksums
968416a2a0a196c151d5d3d5513c5a5042b9c1cef428f68f2668337924b04fad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL mmh3-5.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 86.2 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
29b2c8eb7a473f6f235c2d9905912a76350dd11b42058364de984264fa4f74ca
BLAKE2b-256 checksum
How to use checksums
a0c4aa8f8527dfeff955e7be85901fde840df407a26b7f52e2a114e094c08422
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL mmh3-5.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 95.4 kB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
2b65b6eabd9e78e2b8eee2b8d4db34d4d2f5b540f2ac06ec0a76a1f1566f0ff7
BLAKE2b-256 checksum
How to use checksums
f212a7a3b84645106ad5c64e16557a97ab305673bbb6fe14ab55c1fc23083939
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL mmh3-5.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 95.7 kB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0be4d14ab3a690bac6c127733490493b8698f84eadb9d667be7eb952281c51e4
BLAKE2b-256 checksum
How to use checksums
99ad9f1e0d11d4ed095b0c02a424b414b51596a18dacfb8f06912d042d597bb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL mmh3-5.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 90.7 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a572adb41cf831d79b3b38c7994e5a5bc1a8ea8d7b574ce0c24272fc5abb52df
BLAKE2b-256 checksum
How to use checksums
6524e52443fb243a479513b7c1811798dd29d285b4d5edd2ef412aa77d0637bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL mmh3-5.0.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 90.5 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
c1b12073a58be5e6408c6bd8366bbf6253defe042cdec25ee51f123c944e5a8f
BLAKE2b-256 checksum
How to use checksums
4355a924e81867406bb0d1bf59039732e927a05a5c56b08e7b894687fda71881
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL mmh3-5.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 83.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
8b433656f371af5edf44cf00862e288e08327bb9e90c8aaa5e4e60dfebc62039
BLAKE2b-256 checksum
How to use checksums
68666ccf44dc2adcde5bfd30a642880a51cf78712fd74195d88e103b8d10d084
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL mmh3-5.0.0-cp313-cp313-macosx_11_0_arm64.whl
Size 33.9 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5a1c056b65be3077496ed655731eff1f65ee67f2b31f40a027f3171ba0ac20d1
BLAKE2b-256 checksum
How to use checksums
77ebf6f734766113017a9d76bf25f83a8bc7b09a3798b92d357ad0418ed18bbc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL mmh3-5.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 34.1 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
d4ac0b8d48ce1e7561cf330ec73b9582f6773e40aaf8a771dd51a0bb483ec94f
BLAKE2b-256 checksum
How to use checksums
1a90f3f4fe3fea68d949fbe554841e036c33d571756ae4a9921d27e8fdb5e3e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp313-cp313-macosx_10_13_universal2.whl

Download URL mmh3-5.0.0-cp313-cp313-macosx_10_13_universal2.whl
Size 48.6 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
05b09d98cbdb6ad03eb9c701e87cea005ececd4fd7d2968ff0f5a86af1ef340d
BLAKE2b-256 checksum
How to use checksums
1f1d621df14c109a53148717a6e9aceef93b1a65bb46938cfc176eb5fb8664b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-win_arm64.whl

Download URL mmh3-5.0.0-cp312-cp312-win_arm64.whl
Size 32.2 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
e6e3334985865ec3bdfcc4ae8df4a1939be048c5ae3ce1c8c309744400f8e4de
BLAKE2b-256 checksum
How to use checksums
88a1e8f896aa6a61c8655e5ba708004700c142f2c34d02222d3e1afdcf2aaead
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-win_amd64.whl

Download URL mmh3-5.0.0-cp312-cp312-win_amd64.whl
Size 35.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
897ebafa83bbbbb1958ee30cda78c7ad4b12f2b9360f96b22e488eb127b2cb4f
BLAKE2b-256 checksum
How to use checksums
866b24c9c618993a5d5612a12c156aa30b6a58e9123d9798642ed8d9608ef6f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-win32.whl

Download URL mmh3-5.0.0-cp312-cp312-win32.whl
Size 34.9 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
cb1a96488dc8fccf843ccdbdd10faf1939e6e18cd928c2beff17e70c2ab09ec1
BLAKE2b-256 checksum
How to use checksums
8e0cf30776ad91410d35148fcd7595ca2489e6f9c8cead8350ac976fc2ccf162
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL mmh3-5.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 85.5 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ee22cd4cad4fc7d4e5282b2729899460b03c388cde0290d411e877249f78a373
BLAKE2b-256 checksum
How to use checksums
038c3f2c216f16f05da7f48893144a63f88466f8c7dbb8f6b955d3714e8e833f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-musllinux_1_2_s390x.whl

Download URL mmh3-5.0.0-cp312-cp312-musllinux_1_2_s390x.whl
Size 87.0 kB
Tags CPython 3.12 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
ce678ac7d31e83fecc817ab630cc7254c7826de11fd2b3e8c31a8a5b0b762884
BLAKE2b-256 checksum
How to use checksums
6e2c916c881e5ec5920ea1f26ea749329b195a850628e2bdc5e5dd76b74b9714
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl

Download URL mmh3-5.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Size 90.6 kB
Tags CPython 3.12 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
aa790a46370eeedb474c462820be78597452f54c5fffe1f810fc8e847faf42a1
BLAKE2b-256 checksum
How to use checksums
b526b6c6b713341674200d10b6b39d9523a54afbad305c226f14019e1505410a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL mmh3-5.0.0-cp312-cp312-musllinux_1_2_i686.whl
Size 85.2 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e70c4fc340509f6554a1748fe6f539a846fbacf147255048d1702def820a1520
BLAKE2b-256 checksum
How to use checksums
6a3427cf51e7a4697b4a0ac2fde1cbea3ebe5ed0899645cdcfdd741d1183f0a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL mmh3-5.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 86.2 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
11e29156edb1990600cb4b91bcb371a2adf20a0fcb818837fb78408be19e9117
BLAKE2b-256 checksum
How to use checksums
923a743c53d584acf07a8e9a78f2fc2815996d01f63acd05f57b66b8428475f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL mmh3-5.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 95.5 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ff4405f231032b8f8ae93d9a558ddc04b9aa94a59c309cb265ebe1e79ced920e
BLAKE2b-256 checksum
How to use checksums
eef20bfc0434845034e3afe9d38775cbd91d9d8b1e0858ac1b3cdd49ff522f4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL mmh3-5.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 95.7 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a567a87026f103778b70f2b19637fb490d9c29dc7d3af9cd46185d48efbd49dc
BLAKE2b-256 checksum
How to use checksums
0d2c00fded897ff8a05f6241b2e3f396094c122868d9cd6508d59ffd35faa2b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL mmh3-5.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 90.8 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f50535009c1aaa44f9702ad14551d12d1755b537fc25a5bd7d46c493ec4bcfaa
BLAKE2b-256 checksum
How to use checksums
fd9e6866f4cb9be5908eff335369f8d214a04718fda6ab3821f13e1069344dfb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL mmh3-5.0.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 90.7 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
361f9d611debc10992888cbace09dbc47391ae8b84b50c995a6d97e6314bb422
BLAKE2b-256 checksum
How to use checksums
d4d382a119f7a079cac3e07ae50756d85df89ed9d915856168035d1f0572f647
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL mmh3-5.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 83.3 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d630fe75ef7d4ab1a95eb824d81dee15ed73020703bf030515f03283cb8f086f
BLAKE2b-256 checksum
How to use checksums
4442e3fa4bd3222a87e7f8fe6444d903024efd6cc901f4ba30a02913a64824a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL mmh3-5.0.0-cp312-cp312-macosx_11_0_arm64.whl
Size 33.9 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e86246d036da05d54e833cdc342ad9c62f38f2507b14f2c58ce2c271f22d7251
BLAKE2b-256 checksum
How to use checksums
57646682b31df93c46b4a55ea3de1b328d6a2d651e0b01a0709b2f92ae05d26d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL mmh3-5.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 34.1 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
b020012e30ba0e4b002a150ca1c1d590a7387fac50dfd9b6b5dc66d9d0e61257
BLAKE2b-256 checksum
How to use checksums
8f50a2ab4155fa338acfdc020b752057c164a3350495747f02cde4d73127d8e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp312-cp312-macosx_10_13_universal2.whl

Download URL mmh3-5.0.0-cp312-cp312-macosx_10_13_universal2.whl
Size 48.6 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
ed23a89a6daeb9b0d4db9fa865b125300516e8d6961f771b2dd97965bf888bce
BLAKE2b-256 checksum
How to use checksums
4a46e3bdf55ddadb6174414df98c64d0045d2142efc8657c9bb0686aaba3ba88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-win_arm64.whl

Download URL mmh3-5.0.0-cp311-cp311-win_arm64.whl
Size 32.2 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
2ee87816b838709bd0fc623e3277736e9465a941d27b14f35d0df1c2006e4438
BLAKE2b-256 checksum
How to use checksums
6f2935110041e065bacbdd6440eb29e6d9b0bb6b396d221515ffed14a10c3fd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-win_amd64.whl

Download URL mmh3-5.0.0-cp311-cp311-win_amd64.whl
Size 35.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
47b3823a88c5f7859580688016bff13437fd866f6132e4770b306f0c6edb01a7
BLAKE2b-256 checksum
How to use checksums
77c1dac0e65e482c9f6205020c06d5db20397745211d162be7dcd98e0f2cec30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-win32.whl

Download URL mmh3-5.0.0-cp311-cp311-win32.whl
Size 34.8 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
2d039b32f4194ac345c0f52441b7ff0a55735a896303a3eb9054e5f8512d84c8
BLAKE2b-256 checksum
How to use checksums
b874f7201c1e5ef5cd84f210ba0f6a5810e2726dfdc22c1ddc5c81363b286997
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL mmh3-5.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 85.3 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
16f46dc1774bf3e8305fa33207a502317cd7a592cb79b0d65c84f0fbcf9d9ffa
BLAKE2b-256 checksum
How to use checksums
5143564b427dc2a3c9d90ae4946a25a14926ff3bf71625ebd944967ed0a7005d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-musllinux_1_2_s390x.whl

Download URL mmh3-5.0.0-cp311-cp311-musllinux_1_2_s390x.whl
Size 86.7 kB
Tags CPython 3.11 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
9f699f2232efe3907a6a05d9661edd2f4045a0e05161dc1087f72957d752a47a
BLAKE2b-256 checksum
How to use checksums
8c6104d196fb38d79c11f4858122844916d55fd061b6650902c74f3268ce8016
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl

Download URL mmh3-5.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Size 90.4 kB
Tags CPython 3.11 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3d969f1813b27bd4caac359e0ea0f6b711d252e872c0723124b58d7ac275cb0e
BLAKE2b-256 checksum
How to use checksums
01a79f68185843ba171c52b04db3ab5a39f991fbeedb89da85c2a0d533995c00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-musllinux_1_2_i686.whl

Download URL mmh3-5.0.0-cp311-cp311-musllinux_1_2_i686.whl
Size 85.1 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
01636d74df6371f192dc5a112f4afc43cb4119a9ea6de704469161fd4ab9e86b
BLAKE2b-256 checksum
How to use checksums
53550269256d61783a783a82c189e165a00dcc5499f0670049e5c408e2162f6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL mmh3-5.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 86.1 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
337f747eaf6ab78d0be9cbbb763781ae76eb2e4c0e6523e74582877fe827ec51
BLAKE2b-256 checksum
How to use checksums
2e63b6a45319059855fbcb20a02bc5803deb10327842846d98d559cf1c35e89f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL mmh3-5.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 95.4 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ec24039151e67c5fc026ce5be8788e3e8093d9ce3e114d7a6175f453521bacc9
BLAKE2b-256 checksum
How to use checksums
94d1d197e47e9a28e6d4faaad7ee4cab0c2c79a246a0995a0609e9a8db9fe2e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL mmh3-5.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 95.7 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b3d75183b7d5df178bf01f0d9ac366525fd54e828d799fe3892882b83c13454b
BLAKE2b-256 checksum
How to use checksums
a17eee067c17df65f3b30f1dbfe75b9f87ff114a04125286f55912fb5b1c5691
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL mmh3-5.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 90.8 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2400e805018e04718c9367e85d694c036d21a41b37024d5b0dc8ef80cb984cf0
BLAKE2b-256 checksum
How to use checksums
857e1da6f2c77a2db61fe73c5832f51ed604f07dd989b03027308030e09f8714
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL mmh3-5.0.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 90.5 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a015a90951b31d45a01c8f92703c028d8d759f71dc31727581c916f31cacbade
BLAKE2b-256 checksum
How to use checksums
a73c756620970d575c66677c9c13ca871d52b8b23f8f13cb6c81cc85caeb0658
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL mmh3-5.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 83.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
88513eb686937b26d33fe7ded7ed1a68ede490d326eea2344447c0cc42fb7f97
BLAKE2b-256 checksum
How to use checksums
4d0d2849b96caf2bad20f9af4a27d11a1cd6a62018b28e7f333875b15d468cce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL mmh3-5.0.0-cp311-cp311-macosx_11_0_arm64.whl
Size 33.9 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f271a043545c86cce51c35e5bb6f52dceb535dcd2d46c2129a9c869b80ec2eaa
BLAKE2b-256 checksum
How to use checksums
299998d47eb4d18556a7fd13bfa4d7a358faef1ba08981c1d7cdc21642fd1bfe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL mmh3-5.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 34.0 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5580c7bf9570458d8096a016f7012453306a14d2e3e4ef1267b9c9c9f506d8a4
BLAKE2b-256 checksum
How to use checksums
60da135b43806e59b1fcc7a6c27a029922c60785353c84c4bd4915b603725b4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp311-cp311-macosx_10_9_universal2.whl

Download URL mmh3-5.0.0-cp311-cp311-macosx_10_9_universal2.whl
Size 48.6 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
690cb4b36ed7c863680029c2370b4f3a0c3dc8900320eb5ce79a867eb8b37151
BLAKE2b-256 checksum
How to use checksums
28b827d06956add5f882c7120ade726f6e772325a267a4bb0f1589397d75163d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-win_arm64.whl

Download URL mmh3-5.0.0-cp310-cp310-win_arm64.whl
Size 32.2 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
341ad4f902ebb7fc14751fab67fb4eedf800a1744bc9dc214a56e11b62d0bfdd
BLAKE2b-256 checksum
How to use checksums
b9591e767bbea3b68205e78c963107932fb7e87046f78f4a74f5394aaea131cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-win_amd64.whl

Download URL mmh3-5.0.0-cp310-cp310-win_amd64.whl
Size 35.4 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
9a8bcaa5c0fd9c4679639c830b46e52fcc3b84502faa2aa5f3ca1dacb7cdbb1f
BLAKE2b-256 checksum
How to use checksums
8e504e629064bc48c17a970b6897bb799b2fd1774cc136231ab34ab9471c0e2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-win32.whl

Download URL mmh3-5.0.0-cp310-cp310-win32.whl
Size 34.8 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
917b72bc8b238286d7e2c586c19d604b3b3e5a93f054020cd15530324b868e6e
BLAKE2b-256 checksum
How to use checksums
1c7bc3de7359af41670a181fae919a6e1fee095aada20d3173942464f12174d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL mmh3-5.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 88.5 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e713afe276481af7ea0330f40214c71c11486b28754aa2d1cb286b5ee9571dee
BLAKE2b-256 checksum
How to use checksums
d604c20c2b285b0f0de6cdad691153fb634b17b192bee1e3dbd92cc0f3dd4a28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-musllinux_1_2_s390x.whl

Download URL mmh3-5.0.0-cp310-cp310-musllinux_1_2_s390x.whl
Size 89.6 kB
Tags CPython 3.10 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
333057bcf12804a8cae12adb2a5cef3bc50fc8de044ad6a01ae1918a342d6f0e
BLAKE2b-256 checksum
How to use checksums
2206bc22a7c776c2f19349dc6675d2da33d24d62c2bbcfab90947aad0e615322
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl

Download URL mmh3-5.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Size 95.0 kB
Tags CPython 3.10 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
5f814a621fd0e567a121ace724ad57f28fb9972acfd54c854749ee91d5c4905c
BLAKE2b-256 checksum
How to use checksums
3e04f73fe2bbde831e78b4d6f5d9905aa195de7fb8115d8bc8a4f22c0e5e1145
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-musllinux_1_2_i686.whl

Download URL mmh3-5.0.0-cp310-cp310-musllinux_1_2_i686.whl
Size 84.1 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
a9154a0a32de54b812d178541468cce4c73b112fbd8b5b0a4add92cfda69c390
BLAKE2b-256 checksum
How to use checksums
8a660e9ecf5f860864a3524ddb6bbe8b317f7593340e5e0cc24c9d93c985ef7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL mmh3-5.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 89.3 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7653d8177e4241a5f7913a675636ccc701722741b153b0a43c82464a4a865752
BLAKE2b-256 checksum
How to use checksums
d42cc6a4adba7edf8a4c8f3af1d0bea9f882bb290fd74f7d601eb702b33e2840
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL mmh3-5.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 93.7 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
b46b6d5c0fcd2620ebc699099fed6fda0101805d7d4c274fa2b2c384e8b9e8b9
BLAKE2b-256 checksum
How to use checksums
cbf794f1988fef130ce1ac4aad243c7952fb2620c312613a0ca7178a148451e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL mmh3-5.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 94.1 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
d3e3d94553b321b26952d507dace15509463604ead98fece710237ca8cb5983d
BLAKE2b-256 checksum
How to use checksums
ad3e9e14a3c742dbc9c584aef304c1c563754f18293369e615a2e8f724f13e23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL mmh3-5.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 89.2 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1616cb621cab3bc5b58dba9605311c346b45e732818f12f943a803b9a641f09c
BLAKE2b-256 checksum
How to use checksums
04e622b1a7f1ecae2fab2ad58cfe0980521db6f26d6f0bc4e12149dde8128fed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL mmh3-5.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 88.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
903cdb66f8d8de26a0a6c737a13664388b5ed14813f84793bccbba44ffa09fa2
BLAKE2b-256 checksum
How to use checksums
9464436925da3a70fed754e4636d84d4c0251e7d3751108f3f91c88aaa81beb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL mmh3-5.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 82.0 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
5a2a9cd368f2a15f06f2749db764e410b7dc260822319f169a52c649da078bf6
BLAKE2b-256 checksum
How to use checksums
72ba7ad763b950a68c070fe10e02a6a7d5e4e7d23f6802fb950bb26203a731e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL mmh3-5.0.0-cp310-cp310-macosx_11_0_arm64.whl
Size 33.9 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5bfc15d11bcc5ce96254f5399582104c566a1eeeb91072ff0a0de92b24f704ff
BLAKE2b-256 checksum
How to use checksums
bc0535e048b5e77c989a16a225e915c6ad28db231ffcc43e6562774ec5e49195
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL mmh3-5.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 34.0 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
66d5423c65aebe94f244e8204cc8b39a4b970e342fb619621376af90c5f9a421
BLAKE2b-256 checksum
How to use checksums
fa89d52316cf1565374a33318009edccc92d0d81d2e8ac141924d4827e58fc2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp310-cp310-macosx_10_9_universal2.whl

Download URL mmh3-5.0.0-cp310-cp310-macosx_10_9_universal2.whl
Size 48.6 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e65e16c9de793bfa334355c60fccc859faf1c0b707d847252841cee72b5309df
BLAKE2b-256 checksum
How to use checksums
99de19c97460492496ed5e21d8d7cffb86e26e27424e594992da7e111abf289d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-win_arm64.whl

Download URL mmh3-5.0.0-cp39-cp39-win_arm64.whl
Size 32.2 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
4e66a0f85c8a2f54025f3d477a141458b0338f1b519ad0286c704865513c814f
BLAKE2b-256 checksum
How to use checksums
e13c838a44a057ab8e42f6dfd9541ec7b3c010675b5e4a3d5576a1eb682ecf8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-win_amd64.whl

Download URL mmh3-5.0.0-cp39-cp39-win_amd64.whl
Size 35.4 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
8fbe4112955b33e1b4893b144bee9cc5bc476159d1d1cad9b8c0451047b6abde
BLAKE2b-256 checksum
How to use checksums
8a1a4444405338fd871e9f87518dcfa9ee77fe1db81a12b91c9487e000e83aaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-win32.whl

Download URL mmh3-5.0.0-cp39-cp39-win32.whl
Size 34.8 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
29b311d4f8dc277c8ef716c68b8020fe0e702807ba7f631fe57ad037d35713aa
BLAKE2b-256 checksum
How to use checksums
7475be4c5b3c2be760b7c293794008570373b3c8cbb2f37b272d2efdfbee9a98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL mmh3-5.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 88.3 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3672b5ea6d7c9c5feeb3f75a695b622ee6a82d22897fa0aa4bf1d8ca99ac9c87
BLAKE2b-256 checksum
How to use checksums
27541cbf286c3ceb593f5395e263407557f55d7659c0b75b61c271e7aa295943
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-musllinux_1_2_s390x.whl

Download URL mmh3-5.0.0-cp39-cp39-musllinux_1_2_s390x.whl
Size 89.4 kB
Tags CPython 3.9 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
cad6c32ab86e48ac73af45bcd118b931e677e038167c36186ac0d640f76c8b1e
BLAKE2b-256 checksum
How to use checksums
0801c3370b384691f3bca9948951f4b77cc1ba79aefe80aed84bc39d11c7bd85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl

Download URL mmh3-5.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Size 94.8 kB
Tags CPython 3.9 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
d5904ef1621c9ef680fd2ff3c1e433205e05093d26aa42840337630ac20912f1
BLAKE2b-256 checksum
How to use checksums
f419e0eedd495be319840808847d9051d3e948d59eda4a88b61e0a333c4c5fe2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-musllinux_1_2_i686.whl

Download URL mmh3-5.0.0-cp39-cp39-musllinux_1_2_i686.whl
Size 83.9 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
4ea987eeb860723a0a0217b2e84c327ba5fd143cd8e7e289f008ae95280d30bb
BLAKE2b-256 checksum
How to use checksums
20f477cb01fe00e0e2b9ccec3bae1531531ec1912fb427fc8ff7a9a93d642c9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL mmh3-5.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 89.1 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a1a2b2dc334a27a5d129cfbe848dbbbc22f1a744dcebab70b406528bca874009
BLAKE2b-256 checksum
How to use checksums
51a53c2d91a015b6b896952629c7d6abad14d05057927f5e92dbca2bfd970492
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL mmh3-5.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 93.5 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
03c2feef9fa839899065dc29cec2f921b1194bddaa9999e5460f9ab903e0ef24
BLAKE2b-256 checksum
How to use checksums
05becfb29914baa199ca28b4ddf6fc59e298050ab94792b7eafd402c7309f191
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL mmh3-5.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 93.8 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
bf6fa9d615f782a4626b0f99ec0a2d755e72b4e01a34503129bcc05488f4c404
BLAKE2b-256 checksum
How to use checksums
649654a397ed1449625fcf1a0d2d0bcd319d3bd450852c1242fc25452c3b4458
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL mmh3-5.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 89.0 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
072dda5e7e27a01c9c393c0558a210051d49750cd27807b443ba3285793f31bb
BLAKE2b-256 checksum
How to use checksums
ae45ef430200d1ce2efd191e3ebc39ce4f91d66bd11e35dbd7963d24250d9440
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL mmh3-5.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 88.7 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
f632b8962474ce3db9fec0d9e2c0038bc1339295796b0e76ac1d27b47bb60f9c
BLAKE2b-256 checksum
How to use checksums
bc93a58fe0f3a32d094c5cf115d36893f99edd6cb95e42c66062cb194fac8c3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL mmh3-5.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 81.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d67a7671b847ad934fea80702665b0903a5e19339713ea7a46f7e8eea21299d0
BLAKE2b-256 checksum
How to use checksums
99dad1227de0e2b2c63ab75a7412bb75c11aff16fa417ddbaccc97f931570270
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL mmh3-5.0.0-cp39-cp39-macosx_11_0_arm64.whl
Size 33.9 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2e818d949829aeb25898db76d5a88411c2cc899c00e1c1c1a30916254f8762e2
BLAKE2b-256 checksum
How to use checksums
719ba0b9350f20bcde03d02b8d3794da028ed96b71a2fa96e55e90104970192e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL mmh3-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 34.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
aa6393cd40c3687b1d0bd3fbac8f9e81bbeb949bab63268e3756f9061c19d75c
BLAKE2b-256 checksum
How to use checksums
baf48a314f44667ec34108b73ec87426dde10f645fa6d0fcff05cfcef6c2b669
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp39-cp39-macosx_10_9_universal2.whl

Download URL mmh3-5.0.0-cp39-cp39-macosx_10_9_universal2.whl
Size 48.6 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
175037381e94d65553631b301c5c6f0cd69c7f8519e634221e7361595c7de0c3
BLAKE2b-256 checksum
How to use checksums
5647ea5217a12f8852b94fd65c43805eccfbee9043665c2715b4786f8dad0b3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-win_amd64.whl

Download URL mmh3-5.0.0-cp38-cp38-win_amd64.whl
Size 35.5 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
4ac9de75f3782a5c4dae1c60ed69f2a487439398ef694fc2b77c0a4e61268307
BLAKE2b-256 checksum
How to use checksums
6bb2f75347d70d030a2ade6d6e26433ee4f7c53f5f867455171efbeb1e2b2532
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-win32.whl

Download URL mmh3-5.0.0-cp38-cp38-win32.whl
Size 34.9 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
1d96e0ec13acf1c725b3ba5c932f0f4153238598880d4b32260dd552a34d6576
BLAKE2b-256 checksum
How to use checksums
c6e7458a819f39c659d77b6e544adb117896ed3c946be1bd93677071bb7805c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL mmh3-5.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Size 86.1 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8f1c6c36135635c418b3e4e39f9bd3d0ef4afaf3c328c727f94cba0c146abba1
BLAKE2b-256 checksum
How to use checksums
a7cbd60550597462857dea90570d5d1e9476b508893fc91d6571186df13ec43b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-musllinux_1_2_s390x.whl

Download URL mmh3-5.0.0-cp38-cp38-musllinux_1_2_s390x.whl
Size 86.9 kB
Tags CPython 3.8 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
1424a9ffa472d4a9f5581f4eeac118d2c746e1980cbb48b7c1ddd1155e8d0d11
BLAKE2b-256 checksum
How to use checksums
1ab429cd33830d85a18e34e616e3958b61f9b41f99894d5f183fb9c90dcc21a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-musllinux_1_2_ppc64le.whl

Download URL mmh3-5.0.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Size 91.3 kB
Tags CPython 3.8 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
493479781554a98492a20bd659dd470608a9ceb5b229efcc4ce03ea4c849e81e
BLAKE2b-256 checksum
How to use checksums
e8da513bb4518fffb70e543d007497e9ffb39f82d4249299161081dcb94e3784
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-musllinux_1_2_i686.whl

Download URL mmh3-5.0.0-cp38-cp38-musllinux_1_2_i686.whl
Size 82.2 kB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
8971c3bc630cd3d3f2ba7b0a98b6eb3b5a83089f76e53500c53d3b3132d3437c
BLAKE2b-256 checksum
How to use checksums
e913e683e1a29e84c1ce44a4c7afe4049c4fd041c7af287f3569063640705ae6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL mmh3-5.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Size 86.5 kB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
566ab00f7bc779d6d887b2d2ec96345483ed7091796d303f5df20cb06b4327ba
BLAKE2b-256 checksum
How to use checksums
9900cbc3d5c35c290e6772effec01d44fceb3c634258225b1d9d3d674310a2ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL mmh3-5.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 90.6 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
1d1ac511ad1775f793b4c34fe40e43e213bc59620fcf7d3046ee7d73dd629f82
BLAKE2b-256 checksum
How to use checksums
1718032d50227e313d862ae18dc5e4af5dab439ab6d7ce1daf4b9a71cfde4471
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL mmh3-5.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 91.2 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
157159c3306e11225111e7d2db6bee1ff81d2286df53d6a305728656cf694076
BLAKE2b-256 checksum
How to use checksums
506c7060c2d1b3954a9ebc02c80cd1544026fbbade28ce41b2b548db77de253c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL mmh3-5.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 86.2 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5bd7a88b40c5c715c9afe6af4034f23a2222045d17215ffdde357733d976fde2
BLAKE2b-256 checksum
How to use checksums
e3d5135c7c03f97f63b69238ed3c2fcf5187a18d6db1eca3074fa42ef398aadf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL mmh3-5.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 85.8 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8e326d9e1756ccacb2a8047d924101c3ed44bb2ac6aa6fc92efbbd1f2858f7b5
BLAKE2b-256 checksum
How to use checksums
1d035751b6ad71d772c2081bd29ac387268b64cb58257f3cf4597a9a33b8f13f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL mmh3-5.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 80.5 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
cb92b0e27775b078d469d948341f20a071943b4dacb4950d708a04722a8d6fee
BLAKE2b-256 checksum
How to use checksums
90d5edad455c987a0bfa9751752deb2360be5cca68eb37acdbdb64cbbbf63f54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL mmh3-5.0.0-cp38-cp38-macosx_11_0_arm64.whl
Size 33.8 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8df414110fdbcf689812bf0ecab83611f97191dea2ab378bd384a6166bf0849b
BLAKE2b-256 checksum
How to use checksums
af0c67f3757c7b89c11d17abf18d6b162817132cb7e5db52145a46abdab3e9ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL mmh3-5.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 34.0 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
17c0af11c1c4217b30635d3b3ad03dc61388f14b19a4f74bfcd6f29cfac3a59e
BLAKE2b-256 checksum
How to use checksums
85c048942d837abfceb40a149e9cadad1e4a838dbc4e5c859c966fdfdc4dc361
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release files / mmh3-5.0.0-cp38-cp38-macosx_10_9_universal2.whl

Download URL mmh3-5.0.0-cp38-cp38-macosx_10_9_universal2.whl
Size 48.4 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
9d8ac8b3f53d2146680a2e16908620f209778bfb6c7a5d1e64b10f496f3c87f7
BLAKE2b-256 checksum
How to use checksums
a2c667db7b8abcfeced4d412eff9b45583d25edec4aa967a2c42b92c140d5927
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.5

Release history Release notifications | RSS feed

5.1.0

81 release files

5.0.1

96 release files

This release

5.0.0 This release

96 release files

4.0.1

64 release files

4.0.0

64 release files

3.1.0

35 release files

3.0.0

26 release files

2.5.1

1 release file

2.5

1 release file

2.4

1 release file

2.3.1

1 release file

2.3

1 release file

2.2

1 release file

2.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page