-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlookups.py
16 lines (11 loc) · 1012 Bytes
/
lookups.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
aba_ratings_lookup = {
"ewq": "Exceptionally Well Qualified",
"wq": "Well Qualified",
"q": "Qualified",
"nq": "Not Qualified",
"nqa": "Not Qualified By Reason of Age"
}
degrees_lookup = {'ba': "Bachelor's ", 'ma': "Master's ", 'jd': 'Juris Doctor ', 'llm': 'Master of Laws ', 'llb': 'Bachelor of Laws ', 'jsd': 'Doctor of Law ', 'phd': 'Doctor of Philosophy ', 'aa': 'Associate ', 'md': 'Medical Degree ', 'mba': 'Master of Business Administration ', 'cfa': 'Accounting Certification ', 'cert': 'Certificate '}
race_lookup = {'w': 'White', 'b': 'Black or African American', 'i': 'American Indian or Alaska Native', 'a': 'Asian', 'p': 'Native Hawaiian or Other Pacific Islander', 'h': 'Hispanic/Latino'}
political_source_lookup = {'b': 'Ballot', 'a': 'Appointer', 'o': 'Other'}
political_party_lookup = {'d': 'Democratic', 'r': 'Republican', 'i': 'Independent', 'g': 'Green', 'l': 'Libertarian', 'f': 'Federalist', 'w': 'Whig', 'j': 'Jeffersonian Republican', 'u': 'National Union'}