| # -*- coding: utf-8 -*- | |
| # SPDX-FileCopyrightText: 2016-2025 PyThaiNLP Project | |
| # SPDX-FileType: SOURCE | |
| # SPDX-License-Identifier: Apache-2.0 | |
| """ | |
| Language translation. | |
| """ | |
| __all__ = ["Translate", "ThZhTranslator", "ZhThTranslator"] | |
| from pythainlp.translate.core import Translate | |
| from pythainlp.translate.zh_th import ( | |
| ThZhTranslator, | |
| ZhThTranslator, | |
| ) | |