-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstudentsinclass.py
57 lines (41 loc) · 1.61 KB
/
studentsinclass.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
from neubanner import banner
import pprint
##############################################################################
##############################################################################
if banner.login():
banner.termset('202110')
codes = None
# X's instructor code
def find_instructor(iname):
global codes
if codes is None:
codes = banner.searchcodes()
iname = iname.lower()
for icode,instr in codes['sel_instr'].items():
if iname in instr.lower():
return icode
def csvout(*args):
return ",".join(['"{}"'.format(a) for a in args])
pp = pprint.PrettyPrinter(indent=4)
# known crn
sections = [ {'crn':'19399', 'section':'10'} ]
# find by course
# sections = banner.sectionsearch(coursenum='2500', subject=['CS'])
# find by instructor
# sections = banner.sectionsearch(instructor=[find_instructor('Derbinsky')], subject=['%', '%'])
# pp.pprint(sections)
for section in sections:
banner.crnset(section['crn'])
for student in banner.summaryclasslist():
# no e-mail (fast!)
print(csvout(section["section"], student["name_lastfirst"], student["nuid"], "Withdraw" not in student["regstatus"]))
# with e-mail (per-student request)
# banner.idset(student["xyz"])
# print(csvout(section["section"], student["name_lastfirst"], student["nuid"], banner.studentemail()))
# with address (per-student request)
# banner.idset(student["xyz"])
# addresses = banner.studenttaddresses()
# a = addresses['local'] if 'local' in addresses else addresses['permanent']
# print(csvout(section["section"], student["name_lastfirst"], student["nuid"], a))
else:
print("Login Error!")