-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeta.py
More file actions
281 lines (276 loc) · 7.85 KB
/
meta.py
File metadata and controls
281 lines (276 loc) · 7.85 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
def TeamInfo(team:str,info:str):
if team == "ALL":
keys = infoDict['TEAMS'].keys()
if info == "CODES":
values = [infoDict['TEAMS'][k]['index'] for k in keys]
return dict(zip(values,keys))
elif info == "":
return list(keys)
else:
values = [infoDict['TEAMS'][k][info] for k in keys]
return dict(zip(keys,values))
else:
return infoDict['TEAMS'][team][info]
def LeagueInfo(org:str):
return list(dict.fromkeys([infoDict[org][key]['name'] for key in infoDict[org]]))
# def MLBIndex(name):
# if name in indexDict:
# return indexDict[name]
# elif name in indexDict['TEAMS']:
# return indexDict['TEAMS'][name]
# elif name in indexDict['DIVISIONS']:
# return indexDict['DIVISIONS'][name]
# elif name == "CODES":
# return {v:k for k,v in indexDict['TEAMS'].items()}
# else:
# KeyError('MLB Numeric Index not found')
infoDict = {
'TEAMS': {
'TOR': {
'fullName': "Toronto Blue Jays",
'index': 141,
'location': "Toronto",
'name': "Blue Jays",
'timeZone': "America/Toronto",
},
'NYY': {
'fullName': "New York Yankees",
'index': 147,
'location': "New York",
'name': "Yankees",
'timeZone': "America/New_York",
},
'BOS': {
'fullName': "Boston Red Sox",
'index': 111,
'location': "Boston",
'name': "Red Sox",
'timeZone': "America/New_York",
},
'TB': {
'fullName': "Tampa Bay Rays",
'index': 139,
'location': "Tampa Bay",
'name': "Rays",
'timeZone': "America/New_York",
},
'BAL': {
'fullName': "Baltimore Orioles",
'index': 110,
'location': "Baltimore",
'name': "Orioles",
'timeZone': "America/New_York",
},
'CLE': {
'fullName': "Cleveland Guardians",
'index': 114,
'location': "Cleveland",
'name': "Guardians",
'timeZone': "America/Detroit",
},
'DET': {
'fullName': "Detriot Tigers",
'index': 116,
'location': "Detroit",
'name': "Tigers",
'timeZone': "America/Detroit",
},
'KC': {
'fullName': "Kansas City Royals",
'index': 118,
'location': "Kansas City",
'name': "Royals",
'timeZone': "America/Chicago",
},
'MIN': {
'fullName': "Minnesota Twins",
'index': 142,
'location': "Minnesota",
'name': "Twins",
'timeZone': "America/Chicago",
},
'CWS': {
'fullName': "Chicago White Sox",
'index': 145,
'location': "Chicago",
'name': "White Sox",
'timeZone': "America/Chicago",
},
'SEA': {
'fullName': "Seattle Mariners",
'index': 136,
'location': "Seattle",
'name': "Mariners",
'timeZone': "America/Los_Angeles",
},
'HOU': {
'fullName': "Houston Astros",
'index': 117,
'location': "Houston",
'name': "Astros",
'timeZone': "America/Chicago",
},
'TX': {
'fullName': "Texas Rangers",
'index': 140,
'location': "Texas",
'name': "Rangers",
'timeZone': "America/Chicago",
},
'ATH': {
'fullName': "Athletics",
'index': 133,
'location': "Athletics",
'name': "Athletics",
'timeZone': "America/Los_Angeles",
},
'LAA': {
'fullName': "Los Angeles Angels",
'index': 108,
'location': "Los Angeles",
'name': "Angels",
'timeZone': "America/Los_Angeles",
},
'PHI': {
'fullName': "Philadelphia Phillies",
'index': 143,
'location': "Philadelphia",
'name': "Phillies",
'timeZone': "America/New_York",
},
'NYM': {
'fullName': "New York Mets",
'index': 121,
'location': "New York",
'name': "Mets",
'timeZone': "America/New_York",
},
'MIA': {
'fullName': "Miami Marlins",
'index': 146,
'location': "Miami",
'name': "Marlins",
'timeZone': "America/New_York",
},
'ATL': {
'fullName': "Atlanta Braves",
'index': 144,
'location': "Atlanta",
'name': "Braves",
'timeZone': "America/New_York",
},
'WSH': {
'fullName': "Washington Nationals",
'index': 120,
'location': "Washington",
'name': "Nationals",
'timeZone': "America/New_York",
},
'MIL': {
'fullName': "Milwaukee Brewers",
'index': 158,
'location': "Milwaukee",
'name': "Brewers",
'timeZone': "America/Chicago",
},
'CHC': {
'fullName': "Chicago Cubs",
'index': 112,
'location': "Chicago",
'name': "Cubs",
'timeZone': "America/Chicago",
},
'CIN': {
'fullName': "Cincinatti Reds",
'index': 113,
'location': "Cincinatti",
'name': "Reds",
'timeZone': "America/Detroit",
},
'STL': {
'fullName': "St. Louis Cardinals",
'index': 138,
'location': "St. Louis",
'name': "Cardinals",
'timeZone': "America/Chicago",
},
'PIT': {
'fullName': "Pittsburgh Pirates",
'index': 134,
'location': "Pittsburgh",
'name': "Pirates",
'timeZone': "America/New_York",
},
'LAD': {
'fullName': "Los Angeles Dodgers",
'index': 119,
'location': "Los Angeles",
'name': "Dodgers",
'timeZone': "America/Los_Angeles",
},
'SD': {
'fullName': "San Diego Padres",
'index': 135,
'location': "San Diego",
'name': "Padres",
'timeZone': "America/Los_Angeles",
},
'SF': {
'fullName': "San Francisco Giants",
'index': 137,
'location': "San Francisco",
'name': "Giants",
'timeZone': "America/Los_Angeles",
},
'AZ': {
'fullName': "Arizona Diamondbacks",
'index': 109,
'location': "Arizona",
'name': "Diamondbacks",
'timeZone': "America/Phoenix",
},
'COL': {
'fullName': "Colorado Rockies",
'index': 115,
'location': "Colorado",
'name': "Rockies",
'timeZone': "America/Denver",
},
},
'DIVISIONS': {
'ALE': {
'name': "East",
'index': 201,
},
'ALC': {
'name': "Central",
'index': 202,
},
'ALW': {
'name': "West",
'index': 200,
},
'NLE': {
'name': "East",
'index': 204,
},
'NLC': {
'name': "Central",
'index': 205,
},
'NLW': {
'name': "West",
'index': 203,
},
},
'LEAGUES': {
'AL': {
'name': "American League",
'index': 103,
},
'NL': {
'name': "National League",
'index': 104,
},
}
}