Skip to content

messense/murmurhash2-py

Repository files navigation

murmurhash2-py

CI PyPI

32-bit murmurhash2 & 3 for Python

Installation

pip install murmurhash2

Usage

from murmurhash2 import murmurhash2, murmurhash3


SEED = 3242157231
print(murmurhash2(b'key', SEED))
print(murmurhash3(b'key', SEED))

License

This work is released under the MIT license. A copy of the license is provided in the LICENSE file.