-
Notifications
You must be signed in to change notification settings - Fork 48
/
teamIds.py
38 lines (37 loc) · 1.41 KB
/
teamIds.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
# teamIds.py - Dictionary holding stats.nba.com IDs for each NBA team
teams = {
"Atlanta Hawks": 1610612737,
"Boston Celtics":1610612738,
"Brooklyn Nets": 1610612751,
"Charlotte Hornets": 1610612766,
"Charlotte Bobcats": 1610612766,
"Chicago Bulls": 1610612741,
"Cleveland Cavaliers": 1610612739,
"Dallas Mavericks": 1610612742,
"Denver Nuggets": 1610612743,
"Detroit Pistons": 1610612765,
"Golden State Warriors": 1610612744,
"Houston Rockets": 1610612745,
"Indiana Pacers": 1610612754,
"LA Clippers": 1610612746,
"Los Angeles Clippers": 1610612746,
"Los Angeles Lakers": 1610612747,
"Memphis Grizzlies": 1610612763,
"Miami Heat": 1610612748,
"Milwaukee Bucks": 1610612749,
"Minnesota Timberwolves": 1610612750,
"New Jersey Nets": 1610612751,
"New Orleans Hornets": 1610612740,
"New Orleans Pelicans": 1610612740,
"New York Knicks": 1610612752,
"Oklahoma City Thunder": 1610612760,
"Orlando Magic": 1610612753,
"Philadelphia 76ers": 1610612755,
"Phoenix Suns": 1610612756,
"Portland Trail Blazers": 1610612757,
"Sacramento Kings": 1610612758,
"San Antonio Spurs": 1610612759,
"Toronto Raptors": 1610612761,
"Utah Jazz": 1610612762,
"Washington Wizards": 1610612764,
}