v4 / modules /morphosyntax /__init__.py
AIdeaText's picture
Update modules/morphosyntax/__init__.py
718404d verified
raw
history blame
573 Bytes
# modules/morphosyntax/__init__.py
from .morphosyntax_process import (
process_morphosyntactic_input,
format_analysis_results,
perform_advanced_morphosyntactic_analysis,
get_repeated_words_colors,
highlight_repeated_words,
generate_arc_diagram,
POS_COLORS,
POS_TRANSLATIONS
)
__all__ = [
'process_morphosyntactic_input',
'format_analysis_results',
'perform_advanced_morphosyntactic_analysis',
'get_repeated_words_colors',
'highlight_repeated_words',
'generate_arc_diagram',
'POS_COLORS',
'POS_TRANSLATIONS'
]