Metadata-Version: 1.1
Name: pyfarmhash
Version: 0.1.4
Summary: Google FarmHash Bindings for Python
Home-page: https://github.com/veelion/python-farmhash
Author: Veelion Chong
Author-email: veelion@gmail.com
License: UNKNOWN
Description: python-farmhash
        ==========
        
        
        Overview
        ========
        This package provides bindings for the [Google's FarmHash](http://code.google.com/p/farmhash/).  
        
        Code specific to this project is covered by [The MIT License](http://opensource.org/licenses/MIT)
        
        Install
        =======
        Currently, clone the repo and:
        > $ cd python-farmhash  
        > $ sudo python setup.py Install  
        
        
        The package was hosted on [PyPI](http://pypi.python.org/pypi/pyfarmhash)
        
        > $ pip install pyfarmhash  
        > $ easy_install pyfarmhash  
        
        Usage
        =====
        The library is pretty simple to use:
        
        > import pyfarmhash as farmhash
        > print farmhash.hash64('abc')  
        > 2640714258260161385  
        
        For more details, use ipython:
        > In [1]: import pyfarmhash as farmhash 
        > 
        > In [2]: farmhash.hash64withseed?  
        > Type:       builtin_function_or_method  
        > String Form:<built-in function hash64withseed>  
        > Docstring:  
        > Hash function for a string.  For convenience, a 64-bit seed is also hashed into the result.  
        > example: print farmhash.hash64withseed('abc', 12345)  
        > 13914286602242141520L  
        
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: C
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
