-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprereq-parse.py
87 lines (71 loc) · 2.19 KB
/
prereq-parse.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import json
import re
prereqs = {}
with open('prereqs.json') as f:
prereqs = json.loads(f.read().replace('\'', '"'))
def invert(prereqs: dict[str, list[str]]) -> dict[str, list[str]]:
'''
Invert dictionary so you map courses to courses they can be prereqs.
>>> invert({'CSC263H5': ['CSC236H5', '(STA256H5 or STA107H5)']})
{('CSC236H5', 'ORSTA256STA107'): ['CSC263H5]}
'''
inverted = {}
course_set = set()
for key, courses in prereqs.items():
course_key = []
for course in courses:
p = r'(\w{3,}\d{3,}(H|Y)5)'
matches = re.findall(p, course)
matches = [match[0] for match in matches]
course_set.update(matches + [key])
if len(matches) <= 1:
course_key.extend(matches)
else:
course = 'OR_{}'.format('/'.join(matches))
course_key.append(course)
inverted.setdefault(tuple(sorted(course_key)), []).append(key)
return inverted, course_set
new_dict = {}
inverted = invert(prereqs)
actual = {}
for courses, lst in inverted[0].items():
if len(courses) == 0:
lst = ['CSC108H5']
if len(courses) == 1:
actual.setdefault(courses[0], []).extend(lst)
continue
and_str = 'and_{}'.format('-'.join(courses))
for course in courses:
actual.setdefault(course, []).append(and_str)
actual[and_str] = lst
keys = list(actual.keys())
for key in keys:
if key.startswith('OR'):
courses = key[3:].split('/')
for course in courses:
actual.setdefault(course, []).append(key)
mappings = []
courses = []
def get_child(name: str, actual: dict) -> dict:
d = {}
identity = name
if name.startswith('and'):
name = 'and'
if name.startswith('OR'):
name = 'or'
d['name'] = name
d['id'] = identity
for child in actual.get(identity, []):
d.setdefault('children', []).append(get_child(child, actual))
return d
print(get_child('and_', actual))
#print(mappings)
'''
children: [
{
name: 'MAT135H5',
children: [{name: 'STA256H5'}]
},
{
name: 'CSC108H5',
children: ['''