Skip to content

Games

games

Game endpoints for schedules, box scores, play-by-play, live stats, and weekly details.

Games

Games(sdk_config, parent_ref=None)

Bases: BaseSDK

Game endpoints for schedules, box scores, play-by-play, and live stats.

Provides access to: - Game schedules by season, type, and week - Box score data for individual games - Play-by-play data with optional penalties and formations - Live game statistics and summaries - Weekly game details with drive charts and replays

Source code in src/griddy/core/basesdk.py
def __init__(
    self,
    sdk_config: T_Config,
    parent_ref: Optional[object] = None,
) -> None:
    """Initialize the SDK with configuration and an optional parent reference."""
    self.sdk_configuration = sdk_config
    self.parent_ref = parent_ref
    self._cached_env_security = _UNRESOLVED