-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb_scrubbing.py
407 lines (310 loc) · 12.5 KB
/
web_scrubbing.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
from bs4 import BeautifulSoup
import requests
import re
from itertools import groupby
def WS_main(subject = 'ECE', visual = False):
# -- use if only searching single subject -- #
# selected_classes = singleSubject(subject)
# -- use if multiple subjects -- #
selected_classes = WS_user2()
if visual:
for c in selected_classes:
print(c)
print()
return selected_classes
def singleSubject(subject = 'ECE'):
classes = grabClasses(subject)
selected_classes = WS_user(classes,subject)
return selected_classes
def grabClasses(subject = 'ECE'):
''' Documentation
function that grabs all the courses from one subject and creates a dictionary structure of all the necessary information in the class
input:
- subject = string in all caps representing the subject abbreviation at Cornell
output:
- classes = dictionary of all the classes and their information. Structured like:
{
Class: {
code:
name:
link:
sections:{
LEC : [
{
number:
instructor:
days:
time:
dates:
open-status:
instr_mode:
}
]
}
},
Class:...
}
'''
print('Fetching Classes...')
text = "https://classes.cornell.edu/browse/roster/FA21/subject/%s" % subject
result = requests.get(text)
src = result.content
soup = BeautifulSoup(src,'lxml')
nodes = list(soup.find_all('div',{'class':'node'}))
# prints to check nodes
# print(len(nodes))
# print(nodes[62])
# print(nodes[1].prettify())
classes = dict()
for node in nodes[1:]:
course = dict()
code = node.find('div', {'class':'title-subjectcode'}).string
course['code'] = code
name_item = node.find('div',{'class':'title-coursedescr'})
name = name_item.find('a').string
link = name_item.find('a').attrs['href']
course['name'] = name
course['link'] = link
classes[code] = course
#SECTIONS:
sections = node.find_all('ul',{'class':'section'})
secs = dict()
for section in sections:
sec = dict()
title = section.attrs['aria-label']
sec_type = re.search('(LEC)|(LAB)|(DIS)|(IND)|(SEM)|(RSC)',title).group()
sec['number'] = re.findall(f'(?={sec_type}).*$',title)[0]
instructor_item = section.find('li',{'class':'instructors'})
instructor = instructor_item.find('span')
if instructor == None:
sec['instructor'] = None
else:
sec['instructor'] = instructor.string
days_item = section.find('span',{'class':'pattern-only'})
days = days_item.find('span').string
if days != None:
sec['days'] = re.findall('[A-Z]',days)
time = section.find('time')
if time == None:
sec['time'] = None
else:
sec['time'] = time.string
dates = section.find('li',{'class':'date-range'})
if dates == None or dates.string == None:
sec['dates'] = None
else:
sec['dates'] = re.findall('(?<=\n )(.*)(?=\n)',dates.string)[0]
open_status_item = section.find('li',{'class':'open-status'})
open_status = open_status_item.find('span').attrs['data-content']
sec['open_status'] = open_status
instruc_item = section.find('li',{'class':'notes'})
instruc_mode = instruc_item.find('span',{'class':'instr-mode'}).string
sec['instr_mode'] = instruc_mode
if days != None:
if sec_type in secs.keys():
secs[sec_type].append(sec)
else:
secs[sec_type] = [sec]
course['sections'] = secs
print('Done')
return classes
# - test of grab classes - #
# classes = grabClasses()
# print(classes)
def WS_user(classes,subject = 'ECE'):
'''
Function that asks the user for which classes they want to schedule together and returns a list of classes(+info)
inputs:
- classes = dictionary all classes from one subject
- subject = string of the subject that 'classes' is from
output:
- selected = list of the classes(+info) that the user asked for [currently only one subject]
'''
user_classes = input('Type course numbers separated by commas: ' )
user_classes = user_classes.replace(' ','')
user_classes = user_classes.split(',')
uclasses = [subject + ' ' + uc for uc in user_classes]
# uclasses = ['CS ' + uc for uc in user_classes]
selected = []
for c in uclasses:
try:
course_sections = classes[c]['sections']
selected.append(classes[c])
# extra prints
# for t,s in course_sections.items():
# print(t)
# print(s)
# print()
except KeyError:
print('Class ', c, ' does not exist. Please rerun.')
break
return selected
def grabClasses2(subject,requested):
''' Documentation
Function that creates a list of all the requested courses from one subject by
grabbing all the courses from one subject, creating a dictionary structure of all the necessary information for each class
input:
- subject = string in all caps representing the subject abbreviation at Cornell
- requested = list of classes from one subject in the form [{subject abreviation}_{course number},...]
output:
- selected = list of all the requested classes (only the section information)
Important:
each class is held as a dictionary structured like:
{
Class: {
code:
name:
link:
sections:{
LEC : [
{
number:
instructor:
days:
time:
dates:
open-status:
instr_mode:
}
]
}
},
Class:...
}
'''
# - access website - #
text = "https://classes.cornell.edu/browse/roster/FA21/subject/%s" % subject
result = requests.get(text)
src = result.content
soup = BeautifulSoup(src,'lxml')
nodes = list(soup.find_all('div',{'class':'node'})) # each node is a class
# prints to check nodes
# print(len(nodes))
# print(nodes[62])
# print(nodes[1].prettify())
# - get all classes(+info) - #
classes = dict()
for node in nodes[1:]:
course = dict()
code = node.find('div', {'class':'title-subjectcode'}).string
course['code'] = code
name_item = node.find('div',{'class':'title-coursedescr'})
name = name_item.find('a').string
link = name_item.find('a').attrs['href']
course['name'] = name
course['link'] = link
classes[code] = course
#SECTIONS:
sections = node.find_all('ul',{'class':'section'})
secs = dict()
for section in sections:
sec = dict()
title = section.attrs['aria-label']
sec_type = re.search('(LEC)|(LAB)|(DIS)|(IND)|(SEM)|(RSC)|(TA)',title).group()
sec['number'] = re.findall(f'(?={sec_type}).*$',title)[0]
instructor_item = section.find('li',{'class':'instructors'})
instructor = instructor_item.find('span')
if instructor == None:
sec['instructor'] = None
else:
sec['instructor'] = instructor.string
days_item = section.find('span',{'class':'pattern-only'})
days = days_item.find('span').string
if days != None:
sec['days'] = re.findall('[A-Z]',days)
time = section.find('time')
if time == None:
sec['time'] = None
else:
sec['time'] = time.string
dates = section.find('li',{'class':'date-range'})
if dates == None or dates.string == None:
sec['dates'] = None
else:
sec['dates'] = re.findall('(?<=\n )(.*)(?=\n)',dates.string)[0]
open_status_item = section.find('li',{'class':'open-status'})
open_status = open_status_item.find('span').attrs['data-content']
sec['open_status'] = open_status
instruc_item = section.find('li',{'class':'notes'})
instruc_mode = instruc_item.find('span',{'class':'instr-mode'}).string
sec['instr_mode'] = instruc_mode
if days != None:
if sec_type in secs.keys():
secs[sec_type].append(sec)
else:
secs[sec_type] = [sec]
course['sections'] = secs
# - get the requested classes - #
selected = []
for c in requested:
try:
course_sections = classes[c]['sections']
selected.append(classes[c])
# extra prints
# for t,s in course_sections.items():
# print(t)
# print(s)
# print()
except KeyError:
print('Class ', c, ' does not exist. Please start again.')
return -1
#
return selected
def WS_user2():
'''
Function that asks the user for which classes they want to schedule together and returns a list of classes(+info)
Updated to be able to take classes from multiple subjects
output:
- selected = list of the classes(+info) that the user asked for [any combination of subjects]
'''
print('\n-------------------------------------------------------------------------')
print('Welcome to the Cornell Course Scheduling Tool!\n\nPlease input course codes of the desired courses in the following format:')
print('\n{subject abreviation}_{course number}\n')
user_classes = input('Type course numbers separated by commas: ' )
user_classes = user_classes.upper()
user_classes = user_classes.split(',')
user_classes = [c.lstrip().rstrip() for c in user_classes]
user_classes.sort()
# print('\n',user_classes,'\n')
# - group by subject - #
grouped_classes = [list(i) for j,i in groupby(user_classes,lambda a: a.split(' ')[0])]
# print('\n',grouped_classes,'\n')
print('\nFetching Classes...')
uclasses = []
for sub_courses in grouped_classes:
subject = sub_courses[0].split(' ')[0]
subject_classes = grabClasses2(subject,sub_courses)
if subject_classes == -1:
return -1
uclasses.extend(subject_classes)
print('Done')
return uclasses
def WS_user2_noText(user_classes):
'''
Function that asks the user for which classes they want to schedule together and returns a list of classes(+info)
Updated to be able to take classes from multiple subjects
input:
- user_classes = string containing the user input in format ' {subject abreviation}_{course number}, ...'
output:
- selected = list of the classes(+info) that the user asked for [any combination of subjects]
'''
user_classes = user_classes.upper()
user_classes = user_classes.split(',')
user_classes = [c.lstrip().rstrip() for c in user_classes]
user_classes.sort()
# print('\n',user_classes,'\n')
# - group by subject - #
grouped_classes = [list(i) for j,i in groupby(user_classes,lambda a: a.split(' ')[0])]
# print('\n',grouped_classes,'\n')
print('\nFetching Classes...')
uclasses = []
for sub_courses in grouped_classes:
subject = sub_courses[0].split(' ')[0]
subject_classes = grabClasses2(subject,sub_courses)
if subject_classes == -1:
return -1
uclasses.extend(subject_classes)
print('Done')
return uclasses
# WS_main()
# WS_user2()