Metadata-Version: 1.1
Name: similar-text
Version: 0.2.0
Summary: Calculates the similarity between two strings
Home-page: https://github.com/luosch/similar_text
Author: Sicheng Luo
Author-email: i@lsich.com
License: MIT
Description: similar_text
        ============
        
        .. image:: https://img.shields.io/pypi/v/similar_text.svg
            :target: https://pypi.python.org/pypi/similar_text
        
        
        :code:`similar_text` can calculate the similarity between two strings
        
        Installation
        ------------
        
        The tool works with Python 2 and Python 3. It can be installed with `pip` :
        
        ::
        
            pip install similar_text
        
        
        Usage
        -----
        
        .. code-block:: python
        
            >>> from similar_text import similar_text
            >>> similar_text('luosicheng', 'lsc')
            46
            >>> similar_text('lsc', 'luosicheng')
            46
        
Keywords: similar_text,similar,text
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
