Text correction Damereau Levenshtein python

702 Views Asked by At

I want to correct a text by using Damereau Levenshtein python (because it also considers transposition). I need to replace all the words of my input text by the words in a dictionary that have a distance of 1. How can I do this ?

Is there another way to correct automatically spelling mistakes ?

Thanks everyone

1

There are 1 best solutions below

1
On

Well, there exists a ready-made Python package to solve your problem. I think the method distance(string1, string2) should at least solve half your problem.