Source code for pbpstats.data_loader.stats_nba.league_game_log.web

import json
import os

from pbpstats import G_LEAGUE_STRING, NBA_STRING
from pbpstats.data_loader.stats_nba.web_loader import StatsNbaWebLoader


[docs]class StatsNbaLeagueGameLogWebLoader(StatsNbaWebLoader): """ A ``StatsNbaLeagueGameLogWebLoader`` object should be instantiated and passed into ``StatsNbaLeagueGameLogLoader`` when loading data directly from the NBA Stats API :param str file_directory: (optional, use it if you want to store the response data on disk) Directory in which data should be either stored. The specific file location will be `stats_<league>_<season>_<season_type>.json` in the `/schedule` subdirectory. If not provided response data will not be saved on disk. """ def __init__(self, file_directory=None): self.file_directory = file_directory
[docs] def load_data(self, league, season, season_type): self.league_string = league self.season_string = season self.season_type_string = season_type league_url_part = ( f"{G_LEAGUE_STRING}.{NBA_STRING}" if self.league_string == G_LEAGUE_STRING else self.league_string ) self.base_url = f"https://stats.{league_url_part}.com/stats/leaguegamelog" self.parameters = { "LeagueID": self.league_id, "Season": self.season_string, "SeasonType": self.season_type_string, "PlayerOrTeam": "T", "Counter": 1000, "Sorter": "DATE", "Direction": "DESC", } self.headers = { "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/109.0", "Accept": "*/*", "Accept-Language": "en-CA,en-US;q=0.7,en;q=0.3", "Referer": "https://www.nba.com/", "Origin": "https://www.nba.com", "DNT": "1", "Connection": "keep-alive", "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", "Sec-GPC": "1", "Pragma": "no-cache", "Cache-Control": "no-cache", } return self._load_request_data()
def _save_data_to_file(self): if self.file_directory is not None and os.path.isdir(self.file_directory): file_path = f'{self.file_directory}/schedule/stats_leaguegamelog_{self.league_string}_{self.season_string.replace("-", "_")}_{self.season_type_string.replace(" ", "_")}.json' with open(file_path, "w") as outfile: json.dump(self.source_data, outfile)