Metadata-Version: 1.1
Name: similar
Version: 0.1
Summary: A similar text finder written in Python
Home-page: http://github.com/ncrocfer/similar
Author: Nicolas Crocfer
Author-email: ncrocfer@gmail.com
License: UNKNOWN
Description: similar - A similar text finder written in Python 
        =================================================
        
        .. image:: https://travis-ci.org/ncrocfer/similar.svg?branch=master
            :target: https://travis-ci.org/ncrocfer/similar
        
        
        :code:`similar` is a Python library used to find the correct spelling from a misspelled text.
        
        Usage
        -----
        
        .. code-block:: python
        
            >>> from similar import best_match
            >>> best_match('rasbery', ['apple', 'raspberry', 'pear'])
            raspberry
        
        
        Installation
        ------------
        
        The tool works with Python 2 and Python 3. It can be installed with `Pip` :
        
        ::
        
            pip install similar
        
        
        Notes
        -----
        
        You can also use a file object for the wordlist :
        
        .. code-block:: python
        
            from similar import Similar
        
            s = Similar('rasbery', open('wordlist.txt'))
            print(s.best())
        
        
        Or a generator :
        
        .. code-block:: python
        
            from similar import Similar
        
            def genwords():
                for line in ['apple', 'raspberry', 'pear']:
                    yield line
        
            s = Similar('rasbery', genwords())
            print(s.best())
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
