-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathsport_league_constants.py
More file actions
380 lines (379 loc) 路 30.3 KB
/
Copy pathsport_league_constants.py
File metadata and controls
380 lines (379 loc) 路 30.3 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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
from .sport_market_constants import Sport
SPORTS_LEAGUES_URLS_MAPPING = {
Sport.FOOTBALL: {
"france-ligue-1": "https://www.oddsportal.com/football/france/ligue-1",
"france-ligue-2": "https://www.oddsportal.com/football/france/ligue-2/",
"france-coupe-de-france": "https://www.oddsportal.com/football/france/coupe-de-france",
"germany-bundesliga": "https://www.oddsportal.com/football/germany/bundesliga",
"germany-bundesliga-2": "https://www.oddsportal.com/football/germany/2-bundesliga/",
"germany-dfb-pokal": "https://www.oddsportal.com/football/germany/dfb-pokal",
"england-premier-league": "https://www.oddsportal.com/football/england/premier-league",
"england-championship": "https://www.oddsportal.com/football/england/championship",
"england-fa-cup": "https://www.oddsportal.com/football/england/fa-cup",
"spain-laliga": "https://www.oddsportal.com/football/spain/laliga",
"spain-laliga2": "https://www.oddsportal.com/football/spain/laliga2/",
"spain-copa-del-rey": "https://www.oddsportal.com/football/spain/copa-del-rey",
"italy-serie-a": "https://www.oddsportal.com/football/italy/serie-a",
"italy-serie-b": "https://www.oddsportal.com/football/italy/serie-b/",
"italy-coppa-italia": "https://www.oddsportal.com/football/italy/coppa-italia",
"usa-mls": "https://www.oddsportal.com/football/usa/mls",
"brazil-serie-a": "https://www.oddsportal.com/football/brazil/serie-a-betano",
"brazil-serie-b": "https://www.oddsportal.com/football/brazil/serie-b/",
"mexico-liga-mx": "https://www.oddsportal.com/football/mexico/liga-mx",
"liga-portugal": "https://www.oddsportal.com/football/portugal/liga-portugal",
"liga-portugal-2": "https://www.oddsportal.com/football/portugal/liga-portugal-2/",
"eredivisie": "https://www.oddsportal.com/football/netherlands/eredivisie",
"champions-league": "https://www.oddsportal.com/football/europe/champions-league",
"europa-league": "https://www.oddsportal.com/football/europe/europa-league",
"jupiler-pro-league": "https://www.oddsportal.com/football/belgium/jupiler-pro-league/",
"denmark-superliga": "https://www.oddsportal.com/football/denmark/superliga/",
"colombia-primera-a": "https://www.oddsportal.com/football/colombia/primera-a/",
"austria-bundesliga": "https://www.oddsportal.com/football/austria/bundesliga/",
"bulgaria-parva-liga": "https://www.oddsportal.com/football/bulgaria/efbet-league",
"australia-a-league": "https://www.oddsportal.com/football/australia/a-league/",
"greece-super-league": "https://www.oddsportal.com/football/greece/super-league/",
"romania-superliga": "https://www.oddsportal.com/football/romania/superliga/",
"saudi-professional-league": "https://www.oddsportal.com/football/saudi-arabia/saudi-professional-league/",
"scotland-premiership": "https://www.oddsportal.com/football/scotland/premiership/",
"switzerland-super-league": "https://www.oddsportal.com/football/switzerland/super-league/",
"turkey-super-lig": "https://www.oddsportal.com/football/turkey/super-lig/",
"world-cup": "https://www.oddsportal.com/football/world/world-cup",
"croatia-hnl": "https://www.oddsportal.com/football/croatia/hnl/",
"czech-republic-chance-liga": "https://www.oddsportal.com/football/czech-republic/chance-liga/",
"slovakia-nike-liga": "https://www.oddsportal.com/football/slovakia/nike-liga/",
"hungary-nb-i": "https://www.oddsportal.com/football/hungary/nb-i/",
"serbia-super-liga": "https://www.oddsportal.com/football/serbia/mozzart-bet-super-liga/",
"ukraine-premier-league": "https://www.oddsportal.com/football/ukraine/premier-league/",
"belarus-vysshaya-liga": "https://www.oddsportal.com/football/belarus/vysshaya-liga/",
"ireland-premier-division": "https://www.oddsportal.com/football/ireland/premier-division/",
"japan-j1-league": "https://www.oddsportal.com/football/japan/j1-league/",
"japan-j2-j3-league": "https://www.oddsportal.com/football/japan/j2-j3-league/",
"argentina-liga-profesional": "https://www.oddsportal.com/football/argentina/liga-profesional/",
"conference-league": "https://www.oddsportal.com/football/europe/conference-league/",
"poland-ekstraklasa": "https://www.oddsportal.com/football/poland/ekstraklasa/",
"finland-veikkausliiga": "https://www.oddsportal.com/football/finland/veikkausliiga/",
"copa-sudamericana": "https://www.oddsportal.com/football/south-america/copa-sudamericana",
"copa-libertadores": "https://www.oddsportal.com/football/south-america/copa-libertadores",
"morocco-botola-pro": "https://www.oddsportal.com/football/morocco/botola-pro",
"egypt-premier-league": "https://www.oddsportal.com/football/egypt/premier-league",
"peru-liga-1": "https://www.oddsportal.com/football/peru/liga-1",
"chile-primera-division": "https://www.oddsportal.com/football/chile/primera-division",
"south-korea-k-league-1": "https://www.oddsportal.com/football/south-korea/k-league-1",
"china-super-league": "https://www.oddsportal.com/football/china/super-league",
"russia-premier-league": "https://www.oddsportal.com/football/russia/premier-league",
"india-isl": "https://www.oddsportal.com/football/india/isl",
"south-africa-premiership": "https://www.oddsportal.com/football/south-africa/betway-premiership",
"uruguay-liga": "https://www.oddsportal.com/football/uruguay/liga-auf-uruguaya",
"ecuador-liga-pro": "https://www.oddsportal.com/football/ecuador/liga-pro",
"paraguay-copa-de-primera": "https://www.oddsportal.com/football/paraguay/copa-de-primera",
"costa-rica-primera-division": "https://www.oddsportal.com/football/costa-rica/primera-division",
"thailand-thai-league-1": "https://www.oddsportal.com/football/thailand/thai-league-1",
"qatar-qsl": "https://www.oddsportal.com/football/qatar/qsl",
"uae-league": "https://www.oddsportal.com/football/united-arab-emirates/uae-league",
"uzbekistan-super-league": "https://www.oddsportal.com/football/uzbekistan/super-league",
"indonesia-super-league": "https://www.oddsportal.com/football/indonesia/super-league",
"wales-cymru-premier": "https://www.oddsportal.com/football/wales/cymru-premier",
"northern-ireland-nifl-premiership": "https://www.oddsportal.com/football/northern-ireland/nifl-premiership",
"estonia-meistriliiga": "https://www.oddsportal.com/football/estonia/meistriliiga",
"algeria-ligue-1": "https://www.oddsportal.com/football/algeria/ligue-1",
"england-league-one": "https://www.oddsportal.com/football/england/league-one",
"england-league-two": "https://www.oddsportal.com/football/england/league-two",
"england-national-league": "https://www.oddsportal.com/football/england/national-league",
"germany-3-liga": "https://www.oddsportal.com/football/germany/3-liga",
"france-national": "https://www.oddsportal.com/football/france/national",
"netherlands-eerste-divisie": "https://www.oddsportal.com/football/netherlands/eerste-divisie",
"belgium-challenger-pro-league": "https://www.oddsportal.com/football/belgium/challenger-pro-league",
"turkey-1-lig": "https://www.oddsportal.com/football/turkey/1-lig",
"scotland-championship": "https://www.oddsportal.com/football/scotland/championship",
"romania-liga-2": "https://www.oddsportal.com/football/romania/liga-2",
"denmark-1st-division": "https://www.oddsportal.com/football/denmark/1st-division",
"greece-super-league-2": "https://www.oddsportal.com/football/greece/super-league-2",
"austria-2-liga": "https://www.oddsportal.com/football/austria/2-liga",
"switzerland-challenge-league": "https://www.oddsportal.com/football/switzerland/challenge-league",
"argentina-primera-nacional": "https://www.oddsportal.com/football/argentina/primera-nacional",
"usa-usl-championship": "https://www.oddsportal.com/football/usa/usl-championship",
"mexico-liga-de-expansion": "https://www.oddsportal.com/football/mexico/liga-de-expansion-mx",
"concacaf-champions-cup": "https://www.oddsportal.com/football/north-central-america/concacaf-champions-cup",
"afc-champions-league": "https://www.oddsportal.com/football/asia/afc-champions-league",
"uefa-nations-league": "https://www.oddsportal.com/football/europe/uefa-nations-league",
},
Sport.TENNIS: {
"atp-acapulco": "https://www.oddsportal.com/tennis/mexico/atp-acapulco",
"atp-adelaide": "https://www.oddsportal.com/tennis/australia/atp-adelaide",
"atp-adelaide-2": "https://www.oddsportal.com/tennis/australia/atp-adelaide-2",
"atp-almaty": "https://www.oddsportal.com/tennis/kazakhstan/atp-almaty",
"atp-antwerp": "https://www.oddsportal.com/tennis/belgium/atp-antwerp",
"atp-astana": "https://www.oddsportal.com/tennis/kazakhstan/atp-astana",
"atp-atlanta": "https://www.oddsportal.com/tennis/usa/atp-atlanta",
"atp-auckland": "https://www.oddsportal.com/tennis/new-zealand/atp-auckland",
"atp-australian-open": "https://www.oddsportal.com/tennis/australia/atp-australian-open",
"atp-banja-luka": "https://www.oddsportal.com/tennis/bosnia-and-herzegovina/atp-banja-luka",
"atp-barcelona": "https://www.oddsportal.com/tennis/spain/atp-barcelona",
"atp-basel": "https://www.oddsportal.com/tennis/switzerland/atp-basel",
"atp-bastad": "https://www.oddsportal.com/tennis/sweden/atp-bastad",
"atp-beijing": "https://www.oddsportal.com/tennis/china/atp-beijing",
"atp-belgrade-2": "https://www.oddsportal.com/tennis/serbia/atp-belgrade-2",
"atp-brisbane": "https://www.oddsportal.com/tennis/australia/atp-brisbane",
"atp-bucharest": "https://www.oddsportal.com/tennis/romania/atp-bucharest",
"atp-buenos-aires": "https://www.oddsportal.com/tennis/argentina/atp-buenos-aires",
"atp-chengdu": "https://www.oddsportal.com/tennis/china/atp-chengdu",
"atp-cincinnati": "https://www.oddsportal.com/tennis/usa/atp-cincinnati",
"atp-cordoba": "https://www.oddsportal.com/tennis/argentina/atp-cordoba",
"atp-dallas": "https://www.oddsportal.com/tennis/usa/atp-dallas",
"atp-davis-cup---group-iii": "https://www.oddsportal.com/tennis/world/atp-davis-cup-group-iii",
"atp-davis-cup---group-iv": "https://www.oddsportal.com/tennis/world/atp-davis-cup-group-iv",
"atp-davis-cup---world-group": "https://www.oddsportal.com/tennis/world/atp-davis-cup-world-group",
"atp-davis-cup---world-group-i": "https://www.oddsportal.com/tennis/world/atp-davis-cup-world-group-i",
"atp-davis-cup---world-group-ii": "https://www.oddsportal.com/tennis/world/atp-davis-cup-world-group-ii",
"atp-delray-beach": "https://www.oddsportal.com/tennis/usa/atp-delray-beach",
"atp-doha": "https://www.oddsportal.com/tennis/qatar/atp-doha",
"atp-dubai": "https://www.oddsportal.com/tennis/united-arab-emirates/atp-dubai",
"atp-eastbourne": "https://www.oddsportal.com/tennis/united-kingdom/atp-eastbourne",
"atp-estoril": "https://www.oddsportal.com/tennis/portugal/atp-estoril",
"atp-finals---turin": "https://www.oddsportal.com/tennis/world/atp-finals-turin",
"atp-french-open": "https://www.oddsportal.com/tennis/france/atp-french-open",
"atp-geneva": "https://www.oddsportal.com/tennis/switzerland/atp-geneva",
"atp-gstaad": "https://www.oddsportal.com/tennis/switzerland/atp-gstaad",
"atp-halle": "https://www.oddsportal.com/tennis/germany/atp-halle",
"atp-hangzhou": "https://www.oddsportal.com/tennis/china/atp-hangzhou",
"atp-hertogenbosch": "https://www.oddsportal.com/tennis/netherlands/atp-hertogenbosch",
"atp-hong-kong": "https://www.oddsportal.com/tennis/hong-kong/atp-hong-kong",
"atp-hopman-cup": "https://www.oddsportal.com/tennis/world/atp-hopman-cup",
"atp-houston": "https://www.oddsportal.com/tennis/usa/atp-houston",
"atp-indian-wells": "https://www.oddsportal.com/tennis/usa/atp-indian-wells",
"atp-kitzbuhel": "https://www.oddsportal.com/tennis/austria/atp-kitzbuhel",
"atp-laver-cup": "https://www.oddsportal.com/tennis/world/atp-laver-cup",
"atp-london": "https://www.oddsportal.com/tennis/united-kingdom/atp-london",
"atp-los-cabos": "https://www.oddsportal.com/tennis/mexico/atp-los-cabos",
"atp-lyon": "https://www.oddsportal.com/tennis/france/atp-lyon",
"atp-madrid": "https://www.oddsportal.com/tennis/spain/atp-madrid",
"atp-mallorca": "https://www.oddsportal.com/tennis/spain/atp-mallorca",
"atp-marrakech": "https://www.oddsportal.com/tennis/morocco/atp-marrakech",
"atp-marseille": "https://www.oddsportal.com/tennis/france/atp-marseille",
"atp-metz": "https://www.oddsportal.com/tennis/france/atp-metz",
"atp-miami": "https://www.oddsportal.com/tennis/usa/atp-miami",
"atp-monte-carlo": "https://www.oddsportal.com/tennis/monaco/atp-monte-carlo",
"atp-montpellier": "https://www.oddsportal.com/tennis/france/atp-montpellier",
"atp-montreal": "https://www.oddsportal.com/tennis/canada/atp-montreal",
"atp-munich": "https://www.oddsportal.com/tennis/germany/atp-munich",
"atp-newport": "https://www.oddsportal.com/tennis/usa/atp-newport",
"atp-next-gen-finals---jeddah": "https://www.oddsportal.com/tennis/world/atp-next-gen-finals-jeddah",
"atp-olympic-games": "https://www.oddsportal.com/tennis/world/atp-olympic-games",
"atp-paris": "https://www.oddsportal.com/tennis/france/atp-paris",
"atp-pune": "https://www.oddsportal.com/tennis/india/atp-pune",
"atp-rio-de-janeiro": "https://www.oddsportal.com/tennis/brazil/atp-rio-de-janeiro",
"atp-rome": "https://www.oddsportal.com/tennis/italy/atp-rome",
"atp-rotterdam": "https://www.oddsportal.com/tennis/netherlands/atp-rotterdam",
"atp-santiago": "https://www.oddsportal.com/tennis/chile/atp-santiago",
"atp-shanghai": "https://www.oddsportal.com/tennis/china/atp-shanghai",
"atp-sofia": "https://www.oddsportal.com/tennis/bulgaria/atp-sofia",
"atp-stockholm": "https://www.oddsportal.com/tennis/sweden/atp-stockholm",
"atp-stuttgart": "https://www.oddsportal.com/tennis/germany/atp-stuttgart",
"atp-tokyo": "https://www.oddsportal.com/tennis/japan/atp-tokyo",
"atp-toronto": "https://www.oddsportal.com/tennis/canada/atp-toronto",
"atp-umag": "https://www.oddsportal.com/tennis/croatia/atp-umag",
"atp-united-cup": "https://www.oddsportal.com/tennis/australia/atp-united-cup",
"atp-us-open": "https://www.oddsportal.com/tennis/usa/atp-us-open",
"atp-vienna": "https://www.oddsportal.com/tennis/austria/atp-vienna",
"atp-washington": "https://www.oddsportal.com/tennis/usa/atp-washington",
"atp-wimbledon": "https://www.oddsportal.com/tennis/united-kingdom/atp-wimbledon",
"atp-winston-salem": "https://www.oddsportal.com/tennis/usa/atp-winston-salem",
"atp-zhuhai": "https://www.oddsportal.com/tennis/china/atp-zhuhai",
"wta-abu-dhabi": "https://www.oddsportal.com/tennis/united-arab-emirates/wta-abu-dhabi",
"wta-adelaide": "https://www.oddsportal.com/tennis/australia/wta-adelaide",
"wta-adelaide-2": "https://www.oddsportal.com/tennis/australia/wta-adelaide-2",
"wta-auckland": "https://www.oddsportal.com/tennis/new-zealand/wta-auckland",
"wta-austin": "https://www.oddsportal.com/tennis/usa/wta-austin",
"wta-australian-open": "https://www.oddsportal.com/tennis/australia/wta-australian-open",
"wta-bad-homburg": "https://www.oddsportal.com/tennis/germany/wta-bad-homburg",
"wta-beijing": "https://www.oddsportal.com/tennis/china/wta-beijing",
"wta-berlin": "https://www.oddsportal.com/tennis/germany/wta-berlin",
"wta-billie-jean-king-cup---group-ii": "https://www.oddsportal.com/tennis/world/wta-billie-jean-king-cup-group-ii",
"wta-billie-jean-king-cup---group-iii": "https://www.oddsportal.com/tennis/world/wta-billie-jean-king-cup-group-iii",
"wta-billie-jean-king-cup---world-group": "https://www.oddsportal.com/tennis/world/wta-billie-jean-king-cup-world-group",
"wta-birmingham": "https://www.oddsportal.com/tennis/united-kingdom/wta-birmingham",
"wta-bogota": "https://www.oddsportal.com/tennis/colombia/wta-bogota",
"wta-brisbane": "https://www.oddsportal.com/tennis/australia/wta-brisbane",
"wta-budapest": "https://www.oddsportal.com/tennis/hungary/wta-budapest",
"wta-charleston": "https://www.oddsportal.com/tennis/usa/wta-charleston",
"wta-cincinnati": "https://www.oddsportal.com/tennis/usa/wta-cincinnati",
"wta-cleveland": "https://www.oddsportal.com/tennis/usa/wta-cleveland",
"wta-cluj-napoca": "https://www.oddsportal.com/tennis/romania/wta-cluj-napoca",
"wta-doha": "https://www.oddsportal.com/tennis/qatar/wta-doha",
"wta-dubai": "https://www.oddsportal.com/tennis/united-arab-emirates/wta-dubai",
"wta-eastbourne": "https://www.oddsportal.com/tennis/united-kingdom/wta-eastbourne",
"wta-finals---riyadh": "https://www.oddsportal.com/tennis/world/wta-finals-riyadh",
"wta-french-open": "https://www.oddsportal.com/tennis/france/wta-french-open",
"wta-guadalajara": "https://www.oddsportal.com/tennis/mexico/wta-guadalajara",
"wta-guangzhou": "https://www.oddsportal.com/tennis/china/wta-guangzhou",
"wta-hamburg": "https://www.oddsportal.com/tennis/germany/wta-hamburg",
"wta-hertogenbosch": "https://www.oddsportal.com/tennis/netherlands/wta-hertogenbosch",
"wta-hobart": "https://www.oddsportal.com/tennis/australia/wta-hobart",
"wta-hong-kong": "https://www.oddsportal.com/tennis/hong-kong/wta-hong-kong",
"wta-hopman-cup": "https://www.oddsportal.com/tennis/world/wta-hopman-cup",
"wta-hua-hin": "https://www.oddsportal.com/tennis/thailand/wta-hua-hin",
"wta-hua-hin-2": "https://www.oddsportal.com/tennis/thailand/wta-hua-hin-2",
"wta-indian-wells": "https://www.oddsportal.com/tennis/usa/wta-indian-wells",
"wta-istanbul": "https://www.oddsportal.com/tennis/turkey/wta-istanbul",
"wta-lausanne": "https://www.oddsportal.com/tennis/switzerland/wta-lausanne",
"wta-linz": "https://www.oddsportal.com/tennis/austria/wta-linz",
"wta-london": "https://www.oddsportal.com/tennis/united-kingdom/wta-london",
"wta-luxembourg": "https://www.oddsportal.com/tennis/luxembourg/wta-luxembourg",
"wta-madrid": "https://www.oddsportal.com/tennis/spain/wta-madrid",
"wta-miami": "https://www.oddsportal.com/tennis/usa/wta-miami",
"wta-montreal": "https://www.oddsportal.com/tennis/canada/wta-montreal",
"wta-moscow": "https://www.oddsportal.com/tennis/russia/wta-moscow",
"wta-nanchang": "https://www.oddsportal.com/tennis/china/wta-nanchang",
"wta-ningbo": "https://www.oddsportal.com/tennis/china/wta-ningbo",
"wta-nottingham": "https://www.oddsportal.com/tennis/united-kingdom/wta-nottingham",
"wta-osaka": "https://www.oddsportal.com/tennis/japan/wta-osaka",
"wta-palermo": "https://www.oddsportal.com/tennis/italy/wta-palermo",
"wta-paris": "https://www.oddsportal.com/tennis/france/wta-paris",
"wta-pattaya": "https://www.oddsportal.com/tennis/thailand/wta-pattaya",
"wta-prague": "https://www.oddsportal.com/tennis/czech-republic/wta-prague",
"wta-rabat": "https://www.oddsportal.com/tennis/morocco/wta-rabat",
"wta-rome": "https://www.oddsportal.com/tennis/italy/wta-rome",
"wta-san-diego": "https://www.oddsportal.com/tennis/usa/wta-san-diego",
"wta-san-jose": "https://www.oddsportal.com/tennis/usa/wta-san-jose",
"wta-seoul": "https://www.oddsportal.com/tennis/south-korea/wta-seoul",
"wta-shenzhen": "https://www.oddsportal.com/tennis/china/wta-shenzhen",
"wta-singapore": "https://www.oddsportal.com/tennis/singapore/wta-singapore",
"wta-strasbourg": "https://www.oddsportal.com/tennis/france/wta-strasbourg",
"wta-stuttgart": "https://www.oddsportal.com/tennis/germany/wta-stuttgart",
"wta-sydney": "https://www.oddsportal.com/tennis/australia/wta-sydney",
"wta-taipei": "https://www.oddsportal.com/tennis/taiwan/wta-taipei",
"wta-tokyo": "https://www.oddsportal.com/tennis/japan/wta-tokyo",
"wta-us-open": "https://www.oddsportal.com/tennis/usa/wta-us-open",
"wta-warsaw": "https://www.oddsportal.com/tennis/poland/wta-warsaw",
"wta-washington": "https://www.oddsportal.com/tennis/usa/wta-washington",
"wta-wimbledon": "https://www.oddsportal.com/tennis/united-kingdom/wta-wimbledon",
"wta-wuhan": "https://www.oddsportal.com/tennis/china/wta-wuhan",
"wta-zhuhai": "https://www.oddsportal.com/tennis/china/wta-zhuhai",
},
Sport.BASKETBALL: {
"nba": "https://www.oddsportal.com/basketball/usa/nba/",
"ncaa": "https://www.oddsportal.com/basketball/usa/ncaa/",
"euroleague": "https://www.oddsportal.com/basketball/europe/euroleague/",
"acb-spain": "https://www.oddsportal.com/basketball/spain/acb/",
"bbl-germany": "https://www.oddsportal.com/basketball/germany/bbl/",
"lega-a-italy": "https://www.oddsportal.com/basketball/italy/lega-a/",
"lnb-france": "https://www.oddsportal.com/basketball/france/lnb/",
"super-lig-turkey": "https://www.oddsportal.com/basketball/turkey/super-lig/",
"vtb-united-league": "https://www.oddsportal.com/basketball/russia/vtb-united-league/",
"nbl-australia": "https://www.oddsportal.com/basketball/australia/nbl/",
"cba-china": "https://www.oddsportal.com/basketball/china/cba/",
"greek-basket-league": "https://www.oddsportal.com/basketball/greece/basket-league/",
"liga-nacional-argentina": "https://www.oddsportal.com/basketball/argentina/liga-nacional/",
"liga-aba": "https://www.oddsportal.com/basketball/europe/aba-league/",
"bnxt-league": "https://www.oddsportal.com/basketball/europe/bnxt-league/",
"liga-sudamericana": "https://www.oddsportal.com/basketball/south-america/liga-sudamericana/",
"liga-portugal": "https://www.oddsportal.com/basketball/portugal/lpb/",
"liga-leumit-israel": "https://www.oddsportal.com/basketball/israel/liga-leumit/",
"korisliiga-finland": "https://www.oddsportal.com/basketball/finland/korisliiga/",
"liga-acb-brazil": "https://www.oddsportal.com/basketball/brazil/nbb/",
"pba-philippines": "https://www.oddsportal.com/basketball/philippines/pba/",
"liga-na葲ional膬-romania": "https://www.oddsportal.com/basketball/romania/liga-nationala/",
"liga-nacional-chile": "https://www.oddsportal.com/basketball/chile/liga-nacional/",
"liga-uruguay": "https://www.oddsportal.com/basketball/uruguay/liga-uruguaya/",
"liga-bolivia": "https://www.oddsportal.com/basketball/bolivia/lnb/",
"liga-paraguay": "https://www.oddsportal.com/basketball/paraguay/lpb/",
"liga-venezuela": "https://www.oddsportal.com/basketball/venezuela/lpb/",
"liga-colombia": "https://www.oddsportal.com/basketball/colombia/liga-directv/",
"liga-ecuador": "https://www.oddsportal.com/basketball/ecuador/lnb/",
"liga-peru": "https://www.oddsportal.com/basketball/peru/lnb/",
"liga-costa-rica": "https://www.oddsportal.com/basketball/costa-rica/lnb/",
"plk-poland": "https://www.oddsportal.com/basketball/poland/plk/",
"nemzeti-hungary": "https://www.oddsportal.com/basketball/hungary/nb-i-a/",
"lkl-lithuania": "https://www.oddsportal.com/basketball/lithuania/lkl/",
"lbl-latvia": "https://www.oddsportal.com/basketball/latvia/lbl/",
"kbl-kosovo": "https://www.oddsportal.com/basketball/kosovo/kbsl/",
"superliga-serbia": "https://www.oddsportal.com/basketball/serbia/kls/",
"prva-crna-gora": "https://www.oddsportal.com/basketball/montenegro/prva-a-liga/",
"basketball-league-croatia": "https://www.oddsportal.com/basketball/croatia/premijer-liga/",
"a-division-czech": "https://www.oddsportal.com/basketball/czech-republic/knbl/",
"a-division-slovakia": "https://www.oddsportal.com/basketball/slovakia/extraliga/",
"basketball-league-estonia": "https://www.oddsportal.com/basketball/estonia/kml/",
},
Sport.RUGBY_LEAGUE: {
"england-super-league": "https://www.oddsportal.com/rugby-league/england/super-league/",
"australia-nrl": "https://www.oddsportal.com/rugby-league/australia/nrl/",
"australia-state-of-origin": "https://www.oddsportal.com/rugby-league/australia/state-of-origin/",
"europe-challenge-cup": "https://www.oddsportal.com/rugby-league/europe/challenge-cup/",
"world-cup": "https://www.oddsportal.com/rugby-league/world/world-cup/",
"world-four-nations": "https://www.oddsportal.com/rugby-league/world/four-nations/",
},
Sport.RUGBY_UNION: {
"six-nations": "https://www.oddsportal.com/rugby-union/europe/six-nations/",
"rugby-championship": "https://www.oddsportal.com/rugby-union/world/rugby-championship/",
"world-cup": "https://www.oddsportal.com/rugby-union/world/world-cup/",
"england-premiership": "https://www.oddsportal.com/rugby-union/england/premiership-rugby/",
"france-top-14": "https://www.oddsportal.com/rugby-union/france/top-14/",
"france-pro-d2": "https://www.oddsportal.com/rugby-union/france/pro-d2/",
"super-rugby": "https://www.oddsportal.com/rugby-union/world/super-rugby/",
"united-rugby-championship": "https://www.oddsportal.com/rugby-union/world/united-rugby-championship/",
"currie-cup": "https://www.oddsportal.com/rugby-union/south-africa/currie-cup/",
"npc-cup": "https://www.oddsportal.com/rugby-union/new-zealand/bunnings-npc/",
},
Sport.ICE_HOCKEY: {
"nhl": "https://www.oddsportal.com/hockey/usa/nhl/",
"khl": "https://www.oddsportal.com/hockey/russia/khl/",
"shl": "https://www.oddsportal.com/hockey/sweden/shl/",
"liiga": "https://www.oddsportal.com/hockey/finland/liiga/",
"czech-extraliga": "https://www.oddsportal.com/hockey/czech-republic/extraliga/",
"del": "https://www.oddsportal.com/hockey/germany/del/",
"alps-hockey-league": "https://www.oddsportal.com/hockey/europe/alps-hockey-league/",
"austria-ice-hockey-league": "https://www.oddsportal.com/hockey/austria/ice-hockey-league/",
"slovakia-extraliga": "https://www.oddsportal.com/hockey/slovakia/extraliga/",
"switzerland-national-league": "https://www.oddsportal.com/hockey/switzerland/national-league/",
"norway-eliteserien": "https://www.oddsportal.com/hockey/norway/eliteserien/",
"denmark-metal-ligaen": "https://www.oddsportal.com/hockey/denmark/metal-ligaen/",
"france-ligue-magnus": "https://www.oddsportal.com/hockey/france/ligue-magnus/",
"world-championship": "https://www.oddsportal.com/hockey/world/world-championship/",
},
Sport.BASEBALL: {
"mlb": "https://www.oddsportal.com/baseball/usa/mlb/",
"pcl": "https://www.oddsportal.com/baseball/usa/pcl/",
"australian-baseball-league": "https://www.oddsportal.com/baseball/australia/abl/",
"japan-baseball-league": "https://www.oddsportal.com/baseball/japan/npb/",
},
Sport.AMERICAN_FOOTBALL: {
"nfl": "https://www.oddsportal.com/american-football/usa/nfl/",
"ncaa": "https://www.oddsportal.com/american-football/usa/ncaa/",
},
Sport.HANDBALL: {
"ehf-champions-league": "https://www.oddsportal.com/handball/europe/champions-league/",
"ehf-european-league": "https://www.oddsportal.com/handball/europe/european-league/",
"germany-bundesliga": "https://www.oddsportal.com/handball/germany/bundesliga/",
"france-lnh": "https://www.oddsportal.com/handball/france/starligue/",
"spain-liga-asobal": "https://www.oddsportal.com/handball/spain/liga-asobal/",
"denmark-handboldligaen": "https://www.oddsportal.com/handball/denmark/herre-handbold-ligaen/",
"hungary-nb-i": "https://www.oddsportal.com/handball/hungary/nb-i/",
},
Sport.VOLLEYBALL: {
# russia-superliga intentionally omitted: live validation returned no match data (post-2022)
"italy-superlega": "https://www.oddsportal.com/volleyball/italy/superlega/",
"poland-plusliga": "https://www.oddsportal.com/volleyball/poland/plusliga/",
"france-ligue-a": "https://www.oddsportal.com/volleyball/france/ligue-a/",
"germany-1-bundesliga": "https://www.oddsportal.com/volleyball/germany/1-bundesliga/",
"turkey-efeler-ligi": "https://www.oddsportal.com/volleyball/turkey/efeler-ligi/",
"brazil-superliga": "https://www.oddsportal.com/volleyball/brazil/superliga/",
"japan-sv-league": "https://www.oddsportal.com/volleyball/japan/sv-league/",
"cev-champions-league": "https://www.oddsportal.com/volleyball/europe/champions-league/",
"nations-league": "https://www.oddsportal.com/volleyball/world/nations-league/",
},
Sport.CRICKET: {
# Confirmed live 2026-07-18 (limited-overs formats only; multi-day/1x2 deferred).
# Full match-link validation is proxy-gated (France view hides cricket links); slugs
# below were read directly off OddsPortal's live DOM as canonical breadcrumb links.
"big-bash-league": "https://www.oddsportal.com/cricket/australia/big-bash-league/",
"big-bash-league-women": "https://www.oddsportal.com/cricket/australia/big-bash-league-women/",
"one-day-cup": "https://www.oddsportal.com/cricket/australia/one-day-cup/",
"the-hundred": "https://www.oddsportal.com/cricket/united-kingdom/the-hundred/",
"the-hundred-women": "https://www.oddsportal.com/cricket/united-kingdom/the-hundred-women/",
"lanka-premier-league": "https://www.oddsportal.com/cricket/sri-lanka/lanka-premier-league/",
"mlc": "https://www.oddsportal.com/cricket/usa/mlc/",
"one-day-international": "https://www.oddsportal.com/cricket/world/one-day-international/",
"twenty20-international": "https://www.oddsportal.com/cricket/world/twenty20-international/",
"global-super-league": "https://www.oddsportal.com/cricket/world/global-super-league/",
},
}