An adaption of a public domain librarywith python2.7 support
Project description
murmurhash3
- Version:
1.0.3
- Download:
- Source:
- Keywords:
hash, MurmurHash
murmurhash3 is a Python library for MurmurHash (MurmurHash3), a set of fast and robust hash functions. This library is a Python extension module written in C.
Supports Python >= 2.7
Usage
Install:
pip install splitmmh3
Usage:
pip install splitmmh3
>>> import splitmmh3 as mmh3
>>> mmh3.hash('foo') # 32-bit signed int
-156908512
>>> mmh3.hash64('foo') # two 64-bit signed ints (the 128-bit hash sliced in half)
(-2129773440516405919, 9128664383759220103)
>>> mmh3.hash128('foo') # 128-bit signed int
168394135621993849475852668931176482145
>>> mmh3.hash_bytes('foo') # 128-bit value as bytes
'aE\xf5\x01W\x86q\xe2\x87}\xba+\xe4\x87\xaf~'
>>> mmh3.hash('foo', 42) # uses 42 for its seed
-1322301282
License
Public Domain
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
splitmmh3-1.0.3.tar.gz
(12.3 kB
view details)
File details
Details for the file splitmmh3-1.0.3.tar.gz.
File metadata
- Download URL: splitmmh3-1.0.3.tar.gz
- Upload date:
- Size: 12.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.5.2 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3fbd4e7971a3686888438c3b8a7cfd718aba1340059bb3bcd38c60e30a4f499
|
|
| MD5 |
e293ae43212fbe965823c807c71874cb
|
|
| BLAKE2b-256 |
8f16f185a0b07178b0b3e46440b551d4379c749d54cfbfc876c5eb0a44fa2aa9
|