Metadata-Version: 2.1
Name: fastlevenshtein
Version: 0.1.5
Classifier: License :: OSI Approved :: GNU General Public License (GPL) 
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Rust
Classifier: Operating System :: POSIX :: Linux
Summary: A Rust-based levenshtein distance implementation.
Home-Page: https://github.com/thibaultbl/fastlevenshtein
Author: ThibaultB
Description-Content-Type: text/x-rst; charset=UTF-8
Project-URL: Source Code, https://github.com/thibaultbl/fastlevenshtein

.. contents ::

Introduction
------------
Rust implementation of levensthein distance (https://en.wikipedia.org/wiki/Levenshtein_distance).

Installation
------------

::

   pip install fastlevensthein


Usage
------------

::

   from fastlevensthein import levensthein
   levensthein("string1", "string2")
   >>> 1

:: 
   from fastlevensthein import levensthein_list
   levensthein_list(["string1", string2], "string3")
   >>> [1, 1]


License
-------

fastlevenshtein is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.

See the file COPYING for the full text of GNU General Public License version 2.

