-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
45 lines (44 loc) · 1.03 KB
/
config.py
File metadata and controls
45 lines (44 loc) · 1.03 KB
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
url = "https://jhu.instructure.com/api/v1/courses/"
courses = {
"EN.500.109 What is Engineering?": {
'sections': [1, 2, 3, 4, 5, 6, 11, 12, 21, 22, 23, 24, 25],
'ids': {
1: '13312',
2: '13313',
3: '13314',
4: '13315',
5: '13316',
6: '13317',
11: '13322',
12: '13323',
21: '13332',
22: '13333',
23: '13334',
24: '13335',
25: '13336',
}
},
"EN.500.130 Biomedical Engineering Innovation": {
'sections': [1, 2, 3, 4, 5],
'ids': {
1: '13232',
2: '13233',
3: '13234',
4: '13235',
5: '13236',
}
},
"CO.EN.BMEI.100 Teacher Training": {
'sections': [1],
'ids': {
1: '13697',
}
},
"CO.EN.EEI.100 Teacher Training": {
'sections': [1],
'ids': {
1: '13698',
}
},
}
course_names = courses.keys()