-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.py
More file actions
48 lines (46 loc) · 2.34 KB
/
utils.py
File metadata and controls
48 lines (46 loc) · 2.34 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
# Api request information, separated by api
keys = {
'odds-api': {
'NCAAF US College Football': 'americanfootball_ncaaf',
'NFL US Football': 'americanfootball_nfl',
'Aussie Football': 'aussierules_afl',
'Euroleague Basketball': 'basketball_euroleague',
'NBA Basketball': 'basketball_nba',
'US College Basketball': 'basketball_ncaab',
'Cricket Big Bash League': 'cricket_big_bash',
'International Twenty20': 'cricket_international_t20',
'NHL Ice Hockey': 'icehockey_nhl',
'Mixed Martial Arts': 'mma_mixed_martial_arts', # Working
'Aussie Rugby League': 'rugbyleague_nrl', # Working
'Aussie Soccer A League': 'soccer_australia_aleague',
'Belgium Soccer First Division': 'soccer_belgium_first_div',
'Denmark Soccer Superliga': 'soccer_denmark_superliga',
'EFL Championship': 'soccer_efl_champ',
'EFL Cup': 'soccer_england_efl_cup',
'EFL League 1': 'soccer_england_league1',
'EFL League 2': 'soccer_england_league2',
'English Premier League': 'soccer_epl',
'FA Cup': 'soccer_fa_cup', # Working
'France Ligue 1': 'soccer_france_ligue_one',
'Germany Bundesliga': 'soccer_germany_bundesliga',
'Germany Bundesliga 2': 'soccer_germany_bundesliga2',
'Italy Serie A': 'soccer_italy_serie_a',
'Italy Serie B': 'soccer_italy_serie_b',
'Mexico Liga MX': 'soccer_mexico_ligamx',
'Dutch Eredivise': 'soccer_netherlands_eredivisie',
'Norwegian Soccer': 'soccer_norway_eliteserien',
'Polish Soccer': 'soccer_poland_ekstraklasa',
'Primeira Liga - Portugal': 'soccer_portugal_primeira_liga',
'Spain LaLiga': 'soccer_spain_la_liga',
'Spain LaLiga 2': 'soccer_spain_segunda_division',
'Scottish Soccer Premiership': 'soccer_spl',
'Allsvenskan - Sweden Soccer': 'soccer_sweden_allsvenskan',
'Superettan - Sweden Soccer': 'soccer_sweden_superettan',
'Swiss Soccer Superleague': 'soccer_switzerland_superleague',
'Turkish Soccer Superleague': 'soccer_turkey_super_league',
'UEFA Champions League': 'soccer_uefa_champs_league',
'UEFA Europa Conference League': 'soccer_uefa_europa_conference_league',
'UEFA Europa League': 'soccer_uefa_europa_league',
},
}
responses_path = './responses'