Python extension for computing string edit distances and similarities.
Reason this release was yanked:
Insecure, upgrade to 0.12.1
Project description
Introduction
The Levenshtein Python C extension module contains functions for fast computation of
Levenshtein (edit) distance, and edit operations
string similarity
approximate median strings, and generally string averaging
string sequence and set similarity
It supports both normal and Unicode strings.
Python 2.2 or newer is required; Python 3 is supported.
StringMatcher.py is an example SequenceMatcher-like class built on the top of Levenshtein. It misses some SequenceMatcher’s functionality, and has some extra OTOH.
Levenshtein.c can be used as a pure C library, too. You only have to define NO_PYTHON preprocessor symbol (-DNO_PYTHON) when compiling it. The functionality is similar to that of the Python extension. No separate docs are provided yet, RTFS. But they are not interchangeable:
C functions exported when compiling with -DNO_PYTHON (see Levenshtein.h) are not exported when compiling as a Python extension (and vice versa)
Unicode character type used with -DNO_PYTHON is wchar_t, Python extension uses Py_UNICODE, they may be the same but don’t count on it
Documentation
gendoc.sh generates HTML API documentation, you probably want a selfcontained instead of includable version, so run in ./gendoc.sh --selfcontained. It needs Levenshtein already installed and genextdoc.py.
License
Levenshtein can be copied and/or modified under the terms of GNU General Public License, see the file COPYING for full license text.
History
This package was long missing from PyPi and available as source checkout only. We needed to restore this package for Go Mobile for Plone and Pywurfl projects which depend on this.
Source code
Documentation
0.12.0
Fixed a bug in StringMatcher.StringMatcher.get_matching_blocks / extract_editops for Python 3; now allow only str editops on both Python 2 and Python 3, for simpler and working code.
Added documentation in the source distribution and in GIT
Fixed the package layout: renamed the .so/.dll to _levenshtein, and made it reside inside a package, along with the StringMatcher class.
Fixed spelling errors.
0.11.2
Fixed a bug in setup.py: installation would fail on Python 3 if the locale did not specify UTF-8 charset (Felix Yan).
Added COPYING, StringMatcher.py, gendoc.sh and NEWS in MANIFEST.in, as they were missing from source distributions.
0.11.1
Added Levenshtein.h to MANIFEST.in
0.11.0
Python 3 support, maintainership passed to Antti Haapala
0.10.1 - 0.10.2
Made python-Lehvenstein Git compatible and use setuptools for PyPi upload
Created HISTORY.txt and made README reST compatible
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for python-Levenshtein-0.12.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 033a11de5e3d19ea25c9302d11224e1a1898fe5abd23c61c7c360c25195e3eb1 |
|
MD5 | e8cde197d6d304bbdc3adae66fec99fb |
|
BLAKE2b-256 | 42a9d1785c85ebf9b7dfacd08938dd028209c34a0ea3b1bcdb895208bd40a67d |