Source code for pbpstats.data_loader.live.enhanced_pbp_loader

"""
``LiveEnhancedPbpLoader`` loads pbp data for a game and creates :obj:`~pbpstats.resources.enhanced_pbp.enhanced_pbp_item.EnhancedPbpItem` objects for each event

Enhanced data for each event includes current players on floor, score, fouls to give and number of fouls committed by each player,
plus additional data depending on event type

The following code will load pbp data for game id "0021900001" from a file located in a subdirectory of the /data directory

.. code-block:: python

    from pbpstats.data_loader import LiveEnhancedPbpLoader

    pbp_loader = LiveEnhancedPbpLoader("0021900001", "file", "/data")
    print(pbp_loader.items[0].data)  # prints dict with the first event of the game
"""
from pbpstats.data_loader.live.pbp_loader import LivePbpLoader
from pbpstats.data_loader.nba_enhanced_pbp_loader import NbaEnhancedPbpLoader
from pbpstats.resources.enhanced_pbp.live.enhanced_pbp_factory import (
    LiveEnhancedPbpFactory,
)
from pbpstats.resources.enhanced_pbp import Rebound


[docs]class LiveEnhancedPbpLoader(LivePbpLoader, NbaEnhancedPbpLoader): """ Loads data.nba.com source enhanced pbp data for game. Events are stored in items attribute as :obj:`~pbpstats.resources.enhanced_pbp.enhanced_pbp_item.EnhancedPbpItem` objects :param str game_id: NBA Stats Game Id :param str source: Where should data be loaded from. Options are 'web' or 'file' :param str file_directory: (optional if source is 'web') Directory in which data should be either stored (if source is web) or loaded from (if source is file). 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. :raises: :obj:`~pbpstats.resources.enhanced_pbp.start_of_period.InvalidNumberOfStartersException`: If all 5 players that start the period for a team can't be determined. You can add the correct period starters to overrides/missing_period_starters.json in your data directory to fix this. """ data_provider = "live" resource = "EnhancedPbp" parent_object = "Game" def __init__(self, game_id, source, file_directory=None): super().__init__(game_id, source, file_directory) def _make_pbp_items(self): factory = LiveEnhancedPbpFactory() self.items = [ factory.get_event_class(event["actionType"], event.get("subType", ""))( event, self.game_id ) for event in self.data ] self._add_extra_attrs_to_all_events() self._change_team_id_on_drebs() def _change_team_id_on_drebs(self): """ live pbp changes possession on dreb, swap team to be consistent with other sources """ for event in self.items: if isinstance(event, Rebound): if event.is_real_rebound and not event.oreb: event.offense_team_id = event.previous_event.offense_team_id