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