Exemplo n.º 1
0
 def last10(self):
     return _api_scrape(self.json, 2)
Exemplo n.º 2
0
Arquivo: team.py Projeto: wele/nba_py
 def awards_conf(self):
     return _api_scrape(self.json, 4)
Exemplo n.º 3
0
Arquivo: team.py Projeto: wele/nba_py
 def roster(self):
     return _api_scrape(self.json, 0)
Exemplo n.º 4
0
Arquivo: team.py Projeto: wele/nba_py
 def awards_championships(self):
     return _api_scrape(self.json, 3)
Exemplo n.º 5
0
Arquivo: team.py Projeto: wele/nba_py
 def shot_distance_overall(self):
     return _api_scrape(self.json, 3)
Exemplo n.º 6
0
Arquivo: team.py Projeto: wele/nba_py
 def shot_type_rebounding(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 7
0
Arquivo: team.py Projeto: wele/nba_py
 def history(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 8
0
 def by_score_margin(self):
     return _api_scrape(self.json, 3)
Exemplo n.º 9
0
 def by_actual_margin(self):
     return _api_scrape(self.json, 4)
Exemplo n.º 10
0
 def by_half(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 11
0
 def by_period(self):
     return _api_scrape(self.json, 2)
Exemplo n.º 12
0
 def gamenumber(self):
     return _api_scrape(self.json, 5)
Exemplo n.º 13
0
 def last20(self):
     return _api_scrape(self.json, 4)
Exemplo n.º 14
0
 def last15(self):
     return _api_scrape(self.json, 3)
Exemplo n.º 15
0
Arquivo: team.py Projeto: wele/nba_py
 def background(self):
     return _api_scrape(self.json, 0)
Exemplo n.º 16
0
 def last3min_deficit_5point(self):
     """
     Results in last 5 minutes <= 5 points
     """
     return _api_scrape(self.json, 2)
Exemplo n.º 17
0
Arquivo: team.py Projeto: wele/nba_py
 def closest_defender_shooting_long(self):
     return _api_scrape(self.json, 4)
Exemplo n.º 18
0
 def last10sec_deficit_3point(self):
     """
     Results in last 5 minutes <= 5 points
     """
     return _api_scrape(self.json, 5)
Exemplo n.º 19
0
Arquivo: team.py Projeto: wele/nba_py
 def shot_distance_rebounding(self):
     return _api_scrape(self.json, 3)
Exemplo n.º 20
0
 def last1min_plusminus_5point(self):
     """
     Last 1 minutes +/= 5 points
     """
     return _api_scrape(self.json, 8)
Exemplo n.º 21
0
Arquivo: team.py Projeto: wele/nba_py
 def passes_recieved(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 22
0
 def last30sec_plusminus_5point(self):
     """
     Last 30 seconds +/= 3 points
     """
     return _api_scrape(self.json, 9)
Exemplo n.º 23
0
Arquivo: team.py Projeto: wele/nba_py
 def vs_player_overall(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 24
0
 def shot_5ft(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 25
0
Arquivo: team.py Projeto: wele/nba_py
 def shot_area_overall(self):
     return _api_scrape(self.json, 6)
Exemplo n.º 26
0
 def shot_8ft(self):
     return _api_scrape(self.json, 2)
Exemplo n.º 27
0
Arquivo: team.py Projeto: wele/nba_py
 def hof(self):
     return _api_scrape(self.json, 6)
Exemplo n.º 28
0
 def shot_areas(self):
     return _api_scrape(self.json, 3)
Exemplo n.º 29
0
 def info(self):
     return _api_scrape(self.json, 0)
Exemplo n.º 30
0
 def assisted_shots(self):
     return _api_scrape(self.json, 4)
Exemplo n.º 31
0
Arquivo: team.py Projeto: wele/nba_py
 def shot_clock_shooting(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 32
0
 def shot_types_summary(self):
     return _api_scrape(self.json, 5)
Exemplo n.º 33
0
Arquivo: team.py Projeto: wele/nba_py
 def dribble_shooting(self):
     return _api_scrape(self.json, 2)
Exemplo n.º 34
0
 def shot_types_detail(self):
     return _api_scrape(self.json, 6)
Exemplo n.º 35
0
Arquivo: team.py Projeto: wele/nba_py
 def touch_time_shooting(self):
     return _api_scrape(self.json, 5)
Exemplo n.º 36
0
 def assisted_by(self):
     return _api_scrape(self.json, 7)
Exemplo n.º 37
0
Arquivo: team.py Projeto: wele/nba_py
 def contested_rebounding(self):
     return _api_scrape(self.json, 2)
Exemplo n.º 38
0
 def score_differential(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 39
0
Arquivo: team.py Projeto: wele/nba_py
 def rebound_distance_rebounding(self):
     return _api_scrape(self.json, 4)
Exemplo n.º 40
0
 def points_scored(self):
     return _api_scrape(self.json, 2)
Exemplo n.º 41
0
Arquivo: team.py Projeto: wele/nba_py
 def passes_made(self):
     return _api_scrape(self.json, 0)
Exemplo n.º 42
0
 def points_against(self):
     return _api_scrape(self.json, 3)
Exemplo n.º 43
0
Arquivo: team.py Projeto: wele/nba_py
 def social_sites(self):
     return _api_scrape(self.json, 2)
Exemplo n.º 44
0
 def by_year(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 45
0
Arquivo: team.py Projeto: wele/nba_py
 def overall(self):
     return _api_scrape(self.json, 0)
Exemplo n.º 46
0
 def regular_season_career_totals(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 47
0
Arquivo: team.py Projeto: wele/nba_py
 def on_off_court(self):
     return _api_scrape(self.json, 2)
Exemplo n.º 48
0
 def post_season_totals(self):
     return _api_scrape(self.json, 2)
Exemplo n.º 49
0
Arquivo: team.py Projeto: wele/nba_py
 def shot_distance_off_court(self):
     return _api_scrape(self.json, 5)
Exemplo n.º 50
0
 def post_season_career_totals(self):
     return _api_scrape(self.json, 3)
Exemplo n.º 51
0
Arquivo: team.py Projeto: wele/nba_py
 def shot_area_off_court(self):
     return _api_scrape(self.json, 8)
Exemplo n.º 52
0
 def all_star_season_totals(self):
     return _api_scrape(self.json, 4)
Exemplo n.º 53
0
Arquivo: team.py Projeto: wele/nba_py
 def awards_div(self):
     return _api_scrape(self.json, 5)
Exemplo n.º 54
0
 def career_all_star_season_totals(self):
     return _api_scrape(self.json, 5)
Exemplo n.º 55
0
Arquivo: team.py Projeto: wele/nba_py
 def retired(self):
     return _api_scrape(self.json, 7)
Exemplo n.º 56
0
 def college_season_career_totals(self):
     return _api_scrape(self.json, 7)
Exemplo n.º 57
0
Arquivo: team.py Projeto: wele/nba_py
 def coaches(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 58
0
Arquivo: team.py Projeto: wele/nba_py
 def season_totals(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 59
0
 def season_ranks(self):
     return _api_scrape(self.json, 1)
Exemplo n.º 60
0
 def by_opponent(self):
     return _api_scrape(self.json, 3)