Metadata-Version: 2.4
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
Keywords: similar_text,similar,text
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: summary

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
