README
This commit is contained in:
parent
f94aa2578d
commit
fb2c69f8c0
1 changed files with 18 additions and 0 deletions
18
README
18
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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue