File size: 973 Bytes
995ef83
 
 
 
685c43d
995ef83
 
 
 
 
 
 
6569ee6
 
995ef83
6569ee6
995ef83
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# modules/__init__.py

from .auth import authenticate_user, register_user, get_user_role
from .database import initialize_mongodb_connection, get_student_data, store_analysis_result
from .ui import login_register_page, login_form, register_form, display_chat_interface, display_student_progress, display_text_analysis_interface
from .morpho_analysis import get_repeated_words_colors, highlight_repeated_words, POS_COLORS, POS_TRANSLATIONS
from .syntax_analysis import visualize_syntax
from .spacy_utils import load_spacy_models

__all__ = [
    'authenticate_user', 'register_user', 'get_user_role',
    'initialize_mongodb_connection', 'get_student_data', 'store_analysis_result',
    'login_register_page', 'login_form', 'register_form', 'display_chat_interface',
    'display_student_progress', 'display_text_analysis_interface',
    'get_repeated_words_colors', 'highlight_repeated_words', 'POS_COLORS', 'POS_TRANSLATIONS',
    'visualize_syntax', 'load_spacy_models'
]