18 lines
429 B
Python
18 lines
429 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from nw.tools.analyse import TextAnalysis
|
|
from nw.tools.optlaststate import OptLastState
|
|
from nw.tools.spellcheck import NWSpellCheck
|
|
from nw.tools.spellenchant import NWSpellEnchant
|
|
from nw.tools.translate import numberToWord
|
|
from nw.tools.wordcount import countWords
|
|
|
|
__all__ = [
|
|
"TextAnalysis",
|
|
"OptLastState",
|
|
"NWSpellCheck",
|
|
"NWSpellEnchant",
|
|
"numberToWord",
|
|
"countWords",
|
|
]
|