python from kmatch.matcher import FuzzyMatcher def main(): matcher = FuzzyMatcher() matcher.add("apple") result = matcher.match("apole", threshold=0.8) if result: else: if __name__ == '__main__': main()