AIdeaText commited on
Commit
1d19c00
·
verified ·
1 Parent(s): 158372b

Update modules/morphosyntax/__init__.py

Browse files
Files changed (1) hide show
  1. modules/morphosyntax/__init__.py +22 -1
modules/morphosyntax/__init__.py CHANGED
@@ -1 +1,22 @@
1
- # modules/morphosyntax/__init__.py
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Copy# modules/morphosyntax/__init__.py
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
+ ]