File size: 618 Bytes
e4b9a7b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2016-2025 PyThaiNLP Project
# SPDX-FileType: SOURCE
# SPDX-License-Identifier: Apache-2.0
"""
Thai soundex
Has three systems to choose from: Udom83 (default), LK82, and MetaSound
"""
__all__ = [
"lk82",
"metasound",
"prayut_and_somchaip",
"soundex",
"udom83",
]
from pythainlp.soundex.lk82 import lk82
from pythainlp.soundex.metasound import metasound
from pythainlp.soundex.prayut_and_somchaip import prayut_and_somchaip
from pythainlp.soundex.udom83 import udom83
DEFAULT_SOUNDEX_ENGINE = "udom83"
from pythainlp.soundex.core import soundex
|