mirror of https://github.com/stijndcl/didier
Compare commits
2 Commits
b26eeb3fc8
...
570c1e4d1b
| Author | SHA1 | Date |
|---|---|---|
|
|
570c1e4d1b | |
|
|
96cf11dcaf |
|
|
@ -143,6 +143,8 @@ class Schedule:
|
|||
weekday_str: str = field(init=False)
|
||||
|
||||
def __post_init__(self):
|
||||
self.day = self.day.replace(hour=2, minute=0, second=0, microsecond=0)
|
||||
|
||||
self.schedule_dict: Dict = self.load_schedule_file()
|
||||
self.start_date = fromArray(self.schedule_dict["semester_start"])
|
||||
self.end_date = fromArray(self.schedule_dict["semester_end"])
|
||||
|
|
|
|||
|
|
@ -23,6 +23,11 @@
|
|||
"course": "Modelleren en Simuleren",
|
||||
"slots": [
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Sterre",
|
||||
"building": "S9",
|
||||
|
|
@ -42,6 +47,9 @@
|
|||
"building": "S9",
|
||||
"room": "A2"
|
||||
}
|
||||
},
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
|
|
@ -56,6 +64,11 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Sterre",
|
||||
"building": "S9",
|
||||
|
|
@ -76,6 +89,11 @@
|
|||
},
|
||||
"slots": [
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Ardoyen",
|
||||
"building": "iGent 126",
|
||||
|
|
@ -111,6 +129,11 @@
|
|||
"course": "Inleiding tot Telecommunicatie",
|
||||
"slots": [
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Ardoyen",
|
||||
"building": "iGent 125",
|
||||
|
|
@ -126,6 +149,9 @@
|
|||
"weeks": {
|
||||
"1": {
|
||||
"canceled": true
|
||||
},
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
|
|
@ -145,6 +171,11 @@
|
|||
"course": "Wiskundige Modellering",
|
||||
"slots": [
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Sterre",
|
||||
"building": "S9",
|
||||
|
|
@ -157,6 +188,11 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Sterre",
|
||||
"building": "S8",
|
||||
|
|
@ -169,6 +205,11 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Sterre",
|
||||
"building": "S8",
|
||||
|
|
@ -198,6 +239,11 @@
|
|||
},
|
||||
"slots": [
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Sterre",
|
||||
"building": "S9",
|
||||
|
|
@ -210,6 +256,11 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Sterre",
|
||||
"building": "S9",
|
||||
|
|
@ -222,6 +273,11 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Sterre",
|
||||
"building": "S9",
|
||||
|
|
@ -242,6 +298,11 @@
|
|||
},
|
||||
"slots": [
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Sterre",
|
||||
"building": "S8",
|
||||
|
|
@ -254,6 +315,11 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"weeks": {
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
"campus": "Sterre",
|
||||
"building": "S9",
|
||||
|
|
@ -269,6 +335,9 @@
|
|||
"weeks": {
|
||||
"4": {
|
||||
"canceled": true
|
||||
},
|
||||
"6": {
|
||||
"canceled": true
|
||||
}
|
||||
},
|
||||
"location": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue