Update modules/morphosyntax/morphosyntax_interface.py
Browse files
modules/morphosyntax/morphosyntax_interface.py
CHANGED
@@ -24,8 +24,17 @@ from .morphosyntax_process import (
|
|
24 |
)
|
25 |
|
26 |
from ..utils.widget_utils import generate_unique_key
|
|
|
27 |
from ..database.morphosintax_mongo_db import store_student_morphosyntax_result
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
import logging
|
31 |
logger = logging.getLogger(__name__)
|
|
|
24 |
)
|
25 |
|
26 |
from ..utils.widget_utils import generate_unique_key
|
27 |
+
|
28 |
from ..database.morphosintax_mongo_db import store_student_morphosyntax_result
|
29 |
+
|
30 |
+
from ..database.morphosyntax_iterative_mongo_db import (
|
31 |
+
store_student_morphosyntax_base,
|
32 |
+
store_student_morphosyntax_iteration,
|
33 |
+
get_student_morphosyntax_analysis,
|
34 |
+
update_student_morphosyntax_analysis,
|
35 |
+
delete_student_morphosyntax_analysis,
|
36 |
+
get_student_morphosyntax_data
|
37 |
+
)
|
38 |
|
39 |
import logging
|
40 |
logger = logging.getLogger(__name__)
|