python-Levenshtein
python-Levenshtein copied to clipboard
The Levenshtein Python C extension module contains functions for fast computation of Levenshtein distance and string similarity
Quick FYI, that on Termux, Android this: ``` add_definitions(-D_GNU_SOURCE) include(CheckIncludeFile) check_include_file("limits.h" HAVE_LIMITS_H) add_compile_definitions(-DSSIZE_MAX=9223372036854775807) ``` added to: > /data/data/com.termux/files/home/downloads/Levenshtein-0.24.0/src/Levenshtein was needed to fix: ``` .0:23: error: 'SSIZE_MAX' was not declared in...
This is more of a feature request than a bug report. Levenshtein.distance() accepts the weights=(n1,n2,n3) parameter to specify the cost of insertions, deletions, and substitutions. However Levenshtein.editops() does not. It...
at https://pypi.org/project/python-Levenshtein/ , on top it say pip install python-Levenshtein while in github link, it say pip install levenshtein. can you please resolve this? Pick the right one and align...