File size: 643 Bytes
e250edc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# modules/text_analysis/__init__.py
from .morpho_analysis import (
perform_advanced_morphosyntactic_analysis,
get_repeated_words_colors,
highlight_repeated_words,
generate_arc_diagram,
get_detailed_pos_analysis,
get_morphological_analysis,
get_sentence_structure_analysis,
POS_COLORS,
POS_TRANSLATIONS
)
__all__ = [
'perform_advanced_morphosyntactic_analysis',
'get_repeated_words_colors',
'highlight_repeated_words',
'generate_arc_diagram',
'get_detailed_pos_analysis',
'get_morphological_analysis',
'get_sentence_structure_analysis',
'POS_COLORS',
'POS_TRANSLATIONS'
] |