22 lines
567 B
Python
22 lines
567 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from nw.tools.analyse import TextAnalysis
|
|
from nw.tools.legacy import projectMaintenance
|
|
from nw.tools.optionstate import OptionState
|
|
from nw.tools.spellcheck import NWSpellCheck
|
|
from nw.tools.spellenchant import NWSpellEnchant
|
|
from nw.tools.spellsimple import NWSpellSimple
|
|
from nw.tools.translate import numberToWord
|
|
from nw.tools.wordcount import countWords
|
|
|
|
__all__ = [
|
|
"TextAnalysis",
|
|
"projectMaintenance",
|
|
"OptionState",
|
|
"NWSpellCheck",
|
|
"NWSpellEnchant",
|
|
"NWSpellSimple",
|
|
"numberToWord",
|
|
"countWords",
|
|
]
|