-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.py
65 lines (50 loc) · 1.91 KB
/
models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from random import shuffle
"""
Objects parsed out from .dumpy files.
"""
class Metadata:
def __init__(self, description, shuffle_answers=False, shuffle_questions_by_weight=False):
self.description = description
self.shuffle_answers = shuffle_answers
self.shuffle_questions_by_weight = shuffle_questions_by_weight
class Question:
def __init__(self, text, answers, postmortem, attempted_count, correct_count, enabled, question_id=None):
self.question_id = int(question_id) if question_id else None
self.text = str(text)
self.answers = answers
self.postmortem = str(postmortem) if postmortem else None
self.attempted_count = attempted_count
self.correct_count = correct_count
self.enabled = enabled
@property
def correct_answers(self):
return [a for a in self.answers if a.is_correct]
@property
def correct_answer_ids(self):
return [a.answer_id for a in self.answers if a.is_correct]
def assign_letters_to_answers(self):
for i in range(len(self.answers)):
self.answers[i].letter = chr(i + 65)
def shuffle_answers(self):
shuffle(self.answers)
class Answer:
def __init__(self, text, letter=None, is_correct=False, answer_id=None, question_id=None):
self.text = str(text)
self.letter = str(letter) if letter else None
if is_correct is not None:
if is_correct is True or is_correct == "True":
self.is_correct = True
else:
self.is_correct = False
self.answer_id = int(answer_id) if answer_id else None
self.question_id = int(question_id) if question_id else None
class TerminalColors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKCYAN = '\033[96m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'