32-bit murmurhash2 & 3 for Python
pip install murmurhash2
from murmurhash2 import murmurhash2, murmurhash3
SEED = 3242157231
print(murmurhash2(b'key', SEED))
print(murmurhash3(b'key', SEED))
This work is released under the MIT license. A copy of the license is provided in the LICENSE file.