-
Notifications
You must be signed in to change notification settings - Fork 21
/
semester_constants.py
39 lines (36 loc) · 1.29 KB
/
semester_constants.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
FRESHER_YEAR = '24' # Starting 2 digits of this users freshers roll number
SEM_SESSION = 'July-Nov' # Session of semester
SEM_YEAR = '2024' # Year of the session
# Mid sem and End sem timings according to slots
MID_TIMINGS = {
"A": "2024-09-15T09:00:00.000Z",
"A1": "2024-09-15T14:00:00.000Z",
"B": "2024-09-17T09:00:00.000Z",
"B1": "2024-09-17T14:00:00.000Z",
"C": "2024-09-18T09:00:00.000Z",
"C1": "2024-09-18T14:00:00.000Z",
"D": "2024-09-19T09:00:00.000Z",
"D1": "2024-09-19T14:00:00.000Z",
"E": "2024-09-20T09:00:00.000Z",
"E1": "2024-09-20T14:00:00.000Z",
"F": "2024-09-21T09:00:00.000Z",
"F1": "2024-09-21T14:00:00.000Z",
"G": "2024-09-22T09:00:00.000Z",
"G1": "2024-09-22T14:00:00.000Z"
}
END_TIMINGS = {
"A": "2024-11-17T09:00:00.000Z",
"A1": "2024-11-17T14:00:00.000Z",
"B": "2024-11-18T09:00:00.000Z",
"B1": "2024-11-18T14:00:00.000Z",
"C": "2024-11-19T09:00:00.000Z",
"C1": "2024-11-19T14:00:00.000Z",
"D": "2024-11-20T09:00:00.000Z",
"D1": "2024-11-20T14:00:00.000Z",
"E": "2024-11-21T09:00:00.000Z",
"E1": "2024-11-21T14:00:00.000Z",
"F": "2024-11-22T09:00:00.000Z",
"F1": "2024-11-22T14:00:00.000Z",
"G": "2024-11-23T09:00:00.000Z",
"G1": "2024-11-23T14:00:00.000Z"
}