-
Notifications
You must be signed in to change notification settings - Fork 0
/
configfraz.py
59 lines (55 loc) · 1.06 KB
/
configfraz.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
days = ["Mon","Tue","Wed","Thu","Fri","Sat","Sun"]
times = {
2: "8:00",
3: "8:30",
4: "9:00",
5: "9:30",
6: "10:00",
7: "10:30",
8: "11:00",
9: "11:30",
10: "12:00",
11: "12:30",
12: "13:00",
13: "13:30",
14: "14:00",
15: "14:30",
16: "15:00",
17: "15:30",
18: "16:00",
19: "16:30",
20: "17:00",
21: "17:30",
}
timechecks = ['8:00', '8:30', '9:00', '9:30', '10:00', '10:30', '11:00', '11:30', '12:00', '12:30', '13:00', '13:30', '14:00', '14:30', '15:00', '15:30', '16:00', '16:30', '17:00', '17:30']
timed = {
'8:00' : [],
'8:30' : [],
'9:00' : [],
'9:30' : [],
'10:00' : [],
'10:30' : [],
'11:00' : [],
'11:30' : [],
'12:00' : [],
'12:30' : [],
'13:00' : [],
'13:30' : [],
'14:00' : [],
'14:30' : [],
'15:00' : [],
'15:30' : [],
'16:00' : [],
'16:30' : [],
'17:00' : [],
'17:30' : [],
}
data = {
"Mon": timed,
"Tue": timed,
"Wed": timed,
"Thu": timed,
"Fri": timed,
"Sat": timed,
"Sun": timed
}