Metadata-Version: 2.1
Name: hlwy-lsh
Version: 0.3.6
Summary: A library for performing shingling and LSH for python.
Home-page: https://github.com/feynmanlabs/hlwy-lsh
Author: Matti Lyra
Author-email: matti.lyra@gmail.com
License: MIT
Description: 
        hlwy-lsh
        ========
        
        LSH is a Python implementation of locality sensitive hashing with minhash. It is very useful for detecting
        near duplicate documents.
        
        The implementation uses the MurmurHash v3 library to create document finger prints.
        
        Cython is needed if you want to regenerate the .cpp files for the hashing and shingling code. By default
        the setup script uses the pregenerated .cpp sources, you can change this with the USE_CYTHON flag in
        setup.py
        
        NumPy is needed to run the code.
        
        The MurmurHash3 library is distributed under the MIT license. More information https://github.com/aappleby/smhasher
        
        
        Installation
        ============
        
        ```shell
        $ pip install hlwy-lsh
        …
        ```
        
        ✨🍰✨
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Description-Content-Type: text/markdown
