Skip to main content

mmh3

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.

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

Another common use of mmh3 is to calculate favicon hashes used by Shodan, the world's first IoT search engine.

How to use

Install

pip install mmh3 # for macOS, use "pip3 install mmh3" and python3

Simple functions

Quickstart:

>>> import mmh3
>>> mmh3.hash("foo") # returns a 32-bit signed int
-156908512
>>> mmh3.hash("foo", 42) # uses 42 as a seed
-1322301282
>>> mmh3.hash("foo", signed=False) # returns a 32-bit unsigned int
4138058784

Other functions:

>>> mmh3.hash64("foo") # two 64 bit signed ints (by using the 128-bit algorithm as its backend)
(-2129773440516405919, 9128664383759220103)
>>> mmh3.hash64("foo", signed=False) #  two 64 bit unsigned ints
(16316970633193145697, 9128664383759220103)
>>> mmh3.hash128("foo", 42) # 128 bit unsigned int
215966891540331383248189432718888555506
>>> mmh3.hash128("foo", 42, signed=True) # 128 bit signed int
-124315475380607080215185174712879655950
>>> mmh3.hash_bytes("foo") # 128 bit value as bytes
'aE\xf5\x01W\x86q\xe2\x87}\xba+\xe4\x87\xaf~'
>>> import numpy as np
>>> a = np.zeros(2 ** 32, dtype=np.int8)
>>> mmh3.hash_bytes(a)
b'V\x8f}\xad\x8eNM\xa84\x07FU\x9c\xc4\xcc\x8e'

Beware that hash64 returns two values, because it uses the 128-bit version of MurmurHash3 as its backend.

hash_from_buffer hashes byte-likes without memory copying. The method is suitable when you hash a large memory-view such as numpy.ndarray.

>>> mmh3.hash_from_buffer(numpy.random.rand(100))
-2137204694
>>> mmh3.hash_from_buffer(numpy.random.rand(100), signed=False)
3812874078

hash64, hash128, and hash_bytes have the third argument for architecture optimization. Use True for x64 and False for x86 (default: True):

>>> mmh3.hash64("foo", 42, True) 
(-840311307571801102, -6739155424061121879)

hashlib-style hashers

mmh3 implements hashers whose interfaces are similar to hashlib in the standard library: mmh3_32() for 32 bit hashing, mmh3_x64_128() for 128 bit hashing optimized for x64 architectures, and mmh3_x86_128() for 128 bit hashing optimized for x86 architectures.

In addition to the standard digest() method, each hasher has sintdigest(), which returns a signed integer, and uintdigest(), which returns an unsigned integer. 128 bit hashers also have stupledigest() and utupledigest() which return two 64 bit integers.

Note that as of version 4.0.0, the implementation is still experimental and its performance can be unsatisfactory (especially mmh3_x86_128()). Also, hexdigest() is not supported. Use digest().hex() instead.

>>> import mmh3
>>> hasher = mmh3.mmh3_x64_128(seed=42)
>>> hasher.update(b"foo")
>>> hasher.update(b"bar")
>>> hasher.update("foo") # str inputs are not allowed for hashers
TypeError: Strings must be encoded before hashing
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
>>> hasher.digest()
b'\x82_n\xdd \xac\xb6j\xef\x99\xb1e\xc4\n\xc9\xfd'
>>> hasher.sintdigest() # 128 bit signed int
-2943813934500665152301506963178627198
>>> hasher.uintdigest() # 128 bit unsigned int
337338552986437798311073100468589584258
>>> hasher.stupledigest() # two 64 bit signed ints
(7689522670935629698, -159584473158936081)
>>> hasher.utupledigest() # two 64 bit unsigned ints
(7689522670935629698, 18287159600550615535)

Changelog

4.0.0 (2023-05-22)

3.1.0 (2023-03-24)

  • Add support for Python 3.10 and 3.11. Thanks wouter bolsterlee and Dušan Nikolić!
  • Drop support for Python 3.6; remove legacy code for Python 2.x at the source code level.
  • Add support for 32-bit architectures such as i686 and armv7l. From now on, hash and hash_from_buffer on these architectures will generate the same hash values as those on other environments. Thanks Danil Shein!
  • In relation to the above, manylinux2014_i686 wheels are now available.
  • Support for hashing huge data (>16GB). Thanks arieleizenberg!

3.0.0 (2021-02-23)

  • Python wheels are now available, thanks to the power of cibuildwheel.
    • Supported platforms are manylinux1_x86_64, manylinux2010_x86_64, manylinux2014_aarch64, win32, win_amd64, macosx_10_9_x86_64, and macosx_11_0_arm64 (Apple Silicon).
  • Add support for newer macOS environments. Thanks Matthew Honnibal!
  • Drop support for Python 2.7, 3.3, 3.4, and 3.5.
  • Add support for Python 3.7, 3.8, and 3.9.
  • Migrate CI from Travis CI and AppVeyor to GitHub Actions.

See CHANGELOG.md for the complete changelog.

License

MIT, unless otherwise noted within a file.

Known Issues

Getting different results from other MurmurHash3-based libraries

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

From version 4.0.0, mmh3 returns the same value under big-endian platforms as that under little-endian ones, while the original C++ library is endian-sensitive. If you need to obtain the original-compliant results under big-endian environments, 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.

Unexpected results when given non 32-bit seeds

Version 2.4 changed the type of seeds from signed 32-bit int to unsigned 32-bit int. The resulting values with signed seeds still remain the same as before, as long as they are 32-bit.

>>> mmh3.hash("aaaa", -1756908916) # signed representation for 0x9747b28c
1519878282
>>> mmh3.hash("aaaa", 2538058380) # unsigned representation for 0x9747b28c
1519878282

Be careful so that these seeds do not exceed 32-bit. Unexpected results may happen with invalid values.

>>> mmh3.hash("foo", 2 ** 33)
-156908512
>>> mmh3.hash("foo", 2 ** 34)
-156908512

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.

See also

Tutorials (High-Performance Computing)

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

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

Similar libraries

Release files for mmh3 4.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 4.0.0
File Size Uploaded
mmh3-4.0.0.tar.gz 25.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for mmh3 4.0.0
File
mmh3-4.0.0-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
mmh3-4.0.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
mmh3-4.0.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
mmh3-4.0.0-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
mmh3-4.0.0-cp311-cp311-musllinux_1_1_s390x.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ IBM System/390x Details
mmh3-4.0.0-cp311-cp311-musllinux_1_1_ppc64le.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ PowerPC 64-le Details
mmh3-4.0.0-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
mmh3-4.0.0-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
mmh3-4.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-4.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-4.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
mmh3-4.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.17+ x86-64, Linux glibc 2.5+ x86-64 Details
mmh3-4.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-4.0.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
mmh3-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
mmh3-4.0.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
mmh3-4.0.0-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
mmh3-4.0.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
mmh3-4.0.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
mmh3-4.0.0-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
mmh3-4.0.0-cp310-cp310-musllinux_1_1_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ IBM System/390x Details
mmh3-4.0.0-cp310-cp310-musllinux_1_1_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ PowerPC 64-le Details
mmh3-4.0.0-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
mmh3-4.0.0-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
mmh3-4.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-4.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-4.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
mmh3-4.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.5+ x86-64, Linux glibc 2.17+ x86-64 Details
mmh3-4.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.5+ x86-32, Linux glibc 2.17+ x86-32 Details
mmh3-4.0.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
mmh3-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
mmh3-4.0.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
mmh3-4.0.0-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
mmh3-4.0.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
mmh3-4.0.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
mmh3-4.0.0-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
mmh3-4.0.0-cp39-cp39-musllinux_1_1_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ IBM System/390x Details
mmh3-4.0.0-cp39-cp39-musllinux_1_1_ppc64le.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ PowerPC 64-le Details
mmh3-4.0.0-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
mmh3-4.0.0-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
mmh3-4.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-4.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-4.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
mmh3-4.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-4.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.17+ x86-32, Linux glibc 2.5+ x86-32 Details
mmh3-4.0.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
mmh3-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
mmh3-4.0.0-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
mmh3-4.0.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
mmh3-4.0.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
mmh3-4.0.0-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
mmh3-4.0.0-cp38-cp38-musllinux_1_1_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ IBM System/390x Details
mmh3-4.0.0-cp38-cp38-musllinux_1_1_ppc64le.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ PowerPC 64-le Details
mmh3-4.0.0-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
mmh3-4.0.0-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
mmh3-4.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-4.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-4.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
mmh3-4.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.5+ x86-64, Linux glibc 2.17+ x86-64 Details
mmh3-4.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.17+ x86-32, Linux glibc 2.5+ x86-32 Details
mmh3-4.0.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
mmh3-4.0.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
mmh3-4.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: 3.7 MB

Release files / mmh3-4.0.0.tar.gz

Download URL mmh3-4.0.0.tar.gz
Size 25.2 kB
Tags Source
SHA-256 checksum
How to use checksums
056b83d04e595547d0407cc8e5aa5d8ba8802a8afa417b64c1c30235b5389e30
BLAKE2b-256 checksum
How to use checksums
76d42aae33efebe5e40862e8346774bc2559b2967465d5ee58895d17b05589cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp311-cp311-win_arm64.whl
Size 30.3 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
72706beb124293b58968881ce3d59f678538c4dec3977c4edd9a9db402ad4486
BLAKE2b-256 checksum
How to use checksums
0b773bd4ca0c641a16fda3c03d4e0f69eeded0d9969d46988590c4b53729b7de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp311-cp311-win_amd64.whl
Size 31.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
a32c815f4d32bcbf71147b9109904e34f33716bed344955d13983026dc8568e0
BLAKE2b-256 checksum
How to use checksums
56a9d495d36cb1ee55653e6d10e0402fe557209812fc5527ae7502ae02c9b323
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp311-cp311-win32.whl
Size 31.4 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
f4ec497d5926842a45f235d1eda03ef2cc10e4ccb0738bbe828837817f0fbbfd
BLAKE2b-256 checksum
How to use checksums
7f575f0cd3abe62ef4c6b844916cb14194d9f49bb3c31384ac74d94446f250ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL mmh3-4.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Size 77.8 kB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
df22bd073107fe20006f9197ba29579e915a9a89142ef65130939aa0136c78e7
BLAKE2b-256 checksum
How to use checksums
4e8d8ef6f4f9c9cbc6a7d406e5882bfffd85f0b21c26b9023f86c109ecde3f6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp311-cp311-musllinux_1_1_s390x.whl

Download URL mmh3-4.0.0-cp311-cp311-musllinux_1_1_s390x.whl
Size 79.1 kB
Tags CPython 3.11 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
e6e5e4f543bf798161321deb186723a4ef530e7f216ea4c153e525f63c78fc78
BLAKE2b-256 checksum
How to use checksums
ee79186554e7343905458ddf0de9a6f9020e68ce9610266701c53d2e87d04693
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp311-cp311-musllinux_1_1_ppc64le.whl

Download URL mmh3-4.0.0-cp311-cp311-musllinux_1_1_ppc64le.whl
Size 82.6 kB
Tags CPython 3.11 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
087ee4a8c6dbfb4f356aaf32879846ad13e92894201f4d221a087fbb8857ec9a
BLAKE2b-256 checksum
How to use checksums
44b7be9305b2795119e6c82168d3411de632bb9242f5ca33dc5445fc5835085c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp311-cp311-musllinux_1_1_i686.whl

Download URL mmh3-4.0.0-cp311-cp311-musllinux_1_1_i686.whl
Size 75.4 kB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
1a9e6244923549e23d4b88c36d144d326092e0d33b802295d04c76e5dde567f4
BLAKE2b-256 checksum
How to use checksums
dfeeb19cc47fe65e5ff0dbf0e08206bc29d8f8f49f93aef46d1445c9f39f16c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL mmh3-4.0.0-cp311-cp311-musllinux_1_1_aarch64.whl
Size 77.1 kB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
54064f72545c187150edbbf2e6c5c39017797d851f99aee3726ce5dc26d786f2
BLAKE2b-256 checksum
How to use checksums
085b27bc920cb94231d538905f84e0f0e6f35b13eef861a0bea8652e743ff80a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 71.7 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
6a0323dfd7609634867e5fb23cf21f96c36792b558d88af73fdbc97e3440ea79
BLAKE2b-256 checksum
How to use checksums
e4c6b16a6526c5c58fd6196e9995492b2c8f1599ff04f0058e7906abcac3e197
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 72.9 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
cd912d31aa5e2327342777f8b9cde8b82adc3525fd7fa535a2b7b76789f4162a
BLAKE2b-256 checksum
How to use checksums
06dc034df49ba31551e9601cca8f80070e1454f76fa0394de7d6ce9bac8ccb18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 69.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b895044e24b845e75af3cb6ec3cd7ae88fa87ffcba93f2bfed3ae0c226d4a2e5
BLAKE2b-256 checksum
How to use checksums
3e7770c836efab52fa134c3be6d368485295b773829d05302afea5759623ccf9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 68.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a1c6e9e87c4ee08b60c5b5f967ac82777974b2aa0df5ef6f574c66a775231470
BLAKE2b-256 checksum
How to use checksums
c64b5b412eb88aebed407d9c8e377a0c783558cf69c4d8a1d2cf211ca261135d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 66.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2107a8de64e79d7b532ae9844e8ce79ff3284d5b6661b0566e5511cf11c6efca
BLAKE2b-256 checksum
How to use checksums
25b46ea34ae8680e4a60cb6325ccb252b1f1a8f8de36b3cae084b39f920bc54d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp311-cp311-macosx_11_0_arm64.whl
Size 31.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
646eb838998f60eea6fbcfde8ddef1081c4a10a30c09400ee2ec57a789cafb9b
BLAKE2b-256 checksum
How to use checksums
c07af5219d60ccbc47c9a36a160efcb53330815ac67928c60b1cc4f278bc3b49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 30.1 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7e39f5aa5ce2cda81f1f5856092bdb8e9263cb021990c1aede92c31c84a593ef
BLAKE2b-256 checksum
How to use checksums
e8a4a004edae47ce184bca6601a0ff3290b61102c1c1732d1e060d77b4fb3b5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp311-cp311-macosx_10_9_universal2.whl
Size 40.9 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
dfbd7db8ed8ce8ab0cb1dee1a25f15a900c9e66ef12004ab593984a51ba36fae
BLAKE2b-256 checksum
How to use checksums
d3775bd9ed6f07a21221716f10cedb7a665ad2d929522a999837873e6ddabb63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp310-cp310-win_arm64.whl
Size 30.3 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
14e835ea27fe36bf9fe584dbd2063c9c3c68e3bb3d11c41c5922bf5b9759b2e0
BLAKE2b-256 checksum
How to use checksums
77aa27a42cc646db37316646fa120efde01d6ff60ce97b6b9500f9554e1ba161
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp310-cp310-win_amd64.whl
Size 31.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c6af081268d05a645c9195968baf901d1a70f64e05586c9393f744ce0943a6d8
BLAKE2b-256 checksum
How to use checksums
47f25e9c919e6d38980c578e4abd39d807ed0a6730ebfd33bf3a6bed2cba4aba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp310-cp310-win32.whl
Size 31.4 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
4333668e3ddadd1795c223b44376f18b22fec205fd9604ae7b8e7ab3cdf12ce0
BLAKE2b-256 checksum
How to use checksums
96365734a831bf350b29a2b6a70eafb0fc350d9f19ea036de400a0156151f214
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL mmh3-4.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Size 75.7 kB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
496e39cc349630294fbf39db7571d5833e9e779df90fc0cc1f652c2f1df7b1c1
BLAKE2b-256 checksum
How to use checksums
1538372cbb795dee3f4882b776061cc33a6802ae39014850fdfe79f22bc7913d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp310-cp310-musllinux_1_1_s390x.whl

Download URL mmh3-4.0.0-cp310-cp310-musllinux_1_1_s390x.whl
Size 76.9 kB
Tags CPython 3.10 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
6dd94d8650576b1395640dfa62f49aa5bdead7200a655efee215b4a9c78f4882
BLAKE2b-256 checksum
How to use checksums
da4c8ab4201edbb1c74c2c140b4dcc11eefcffa9983e438d4e7e6a366ab05c40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp310-cp310-musllinux_1_1_ppc64le.whl

Download URL mmh3-4.0.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Size 80.7 kB
Tags CPython 3.10 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
2c73a503ab4297b4a2125eeda50b28bcd7eb8a6eef7b52e2a4a4c810267d0076
BLAKE2b-256 checksum
How to use checksums
632eabc9557f6bb86c079797df9a14d2e12c5a1b25d63e71c38e1a50382da9f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp310-cp310-musllinux_1_1_i686.whl

Download URL mmh3-4.0.0-cp310-cp310-musllinux_1_1_i686.whl
Size 73.4 kB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
7754d661e8dd855b7950cb94f33db45ee53f12bc271eb376d5a8c84c4c039ad4
BLAKE2b-256 checksum
How to use checksums
9e69ab8797dc893c2c207c356c8aae7921f069383a0d8d414d6d43304f549170
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL mmh3-4.0.0-cp310-cp310-musllinux_1_1_aarch64.whl
Size 75.3 kB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
d2c2642101105a36db0f936f137cd27bdc75335739e06d0d172d1ece907cb99e
BLAKE2b-256 checksum
How to use checksums
5fed52bedf5ad38f3810ab9527370511f74231e745da3e34e646f14f8644d112
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 71.3 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
006ac0d3fe9cbc2855f63491ac3ce77290cedb6adf147d9bf803eb4097f765a5
BLAKE2b-256 checksum
How to use checksums
e84234a1a56958847e16c52cc1bda5fc5e8db0241474bd0ee1c57d4354f966ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 72.7 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ec5c0e0f4be15d73d2ff8d00212c67fcd4f36bca4b43e3c940c545341805dd22
BLAKE2b-256 checksum
How to use checksums
1152847f74317e308df2519a29b8a20898e233a58815321a0b6900946b54458b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 69.3 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4e78c400595fb10c5ba46bd2386a0f1b2d5345c09d391882f96a27b4cf8bfc84
BLAKE2b-256 checksum
How to use checksums
3f7a062e27315ae5384ad6b48d8c1f578f3247b0c921d3d4348c8077d75384aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 68.0 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ba8734f408a08822b2597a70a58549fd84a7afd86a18839ae1bb0bc9b9d2b816
BLAKE2b-256 checksum
How to use checksums
1877ceef9eace263226882e1035d32478ce76d31b2d70194d35e9b5f35d3f6f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 66.2 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3dceabcf98a3c5c9a137a81c7e2f8cb9b438c1b1da6d8c4d7ec8ca9df52cdd3c
BLAKE2b-256 checksum
How to use checksums
eed73873c1d74778b56088caffaddfa0004299948be326e3cb3b9c99eafb83f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp310-cp310-macosx_11_0_arm64.whl
Size 31.0 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
072d449ed3769b7faff5ce7fe05323d2602834f03dfc3969dcedb183b1d902ec
BLAKE2b-256 checksum
How to use checksums
3fd991710bfd28a6312ea6b42ae3d43f3d1fa8b342b60334c18ef45b5dd06e8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 30.1 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
6ab345fba03d94cd08494a60c244085fb800645881639795b9390900672ee1c4
BLAKE2b-256 checksum
How to use checksums
462d47bf601ca57ee2226b49ac3c7211b72ccc46d5fc6b6754bd613850624c2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp310-cp310-macosx_10_9_universal2.whl
Size 40.9 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
214ae1ab976401b3fd8da2a3828d1520d31592efacab63f90c222a0e69ad68cf
BLAKE2b-256 checksum
How to use checksums
37fb98e717253d39790e776062d10d7a7587336034fa3f5008a01d1ef2113b9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp39-cp39-win_arm64.whl
Size 30.4 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
2a2db279f0c97619a6d3cc291168cc47a3cbd73cf1767a058e5cc765252260a1
BLAKE2b-256 checksum
How to use checksums
ded7eca4f5e1afeed27c4d594cdb1e37c36cb69f1ffa2513318fc735bfef4200
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp39-cp39-win_amd64.whl
Size 31.5 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
5790d3bf330a6be8bea19fcc03965a5cf6c9a37021ecf9202e54ed7c3d33bd23
BLAKE2b-256 checksum
How to use checksums
8c19a3e733d15dba00679b8cf01af577694bc4565fb9005fb2b35c02d30b157e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp39-cp39-win32.whl
Size 31.4 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
a373025a487295c9e6cbf86159665f49963077d39a843707519c678f7e6791a2
BLAKE2b-256 checksum
How to use checksums
588498a6621a75591cfab7a033fc85b8ae725e2b6795cde5bbd2e70695065507
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL mmh3-4.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Size 75.4 kB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
129f2c948ce8b884ddcad0f755a8b3245302eb06c3de1b4aa9a45b643c63ca04
BLAKE2b-256 checksum
How to use checksums
650ec31b7153b1758b491b17a02bdc19e51450270800b5d927eb9028b01576a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp39-cp39-musllinux_1_1_s390x.whl

Download URL mmh3-4.0.0-cp39-cp39-musllinux_1_1_s390x.whl
Size 76.6 kB
Tags CPython 3.9 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
ec8ba7a8357a33af6c41a29a3015f796643e998a1a33d95cb773efc98ae669d2
BLAKE2b-256 checksum
How to use checksums
4e07977f83c3e4c02a2d490cd6c60712db3b9eaf84932c58f87d15c6f2aed9e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp39-cp39-musllinux_1_1_ppc64le.whl

Download URL mmh3-4.0.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Size 80.4 kB
Tags CPython 3.9 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b52775bffc0463e32cddaea76afd61a992b15091fe1955418b44cb7b87a7aea9
BLAKE2b-256 checksum
How to use checksums
45d1713065f04f4d17864ddeafccf7c89e5658450f1e252bfa29f913cae6eba6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp39-cp39-musllinux_1_1_i686.whl

Download URL mmh3-4.0.0-cp39-cp39-musllinux_1_1_i686.whl
Size 73.0 kB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
28c182fcb472bb102bb6f8f92bcc268be469220e8ba6dca383860e494a91671f
BLAKE2b-256 checksum
How to use checksums
cd0744ac84cebc5c9fe0fb39392846694daa8e7d0bd842fd0d96dd0145950ccd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL mmh3-4.0.0-cp39-cp39-musllinux_1_1_aarch64.whl
Size 74.9 kB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
2cff9758d6b0f7f00d805e9d1d019e8b7f4da4b56795843e0339633fd67bc3a4
BLAKE2b-256 checksum
How to use checksums
9cb747aa11da6c9dabb9988c1f6975543c7e6746d10973efedd89ed6fe5a9c14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 71.1 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
0ad9a741871550ecb7217449e423806f8e6e76c6fe90383992c8db15cb55e9d9
BLAKE2b-256 checksum
How to use checksums
8741a3edc75808ac8ec2f1662d9593656441f56855abd2b5a176726244bee075
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 72.4 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
130801c630768b39c0c115b4df1ba649318179a47981cbdd7171c8f78cfe1e4b
BLAKE2b-256 checksum
How to use checksums
73ff95059220c977da506973ed61d85a20c7cfc4d596d5c8d58114a986eb388f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 69.0 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8397bb38314ba93f9c87e7feb724d093a3b3df566dccab9d088e18792c8ad6fd
BLAKE2b-256 checksum
How to use checksums
bba39af3bb650e9de3397141e4e3342b17aef4048fe2e32113983909c55bf3d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 67.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
95d03f341ce11ee9f325af910bc588dda519f4b15b60abab72ea286a6aad572b
BLAKE2b-256 checksum
How to use checksums
71a7ccb113839d1c62f81d23104ff8541534daf15099893b719b89e8dabd53bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 66.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
07a7447cbfcaa269d8f8c64dd12924fe523f0ac04135428a1f327d769fa9b1a4
BLAKE2b-256 checksum
How to use checksums
45c883d4ec14ced260777714d726bd38576d8732d0ae6b90698e056c67df767e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp39-cp39-macosx_11_0_arm64.whl
Size 31.0 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
453fff6505db5f3c2e2ee562744b8de49a58f83a609f178a1d3238036fbb4a72
BLAKE2b-256 checksum
How to use checksums
8227e5c8ed699c85bc4d7c8fd00b03054e9cfc80b6604e8996f7f509278c222f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 30.1 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
363a9a4342aa93d524b01336a646da4b20fb52b22b883d7a4a173f4b4e015451
BLAKE2b-256 checksum
How to use checksums
ce1640b6abe1e4ef01bdc9cb23cba71a6ff9b0bd2a468f0808987ec3ad0dabe6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp39-cp39-macosx_10_9_universal2.whl
Size 40.9 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
9f069b5421b6d2ac24dd1928788f986cb5393baeca8d758838946e3546a1a723
BLAKE2b-256 checksum
How to use checksums
e5a0f5d8934b2360b215d5a17169dc01fd445e086dde9ee22aa229adca58df21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp38-cp38-win_amd64.whl
Size 31.5 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
55ac731333b5e0e9f93ad56cab95b05ef1621a5a87568e36ec17dc9dd761abbe
BLAKE2b-256 checksum
How to use checksums
721a529224014564ed0b98f3c4e5bf25983068f51cefb5d50eb75fea1444dc01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp38-cp38-win32.whl
Size 31.4 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
e390c820a31146c73b0cb60da65906a866d4fe43b4688cc3cdf5f33c423d09a1
BLAKE2b-256 checksum
How to use checksums
9bafce036e126742fea861515f39614e10e396ba2a5dfb3f70783e688f4641ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL mmh3-4.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Size 75.7 kB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
2070b169a8b82ad4dcbc6c34fcfd538428322e1f2db5dce349023aad2ba0dc94
BLAKE2b-256 checksum
How to use checksums
eb5b618d65a6f48c06da1762a6beb67aafffaf891a21d0316e921c9b1f1bcd83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp38-cp38-musllinux_1_1_s390x.whl

Download URL mmh3-4.0.0-cp38-cp38-musllinux_1_1_s390x.whl
Size 76.9 kB
Tags CPython 3.8 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
2cc0e1872acff360e95f8e3768b5f1777a1ebc700caf88a8a22adb153d24b9fa
BLAKE2b-256 checksum
How to use checksums
91996c5cb12bccfb0c1e232339e054b3ec321d7a59b3b5681fa717445ebbc89c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp38-cp38-musllinux_1_1_ppc64le.whl

Download URL mmh3-4.0.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Size 80.6 kB
Tags CPython 3.8 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e08ebbdfa008f5d957e69031ab625f7d22313fdff14f845d213ab06f585846e4
BLAKE2b-256 checksum
How to use checksums
7a5018372fc0f91b3d328955147c36ae81ff11c4cc0aba52e63e78b077f929cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp38-cp38-musllinux_1_1_i686.whl

Download URL mmh3-4.0.0-cp38-cp38-musllinux_1_1_i686.whl
Size 73.2 kB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
5a14c10d50526ee91ca474780f029b97d78fd9bb47ae9c248b8cb1a964525f8f
BLAKE2b-256 checksum
How to use checksums
31cc8790ecc23c912b5c89e3c7c47b950646d972a9cea5af41721e2d24d88570
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / mmh3-4.0.0-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL mmh3-4.0.0-cp38-cp38-musllinux_1_1_aarch64.whl
Size 75.3 kB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
4c4d482434edf2581ae6bdaf99840791938b089acef56832d13f91e81745bff1
BLAKE2b-256 checksum
How to use checksums
2017f1315f7802544b6e0a2382a1cbac1c6d50dc1b1934ab9ce6451e2e5f01e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 71.5 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
82a7f6089c37b83c5209fec02492418222e0051f09f27bc7fce9d49ee36603cd
BLAKE2b-256 checksum
How to use checksums
9750567835a97f0c854881b658dbb1e36d16abb852802d6432b95f2bbc4f30b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 72.6 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
1755485dc411336c429824258f2fe1a2f53fad2ba1481e922111312d0a698cf4
BLAKE2b-256 checksum
How to use checksums
13fb613c7e19363d45f18b17d00cb44e5b17f44e6db30861a4d1da8b2ad12151
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 69.3 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5638d5d26f7bf1bd79233e5140303ac47c506d51d86f67595ee851f2d49fa480
BLAKE2b-256 checksum
How to use checksums
0d9a29d9e7f000dd026b345ac3fee4364d458dae8b75ea02b32f38753c146979
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 68.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
1ca5f2ad2af9decee4f9a3c91a823bf71c4f634ff400b829c648c0dc5cd7503f
BLAKE2b-256 checksum
How to use checksums
5cf72fab381a3bb22c307d50a1950c878960294eb2c00e896e7fbd5228738a3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 66.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
1e5cf444ce11571d0cf65516255b119d3dd733f86120e0acf7371363c97e396d
BLAKE2b-256 checksum
How to use checksums
5f0bc69cd83437a8f3979f37038780d077045beded439346bf13dcef89a93bc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp38-cp38-macosx_11_0_arm64.whl
Size 31.0 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8a334ce72e7b1602a951ae24453c087f0729049281954f57c2bbc3a3eddee4bb
BLAKE2b-256 checksum
How to use checksums
085c84746a3041dcbe20f54bcea3296d42eec6c072d126e9d9bfb22ea63cafe8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 30.0 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
285751d7e9a98ea842186240ad7a1ca33f0ffa6c0c7e6e3511ac094f8b4b289d
BLAKE2b-256 checksum
How to use checksums
15dd6e21b97cb2dded24e9f2800498f67dd39c4fa58b76ddc51950304a3cb0c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL mmh3-4.0.0-cp38-cp38-macosx_10_9_universal2.whl
Size 40.9 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
86a8f5af47b78fd5e70e4d48c6da0a04492ab267780ff87e62ddfae5260c3443
BLAKE2b-256 checksum
How to use checksums
78f183383c519b068fa1099ad7680704396e4bd6cc884dae785e26d4033ace53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release history Release notifications | RSS feed

5.1.0

81 release files

5.0.1

96 release files

5.0.0

96 release files

4.0.1

64 release files

This release

4.0.0 This release

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