-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_config.py
68 lines (68 loc) · 1.53 KB
/
sample_config.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
58
59
60
61
62
63
64
65
66
67
68
TEAMS = ["Gelsenkirchen Devils","Mülheim Shamrocks Damen"]
LEAGUE_IDS=[
{
"id":530,
"name":"Verbandsliga_West"
},{
"id":552,
"name":"U13_NRW-LIGA_Westfalen"
},{
"id":535,
"name": "Damenbundesliga_2-West"
},{
"id":549,
"name": "U16_NRW-Liga_Mitte"
}]
TEAM_COMMENTS = {
"DEFAULT": {
"Info": "default",
"Eintritt": "",
"Bratwurst": "",
"Bier": "",
"Stuhl": "ja",
"Trommeln": "ja"
},
"Gelsenkirchen Devils": {
'Stadion': 'Fürstenbergstadion, Gelsenkirchen',
"Eintritt": 'umsonst',
"Bratwurst": "Gut",
"Bier": "Stauder",
"Stuhl": "nein",
"Trommeln": "ja"
},
"Münster Blackhawks": {
"Eintritt": "",
"Bratwurst": "Gut",
"Bier": "",
"Stuhl": "ja",
"Trommeln": "Ja"
},
"Herne Black Barons": {
"Eintritt": "5€",
"Bratwurst": "Gut",
"Bier": "",
"Stuhl": "kann",
"Trommeln": "nein"
},
"Kevelaer Kings": {
"Eintritt": "",
"Bratwurst": "Schlecht",
"Bier": "",
"Stuhl": "ja",
"Trommeln": "ja"
},
"Wesseling Blackvenom": {
"Eintritt": "umsonst",
"Bratwurst": "Hotdog",
"Bier": "",
"Stuhl": "ja",
"Trommeln": "ja"
},
"Schiefbahn Riders":{
"Eintritt": "3€",
"Bratwurst": "keine",
"Bier": "keines",
"Stuhl": "ja",
"Trommeln": "nein"
},
}