Find similarities
Example Usage
from lesp import Proofreader
proofreader = Proofreader()
# Find words that are 0.8 or more similar to "hello"
similar_words = proofreader.get_similar("hello", 0.8)
print(similar_words)['hallo', 'hello']Using the Cache
Example Usage
Clearing the Cache
Last updated