AIdeaText commited on
Commit
e250edc
1 Parent(s): 395d726

Update modules/text_analysis/__init__.py

Browse files
Files changed (1) hide show
  1. modules/text_analysis/__init__.py +24 -0
modules/text_analysis/__init__.py CHANGED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # modules/text_analysis/__init__.py
2
+ from .morpho_analysis import (
3
+ perform_advanced_morphosyntactic_analysis,
4
+ get_repeated_words_colors,
5
+ highlight_repeated_words,
6
+ generate_arc_diagram,
7
+ get_detailed_pos_analysis,
8
+ get_morphological_analysis,
9
+ get_sentence_structure_analysis,
10
+ POS_COLORS,
11
+ POS_TRANSLATIONS
12
+ )
13
+
14
+ __all__ = [
15
+ 'perform_advanced_morphosyntactic_analysis',
16
+ 'get_repeated_words_colors',
17
+ 'highlight_repeated_words',
18
+ 'generate_arc_diagram',
19
+ 'get_detailed_pos_analysis',
20
+ 'get_morphological_analysis',
21
+ 'get_sentence_structure_analysis',
22
+ 'POS_COLORS',
23
+ 'POS_TRANSLATIONS'
24
+ ]