This repository has been archived by the owner on May 29, 2024. It is now read-only.
forked from akelch11/MealMatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbig_lists.py
42 lines (38 loc) · 1.72 KB
/
big_lists.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
"""List of large size that we've moved to an external file."""
dhall_list = sorted(["CJL", "Forbes", "NCW", "RoMa", "Whitman", "Yeh"])
mjr = ['African American Studies', 'Anthropology', 'Architecture',
'Art and Archaeology', 'Astrophysical Sciences',
'Chemical and Biological Engineering', 'Chemistry',
'Civil and Environmental Engineering', 'Classics',
'Comparative Literature', 'Computer Science',
'East Asian Studies', 'Ecology and Evolutionary Biology',
'Economics', 'Electrical and Computer Engineering',
'English', 'French and Italian', 'Geosciences',
'German', 'History', 'Mathematics',
'Mechanical and Aerospace Engineering',
'Molecular Biology', 'Music',
'Near Eastern Studies', 'Neuroscience',
'Operations Research and Financial Engineering',
'Philosophy', 'Physics', 'Politics',
'Psychology', 'Religion',
'School of Public and International Affairs',
'Slavic Languages and Literatures',
'Sociology', 'Spanish and Portuguese',
'Atmospheric and Oceanic Sciences',
'Applied and Computational Mathematics',
'Musicology', 'Music Composition',
'Population Studies', 'Plasma Physics',
'Quantitative and Computational Biology',
'History of Science', 'Independent Study', 'Other']
dc = [
'AAS', 'ANT', 'ARC', 'ART', 'AST', 'CBE',
'CHM', 'CEE', 'CLA', 'COM', 'COS',
'EAS', 'EEB', 'ECO', 'ECE', 'ENG',
'FRE/ITA', 'GEO', 'GER', 'HIS', 'MAT', 'MAE',
'MOL', 'MUS', 'NES', 'NEU', 'ORFE',
'PHI', 'PHY', 'POL', 'PSY', 'REL',
'SPIA', 'SLA', 'SOC', 'SPA/POR',
'AOS', 'ACM', 'MUS', 'MUS',
'POP', 'PHY', 'QCB', 'HOS']
majors = sorted(mjr)
dept_code = dict(zip(mjr, dc))