23
23
This module provides functions for tutorial and worksheet computations.
26
28
from storm.locals import And, Asc, Desc, Store
30
32
from ivle.database import ExerciseAttempt, ExerciseSave, Worksheet, \
31
33
WorksheetExercise, Exercise
33
36
__all__ = ['ExerciseNotFound', 'get_exercise_status',
34
37
'get_exercise_stored_text', 'get_exercise_attempts',
38
41
class ExerciseNotFound(Exception):