Metadata-Version: 1.0
Name: Murmur
Version: 0.1.2
Summary: Provides fast murmur hashes for strings, files, and ziped files.
Home-page: UNKNOWN
Author: Bryan McLemore
Author-email: kaelten@gmail.com
License: MIT
Description: 
        Murmur Hash Library
        ========
        
        Murmur Hash Library is a simple c level implementation developed for
        high speed hashing of in memory strings, on disk files, and the contents
        of zip files.
        
        As the name implies the hashes are generated via an implementation of
        `MurmurHash 2.0`_.
        
        A few quick NOTES and WARNINGS:
        
        The implementation of MurMur that is used in this code makes the
        following assumptions about your machine:
        
        1. A 4-byte value can be read from any address without crashing
        2. sizeof(int) == 4
        
        It will also not produce the same results on little-endian and big-endian
        machines.
        
        I believe it would be easily possible to get around these limitations.
        
        .. _MurmurHash 2.0: http://murmurhash.googlepages.com/
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: C++
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
