Update modules/ui.py
Browse files- modules/ui.py +4 -0
modules/ui.py
CHANGED
|
@@ -1,7 +1,11 @@
|
|
| 1 |
# modules/ui.py
|
|
|
|
| 2 |
import streamlit as st
|
| 3 |
from spacy import displacy
|
| 4 |
import re
|
|
|
|
|
|
|
|
|
|
| 5 |
from .database import get_student_data, store_analysis_result
|
| 6 |
from .morpho_analysis import get_repeated_words_colors, highlight_repeated_words, POS_COLORS, POS_TRANSLATIONS
|
| 7 |
from .syntax_analysis import visualize_syntax
|
|
|
|
| 1 |
# modules/ui.py
|
| 2 |
+
# Importaciones estandar de python
|
| 3 |
import streamlit as st
|
| 4 |
from spacy import displacy
|
| 5 |
import re
|
| 6 |
+
|
| 7 |
+
# Importaciones locales
|
| 8 |
+
from .auth import authenticate_user, register_user, get_user_role
|
| 9 |
from .database import get_student_data, store_analysis_result
|
| 10 |
from .morpho_analysis import get_repeated_words_colors, highlight_repeated_words, POS_COLORS, POS_TRANSLATIONS
|
| 11 |
from .syntax_analysis import visualize_syntax
|