Source code for pbpstats.data_loader.live.enhanced_pbp.web

from pbpstats.data_loader.live.pbp.web import LivePbpWebLoader


[docs]class LiveEnhancedPbpWebLoader(LivePbpWebLoader): """ A ``LiveEnhancedPbpWebLoader`` object should be instantiated and passed into ``LiveEnhancedPbpLoader`` 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 `live_<game_id>.json` in the `/pbp` subdirectory. If not provided response data will not be saved on disk. """ def __init__(self, file_directory=None): self.file_directory = file_directory