Metadata-Version: 1.1
Name: cityhash
Version: 0.1.0
Summary: Python-bindings for CityHash
Home-page: https://github.com/escherba/python-cityhash
Author: Alexander [Amper] Marshalov
Author-email: alone.amper+cityhash@gmail.com
License: MIT
Download-URL: https://github.com/escherba/python-cityhash/tarball/master/0.1.0
Description: CityHash
        ========
        
        A Python wrapper around `CityHash <https://github.com/google/cityhash>`__
        
        .. image:: https://travis-ci.org/escherba/python-cityhash.svg
            :target: https://travis-ci.org/escherba/python-cityhash
        
        
        Installation
        ------------
        
        To get started, clone this repo and run ``make env`` or, alternatively,
        install it into your environment of choice (below). Note that you
        will need to have Cython installed before you install this package.
        
        .. code-block:: bash
        
            pip install -U cython
            pip install git+https://github.com/escherba/python-cityhash
        
        
        Example Usage
        -------------
        
        The package contains 64- and 128-bit implementations of CityHash algorithm.
        
        .. code-block:: python
        
            >>> from cityhash import CityHash64, CityHash128
            >>> CityHash64("abc")
            2640714258260161385L
            >>> CityHash128("abc")
            76434233956484675513733017140465933893L
        
        
Keywords: hash,hashing,cityhash
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: C++
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
