Spaces:
Sleeping
Sleeping
Update utils/enrollment.py
Browse files- Use grade (Union[str, Grade])
- utils/enrollment.py +44 -44
utils/enrollment.py
CHANGED
@@ -1,44 +1,44 @@
|
|
1 |
-
from typing import Optional
|
2 |
-
from utils.enums.grade import Grade
|
3 |
-
|
4 |
-
from .student import Student
|
5 |
-
|
6 |
-
from sqlmodel import SQLModel, Field, Relationship
|
7 |
-
|
8 |
-
|
9 |
-
class Enrollment(SQLModel, table=True):
|
10 |
-
"""
|
11 |
-
Represents an Enrollment, including the student, the course they are enrolled in, and the assigned grade.
|
12 |
-
|
13 |
-
Attributes:
|
14 |
-
id: (int): The enrollment ID
|
15 |
-
student_id (str): The ID of the student who is enrolled in the course.
|
16 |
-
course_id (str): The ID of the course in which the student is enrolled.
|
17 |
-
grade (Grade): The grade assigned to the student for the course. Default if NO_GRADE with enum value of None if no grade has been assigned yet.
|
18 |
-
"""
|
19 |
-
|
20 |
-
id: int = Field(primary_key=True)
|
21 |
-
student_id: str = Field(foreign_key="student.id")
|
22 |
-
course_id: str = Field(foreign_key="course.id")
|
23 |
-
grade: Grade = Field(
|
24 |
-
|
25 |
-
course: "Course" = Relationship(
|
26 |
-
back_populates="enrollments")
|
27 |
-
|
28 |
-
def assign_grade(self, grade: Grade) -> None:
|
29 |
-
"""
|
30 |
-
Assigns a grade to the student for the course.
|
31 |
-
|
32 |
-
Args:
|
33 |
-
grade (Grade): The grade to assign to the student.
|
34 |
-
"""
|
35 |
-
self.grade = grade
|
36 |
-
|
37 |
-
def __str__(self) -> str:
|
38 |
-
"""
|
39 |
-
Returns a string representation of the Enrollment.
|
40 |
-
|
41 |
-
Returns:
|
42 |
-
str: A description of the enrollment including the student id_number, course_id, and grade.
|
43 |
-
"""
|
44 |
-
return f"Enrollment(student id: {self.student_id}, course: {self.course_id}, grade: {self.grade.value})"
|
|
|
1 |
+
from typing import Optional
|
2 |
+
from utils.enums.grade import Grade
|
3 |
+
|
4 |
+
from .student import Student
|
5 |
+
|
6 |
+
from sqlmodel import SQLModel, Field, Relationship
|
7 |
+
|
8 |
+
|
9 |
+
class Enrollment(SQLModel, table=True):
|
10 |
+
"""
|
11 |
+
Represents an Enrollment, including the student, the course they are enrolled in, and the assigned grade.
|
12 |
+
|
13 |
+
Attributes:
|
14 |
+
id: (int): The enrollment ID
|
15 |
+
student_id (str): The ID of the student who is enrolled in the course.
|
16 |
+
course_id (str): The ID of the course in which the student is enrolled.
|
17 |
+
grade (Union[str, Grade]): The grade assigned to the student for the course. Default if NO_GRADE with enum value of None if no grade has been assigned yet.
|
18 |
+
"""
|
19 |
+
|
20 |
+
id: int = Field(primary_key=True)
|
21 |
+
student_id: str = Field(foreign_key="student.id")
|
22 |
+
course_id: str = Field(foreign_key="course.id")
|
23 |
+
grade: Union[str, Grade] = Field(default=Grade.A_PLUS)
|
24 |
+
|
25 |
+
course: "Course" = Relationship(
|
26 |
+
back_populates="enrollments")
|
27 |
+
|
28 |
+
def assign_grade(self, grade: Grade) -> None:
|
29 |
+
"""
|
30 |
+
Assigns a grade to the student for the course.
|
31 |
+
|
32 |
+
Args:
|
33 |
+
grade (Grade): The grade to assign to the student.
|
34 |
+
"""
|
35 |
+
self.grade = grade
|
36 |
+
|
37 |
+
def __str__(self) -> str:
|
38 |
+
"""
|
39 |
+
Returns a string representation of the Enrollment.
|
40 |
+
|
41 |
+
Returns:
|
42 |
+
str: A description of the enrollment including the student id_number, course_id, and grade.
|
43 |
+
"""
|
44 |
+
return f"Enrollment(student id: {self.student_id}, course: {self.course_id}, grade: {self.grade.value})"
|