File size: 521 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
"""
Phunspell
A pure Python spell checker utilizing spylls, a port of Hunspell.
:See Also:
* \
https://github.com/dvwright/phunspell
"""
from typing import List
import phunspell
pspell = phunspell.Phunspell("th_TH")
def spell(text: str) -> List[str]:
return list(pspell.suggest(text))
def correct(text: str) -> str:
return list(pspell.suggest(text))[0]
|