-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
49 lines (44 loc) · 816 Bytes
/
constants.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
genders: dict[str, str] = {
"m": "male",
"f": "female",
"r": "all"
}
ages: dict[str, str] = {
"1": "12-18",
"2": "19-25",
"3": "26-35",
"4": "35-50",
"5": "50",
"r": "all"
}
ethnicities: dict[str, str] = {
"a": "asian",
"b": "black",
"w": "white",
"i": "indian",
"m": "middle_eastern",
"l": "latino_hispanic",
"r": "all"
}
genders_friendly: dict[str, str] = {
"m": "Male",
"f": "Female",
"r": "Random"
}
ages_friendly: dict[str, str] = {
"1": "12-18",
"2": "19-25",
"3": "26-35",
"4": "35-50",
"5": "50+",
"r": "Random"
}
ethnicities_friendly: dict[str, str] = {
"a": "Asian",
"b": "Black",
"w": "White",
"i": "Indian",
"m": "Middle Eastern",
"l": "Latino Hispanic",
"r": "Random"
}