1
0
Fork 0
mirror of https://github.com/Findus23/cr-search.git synced 2024-09-19 15:23:44 +02:00
cr-search/data.py

74 lines
1.6 KiB
Python
Raw Normal View History

colors_c1 = {
"Travis": "#7592a4",
"Marisha": "#bd6b1e",
"Taliesin": "#3c487d",
"Ashley": "#fdd9be",
"Sam": "#781485",
"Liam": "#3d7580",
"Laura": "#28607d",
"Orion": "#933326"
}
2020-04-15 18:14:47 +02:00
colors_c2 = {
"Laura": "#59c3f9",
"Marisha": "#00146e",
"Liam": "#fe8413",
"Taliesin": "#be1c0d",
"Ashley": "#868984",
"Sam": "#dae1dd",
"Travis": "#076708",
"Matt": "#005d73", # random color
"Khary": "#bcc9e3"
2020-04-15 18:14:47 +02:00
}
single_speaker = {
"Handbooker Helper": {
1: "Matt",
2: "Marisha",
3: "Matt",
4: "Rachel Seeley",
5: "Dani Carr",
6: "Bryan Forrest",
7: "Bryan Forrest",
8: "Liam",
9: "Dani Carr",
10: "Marisha",
11: "Matt",
12: "Sumalee Montano",
13: "Laura",
14: "Bryan Forrest",
15: "Bryan Forrest",
16: "Krystina Arielle",
17: "Dani Carr",
18: "Matt",
19: "Marisha",
20: "Taliesin",
21: "Dani Carr",
22: "Ashley",
23: "Caleb",
24: "Laura",
25: "Travis",
26: "Ashley",
27: "Taliesin",
28: "Marisha",
29: "Sam",
30: "Chris Lockey",
31: "Brian W. Foster",
32: "Mary Elizabeth McGlynn",
33: "Liam",
34: "Marisha",
35: "Taliesin",
36: "Will Friedle",
37: "Satine Phoenix",
38: "Liam",
39: "Chris Lockey",
40: "Sam",
41: "Laura Bailey",
42: "Travis",
43: "Matt",
44: "Matt",
}
}
assert set(single_speaker["Handbooker Helper"].keys()) == set(range(1, 44 + 1))