Metadata-Version: 1.1
Name: murmurhash3
Version: 2.3.2
Summary: a library for MurmurHash3, a set of fast and robust hash functions
Home-page: http://packages.python.org/murmurhash3
Author: V G
Author-email: veegee@veegee.org
License: Public Domain
Description: murmurhash3
        ===========
        
        :Version: 2.3.1
        :Download: http://pypi.python.org/pypi/murmurhash3/
        :Source: http://github.com/veegee/mmh3
        :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 >= 3.2.0 on all platforms.
        
        
        Usage
        =====
        
        Install::
        
            pip install murmurhash3
        
        Usage::
        
            pip install murmurhash3
        
            >>> import 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
        
        ``hash64``, ``hash128``, and ``hash_bytes`` have the third argument for
        architecture optimization. Use True for x64 and False for x86 (default: True).::
        
            >>> mmh3.hash64('foo', 42, True)
            (-840311307571801102, -6739155424061121879)
        
        
        License
        =======
        
        Public Domain
        
        
        Authors
        =======
        
        MurmurHash3 was created by Austin Appleby
        
        - http://code.google.com/p/smhasher/
        
Keywords: hash,MurmurHash
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
