Update modules/morphosyntax/__init__.py
Browse files
modules/morphosyntax/__init__.py
CHANGED
@@ -1,22 +1,27 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
2 |
from .morphosyntax_process import (
|
3 |
-
process_morphosyntactic_input,
|
4 |
format_analysis_results,
|
5 |
perform_advanced_morphosyntactic_analysis,
|
6 |
get_repeated_words_colors,
|
7 |
highlight_repeated_words,
|
8 |
-
generate_arc_diagram,
|
9 |
POS_COLORS,
|
10 |
POS_TRANSLATIONS
|
11 |
)
|
12 |
|
13 |
__all__ = [
|
|
|
|
|
14 |
'process_morphosyntactic_input',
|
15 |
'format_analysis_results',
|
16 |
'perform_advanced_morphosyntactic_analysis',
|
17 |
'get_repeated_words_colors',
|
18 |
'highlight_repeated_words',
|
19 |
-
'generate_arc_diagram',
|
20 |
'POS_COLORS',
|
21 |
'POS_TRANSLATIONS'
|
22 |
-
]
|
|
|
|
1 |
+
from .morphosyntax_interface import (
|
2 |
+
display_morphosyntax_interface,
|
3 |
+
display_morphosyntax_results
|
4 |
+
)
|
5 |
+
|
6 |
from .morphosyntax_process import (
|
7 |
+
process_morphosyntactic_input,
|
8 |
format_analysis_results,
|
9 |
perform_advanced_morphosyntactic_analysis,
|
10 |
get_repeated_words_colors,
|
11 |
highlight_repeated_words,
|
|
|
12 |
POS_COLORS,
|
13 |
POS_TRANSLATIONS
|
14 |
)
|
15 |
|
16 |
__all__ = [
|
17 |
+
'display_morphosyntax_interface',
|
18 |
+
'display_morphosyntax_results',
|
19 |
'process_morphosyntactic_input',
|
20 |
'format_analysis_results',
|
21 |
'perform_advanced_morphosyntactic_analysis',
|
22 |
'get_repeated_words_colors',
|
23 |
'highlight_repeated_words',
|
|
|
24 |
'POS_COLORS',
|
25 |
'POS_TRANSLATIONS'
|
26 |
+
]
|
27 |
+
|