From fb2c69f8c06804eb470fe16dd2f316bd39bc2086 Mon Sep 17 00:00:00 2001 From: Cameron Eure Date: Mon, 8 Oct 2012 13:27:49 -0700 Subject: [PATCH] README --- README | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README b/README index d949e1d..81a2fa3 100644 --- a/README +++ b/README @@ -1 +1,19 @@ + +MurmurHash3 for Python 2.x and 3.x. + +Installing: + + sudo python setup.py install + +Using: + + import murmur3 + + print murmur3.hash32('my string') + a, b, c, d = murmur3.hash128('my other string') + print a, b, c, d + + a, b = murmur3,hash128_64('my other other string') + print a, b + See http://code.google.com/p/smhasher/ for more information.