Skip to main content
Version: main

PWHL — additional Python functions

Hand-written wrappers, loaders, and helpers in sportsdataverse.pwhl not covered by the generated API-endpoint reference above.

Dataset loaders

load_pwhl_games(return_as_pandas: 'bool' = False)

Load the PWHL games-in-data-repo manifest (no seasons argument).

Mirrors fastRhockey (R) load_pwhl_games() which reads a manifest of every PWHL game that has processed data in the data repository.

Tries the sportsdataverse-data release asset first; falls back to the raw fastRhockey-data GitHub path.

Parameters

ParameterTypeDefaultDescription
return_as_pandasboolFalsereturn a pandas DataFrame instead of polars.

Returns

A polars (or pandas) DataFrame of all games in the data repository.

col_nametypedescription
game_idcharacterUnique game identifier.
seasonintegerSeason year (echoed from arg).
game_datecharacterGame date.
game_statuscharacterGame status text.
home_teamcharacterHome team name.
home_team_idcharacterHome team identifier.
away_teamcharacterAway team name.
away_team_idcharacterAway team identifier.
home_scorecharacterHome team final score.
away_scorecharacterAway team final score.
winnercharacterWhether this competitor won the game.
venuecharacterVenue where the game was played.
venue_urlcharacterURL for the venue.
game_typecharacterGame type the row belongs to.
game_jsonlogicalWhether processed game JSON is available.
game_json_urlcharacterURL to the processed game JSON.
PBPlogicalWhether play-by-play data is available.
player_boxlogicalWhether player box score data is available.
skater_boxlogicalWhether skater box data is available.
goalie_boxlogicalWhether goalie box data is available.
team_boxlogicalWhether team box score data is available.
game_infologicalWhether game info data is available.
game_rosterslogicalWhether game rosters data is available.
scoring_summarylogicalWhether scoring summary data is available.
penalty_summarylogicalWhether penalty summary data is available.
three_starslogicalWhether three stars data is available.
officialslogicalWhether officials data is available.
shots_by_periodlogicalWhether shots-by-period data is available.
shootoutlogicalWhether shootout data is available.

Example

>>> load_pwhl_games()

load_pwhl_goalie_box(seasons, return_as_pandas: 'bool' = False)

Alias of load_pwhl_goalie_boxscores() for naming parity with fastRhockey (R).

Parameters

ParameterTypeDefaultDescription
seasons
return_as_pandasboolFalse

load_pwhl_player_box(seasons, return_as_pandas: 'bool' = False)

Alias of load_pwhl_player_boxscores() for naming parity with fastRhockey (R).

Parameters

ParameterTypeDefaultDescription
seasons
return_as_pandasboolFalse

load_pwhl_schedule(seasons, return_as_pandas: 'bool' = False)

Alias of load_pwhl_schedules() for naming parity with fastRhockey (R).

Parameters

ParameterTypeDefaultDescription
seasons
return_as_pandasboolFalse

load_pwhl_skater_box(seasons, return_as_pandas: 'bool' = False)

Alias of load_pwhl_skater_boxscores() for naming parity with fastRhockey (R).

Parameters

ParameterTypeDefaultDescription
seasons
return_as_pandasboolFalse

load_pwhl_team_box(seasons, return_as_pandas: 'bool' = False)

Alias of load_pwhl_team_boxscores() for naming parity with fastRhockey (R).

Parameters

ParameterTypeDefaultDescription
seasons
return_as_pandasboolFalse

Utilities & helpers

most_recent_pwhl_season() -> 'int'

Most-recent PWHL season as an end-year integer (max season_yr).

Other

pwhl_game_corsi(game_id: 'int', return_as_pandas: 'bool' = False) -> "'Union[pl.DataFrame, pd.DataFrame]'"

Player-level on-ice Corsi and Fenwick for a single PWHL game.

Computes shot-attempt counts for every player found on ice during a shot/blocked_shot/goal event, then joins their time-on-ice so per-60 rates are available.

Corsi/Fenwick note: the HockeyTech feed has no missed-shot event, so both metrics are proxies that count only shot + blocked_shot + goal. Every output row carries corsi_includes_missed = False.

Parameters

ParameterTypeDefaultDescription
game_idintHockeyTech game identifier (integer or string).
return_as_pandasboolFalseIf True, return a pandas.DataFrame instead of a polars.DataFrame.

Returns

One row per on-ice player with columns: - player_id (Utf8) - corsi_for, corsi_against (Int64) - corsi_for_pct (Float64) - fenwick_for, fenwick_against (Int64) - fenwick_for_pct (Float64) - toi_seconds (Int64, from shifts; null if player not in shift data) - corsi_for_per60 (Float64) - corsi_includes_missed (Boolean, always False)

col_nametypedescription
player_idcharacterUnique player identifier.
corsi_forinteger
corsi_againstinteger
corsi_for_pctdouble
fenwick_forinteger
fenwick_againstinteger
fenwick_for_pctdouble
corsi_includes_missedlogical
toi_secondsdouble
corsi_for_per60double

pwhl_game_shifts(game_id: 'int', return_as_pandas: 'bool' = False) -> "'Union[pl.DataFrame, pd.DataFrame]'"

Parsed shift stints for a single PWHL game.

Calls the HockeyTech modulekit/gameshifts endpoint and returns one row per player-shift stint via ~sportsdataverse.hockeytech._parsers.parse_shifts.

Parameters

ParameterTypeDefaultDescription
game_idintHockeyTech game identifier (integer or string).
return_as_pandasboolFalseIf True, return a pandas.DataFrame instead of a polars.DataFrame.

Returns

Columns include player_id, first_name, last_name, home, period, start_time, end_time, start_s, end_s, goal_on_shift, penalty_on_shift.

col_nametypedescription
game_idintegerUnique game identifier.
player_idintegerUnique player identifier.
first_namecharacterPlayer first name.
last_namecharacterPlayer last name.
jersey_numbercharacterJersey number.
homeintegerWhether the player's team was home.
periodintegerPeriod number.
start_timecharacterStart time (local).
end_timecharacterEnd time (local).
lengthcharacterLength of the streak in games.
start_sinteger
end_sdouble
goal_on_shiftinteger
penalty_on_shiftinteger

pwhl_game_summary(game_id: 'int') -> 'dict'

PWHL game summary — dict of frames (game/goals/penalties/shots_by_period/three_stars).

Parameters

ParameterTypeDefaultDescription
game_idint

pwhl_leaders(season: 'Optional[int]' = None, season_id: 'Optional[int]' = None, return_as_pandas: 'bool' = False) -> 'Any'

PWHL statistical leaders for a given season.

NOTE: the leadersExtended endpoint uses season_id (integer) to filter by season, not season (name string). The resolved integer is passed as the season_id param so historical-season requests return results.

Parameters

ParameterTypeDefaultDescription
seasonOptional[int]None
season_idOptional[int]None
return_as_pandasboolFalse

Returns

col_nametypedescription
rankintegerRank of the streak.
player_idcharacterUnique player identifier.
jersey_numbercharacterJersey number.
namecharacterTeam mascot name.
team_idcharacterUnique team identifier.
team_namecharacterTeam name.
team_codecharacterTeam abbreviation.
team_logocharacterURL to the team logo image.
team_logo_smallcharacter
stat_formattedcharacter
type_formattedcharacter
photocharacterURL to the player photo.
photo_smallcharacter
positioncharacterPlayer position.
divisioncharacterDivision identifier.

pwhl_player_box(game_id: 'int', return_as_pandas: 'bool' = False) -> 'Any'

PWHL player box score for a single game.

NOTE: returns an empty frame pending a captured fixture + correct endpoint wiring (A1.8 follow-up); not yet functional.

Parameters

ParameterTypeDefaultDescription
game_idint
return_as_pandasboolFalse

pwhl_player_game_log(player_id: 'int', return_as_pandas: 'bool' = False) -> 'Any'

PWHL player game-by-game log.

Parameters

ParameterTypeDefaultDescription
player_idint
return_as_pandasboolFalse

pwhl_player_info(player_id: 'int', return_as_pandas: 'bool' = False) -> 'Any'

PWHL player biographical info.

NOTE: returns an empty frame pending a captured fixture + correct endpoint wiring (A1.8 follow-up); not yet functional.

Parameters

ParameterTypeDefaultDescription
player_idint
return_as_pandasboolFalse

Search for PWHL players by name.

Parameters

ParameterTypeDefaultDescription
namestr
return_as_pandasboolFalse

Returns

col_nametypedescription
person_idcharacterUnique person identifier.
player_idcharacterUnique player identifier.
activecharacterWhether athlete is currently active.
first_namecharacterPlayer first name.
last_namecharacterPlayer last name.
phonetic_namecharacterPhonetic spelling of the player name.
shootscharacterShooting hand.
catchescharacterCatching hand (goalies).
heightcharacterPlayer height in inches.
weightcharacterPlayer weight in pounds.
rawbirthdatecharacter
birthdatecharacterDate of birth.
birthtowncharacterPlayer birth town.
birthprovcharacterPlayer birth province/state.
birthcntrycharacterPlayer birth country.
team_idcharacterUnique team identifier.
jersey_numbercharacterJersey number.
role_idcharacter
season_idcharacterSeason identifier.
role_namecharacter
all_rolescharacter
last_team_namecharacter
last_team_codecharacter
divisioncharacterDivision identifier.
positioncharacterPlayer position.
profile_imagecharacter
scorecharacterFinal score string.
last_active_datecharacter

pwhl_player_stats(player_id: 'int', return_as_pandas: 'bool' = False) -> 'Any'

PWHL player season stats across all seasons.

Parameters

ParameterTypeDefaultDescription
player_idint
return_as_pandasboolFalse

Returns

col_nametypedescription
season_idcharacterSeason identifier.
season_namecharacterFull season name (e.g., "2024-25 Regular Season").
shortnamecharacterPlayer short name.
playoffcharacterWhether the row is playoff statistics.
careercharacterWhether this is a career-stats season.
sopt_track_faceoffscharacter
max_start_datecharacterLatest game start date for the season.
veteran_statuscharacterPlayer veteran status.
veterancharacterWhether the player is a veteran.
jersey_numbercharacterJersey number.
goalscharacterGoals scored.
games_playedcharacterGames played.
assistscharacterAssists.
pointscharacterTotal points (goals + assists).
plus_minuscharacterPlus/minus rating.
penalty_minutescharacterPenalty minutes.
power_play_goalscharacterPower-play goals.
power_play_assistscharacterPower-play assists.
shotscharacterShots on goal.
shootout_attemptscharacterShootout attempts.
shootout_goalscharacterShootout goals.
shootout_percentagecharacterShootout scoring percentage.
shooting_percentagecharacterShooting percentage.
shootout_winning_goalscharacterShootout game-winning goals.
points_per_gamecharacterPoints per game.
short_handed_goalscharacterShort-handed goals.
short_handed_assistscharacterShort-handed assists.
game_winning_goalscharacterGame-winning goals.
game_tieing_goalscharacterGame-tying goals.
faceoff_winscharacterFaceoff wins.
faceoff_attemptscharacterFaceoff attempts.
faceoff_pctcharacterFaceoff win percentage.
hitscharacterHits.
team_namecharacterTeam name.
team_codecharacterTeam abbreviation.
team_citycharacterTeam city.
team_nicknamecharacterTeam nickname.
team_idcharacterUnique team identifier.
activecharacterWhether athlete is currently active.
first_goalscharacterFirst goals of a game.
insurance_goalscharacterInsurance goals.
overtime_goalscharacterOvertime goals.
unassisted_goalscharacterUnassisted goals.
empty_net_goalscharacterEmpty-net goals.
penalty_minutes_per_gamecharacterPenalty minutes per game.
divisioncharacterDivision identifier.
ice_timecharacterTotal ice time.
ice_time_minutes_secondscharacterIce time in minutes and seconds.
shots_blocked_by_playercharacterShots blocked by the player.
stat_typecharacterStatistic type ("regular"/"playoff").

pwhl_player_toi(game_id: 'int', return_as_pandas: 'bool' = False) -> "'Union[pl.DataFrame, pd.DataFrame]'"

Per-player time-on-ice totals for a single PWHL game.

Fetches shifts via pwhl_game_shifts then aggregates via ~sportsdataverse.hockeytech._analytics.player_toi.

Parameters

ParameterTypeDefaultDescription
game_idintHockeyTech game identifier (integer or string).
return_as_pandasboolFalseIf True, return a pandas.DataFrame instead of a polars.DataFrame.

Returns

One row per player with player_id, first_name, last_name, toi_seconds, num_shifts, avg_shift_s, sorted by toi_seconds descending.

col_nametypedescription
player_idintegerUnique player identifier.
first_namecharacterPlayer first name.
last_namecharacterPlayer last name.
toi_secondsdouble
num_shiftsinteger
avg_shift_sdouble

pwhl_playoff_bracket(season: 'Optional[int]' = None, season_id: 'Optional[int]' = None, return_as_pandas: 'bool' = False) -> 'Any'

PWHL playoff bracket for a given season.

Parameters

ParameterTypeDefaultDescription
seasonOptional[int]None
season_idOptional[int]None
return_as_pandasboolFalse

pwhl_schedule(season: 'Optional[int]' = None, season_id: 'Optional[int]' = None, return_as_pandas: 'bool' = False) -> 'Any'

PWHL schedule — one row per game (matches fastRhockey pwhl_schedule).

Parameters

ParameterTypeDefaultDescription
seasonOptional[int]None
season_idOptional[int]None
return_as_pandasboolFalse

Returns

col_nametypedescription
game_idcharacterUnique game identifier.
game_datecharacterGame date.
game_statuscharacterGame status text.
home_teamcharacterHome team name.
home_team_idcharacterHome team identifier.
home_scorecharacterHome team final score.
away_teamcharacterAway team name.
away_team_idcharacterAway team identifier.
away_scorecharacterAway team final score.
venuecharacterVenue where the game was played.
season_idcharacterSeason identifier.
game_typecharacterGame type the row belongs to.

pwhl_scorebar(return_as_pandas: 'bool' = False) -> 'Any'

PWHL live scorebar (today ± 3 days).

Parameters

ParameterTypeDefaultDescription
return_as_pandasboolFalse

Returns

col_nametypedescription
idcharacterUnique player identifier.
season_idcharacterSeason identifier.
league_idcharacterLeague identifier of the team.
game_numbercharacterGame number within the schedule.
game_lettercharacter
game_typecharacterGame type the row belongs to.
quick_scorecharacter
datecharacterGame date (ISO 8601 datetime string).
flo_core_event_idcharacter
flo_live_event_idcharacter
game_datecharacterGame date.
game_date_iso8601character
scheduled_timecharacter
scheduled_formatted_timecharacter
timezonecharacterTime zone of the transaction.
ticket_urlcharacter
home_idcharacterHome team ESPN identifier.
home_codecharacter
home_citycharacterHometown of the athlete.
home_nicknamecharacter
home_long_namecharacter
home_divisioncharacterHome team division.
home_goalscharacterHome goals in the period.
home_audio_urlcharacter
home_video_urlcharacter
home_webcast_urlcharacter
visitor_idcharacter
visitor_codecharacter
visitor_citycharacter
visitor_nicknamecharacter
visitor_long_namecharacter
visiting_divisioncharacterVisiting team division.
visitor_goalscharacter
visitor_audio_urlcharacter
visitor_video_urlcharacter
visitor_webcast_urlcharacter
periodcharacterPeriod number.
period_name_shortcharacter
period_name_longcharacter
game_clockcharacterGame clock.
game_summary_urlcharacter
home_winscharacterWins at home.
home_regulation_lossescharacter
home_ot_lossescharacterHome overtime losses.
home_shootout_lossescharacter
visitor_winscharacter
visitor_regulation_lossescharacter
visitor_ot_lossescharacter
visitor_shootout_lossescharacter
game_statuscharacterGame status text.
intermissioncharacter
game_status_stringcharacter
game_status_string_longcharacter
ordcharacter
venue_namecharacterName of the venue.
venue_locationcharacter
league_namecharacterLeague name.
league_codecharacter
timezone_shortcharacter
home_logocharacterHome team logo URL.
visitor_logocharacter
flo_hockey_urlcharacter
combined_client_codecharacter

pwhl_season_id(return_as_pandas: 'bool' = False) -> 'Any'

All PWHL seasons with end-year + game-type labels (HockeyTech seasons).

Parameters

ParameterTypeDefaultDescription
return_as_pandasboolFalse

Returns

col_nametypedescription
season_idintegerSeason identifier.
season_namecharacterFull season name (e.g., "2024-25 Regular Season").
season_shortcharacterShort season name.
careercharacterWhether this is a career-stats season.
playoffcharacterWhether the row is playoff statistics.
start_datecharacterSeason start date.
end_datecharacterSeason end date.
season_yrintegerYear derived from the season name (concluding year).
game_type_labelcharacterGame type: "preseason", "regular", or "playoffs".

pwhl_standings(season: 'Optional[int]' = None, season_id: 'Optional[int]' = None, return_as_pandas: 'bool' = False) -> 'Any'

PWHL standings — one row per team.

Parameters

ParameterTypeDefaultDescription
seasonOptional[int]None
season_idOptional[int]None
return_as_pandasboolFalse

Returns

col_nametypedescription
team_codecharacterTeam abbreviation.
lossescharacterLosses.
regulation_winscharacterWins in regulation.
pointscharacterTotal points (goals + assists).
goals_forcharacterGoals for.
goals_againstcharacterGoals against.
non_reg_winscharacterNon-regulation wins.
non_reg_lossescharacterNon-regulation losses.
games_remainingcharacterGames remaining in the season.
percentagecharacter
overall_rankcharacterOverall recruit ranking (top recruits only; may be NA).
games_playedcharacterGames played.
team_rankintegerTeam rank in the standings.
teamcharacterTeam name.
winsintegerWins.

pwhl_stats(season: 'Optional[int]' = None, season_id: 'Optional[int]' = None, position: 'str' = 'skaters', return_as_pandas: 'bool' = False) -> 'Any'

PWHL aggregate stats by season and position.

Parameters

ParameterTypeDefaultDescription
seasonOptional[int]None
season_idOptional[int]None
positionstr'skaters'
return_as_pandasboolFalse

Returns

col_nametypedescription
player_idcharacterUnique player identifier.
shortnamecharacterPlayer short name.
first_namecharacterPlayer first name.
last_namecharacterPlayer last name.
namecharacterTeam mascot name.
phonetic_namecharacterPhonetic spelling of the player name.
activecharacterWhether athlete is currently active.
heightcharacterPlayer height in inches.
weightcharacterPlayer weight in pounds.
last_years_clubcharacterPlayer's club in the previous season.
agecharacterPlayer age.
shootscharacterShooting hand.
positioncharacterPlayer position.
suspension_games_remainingcharacterSuspension games remaining.
suspension_indefinitecharacterWhether the suspension is indefinite.
rookiecharacterWhether the player is a rookie.
veterancharacterWhether the player is a veteran.
draft_eligiblecharacterWhether the player is draft eligible.
jersey_numbercharacterJersey number.
team_namecharacterTeam name.
team_codecharacterTeam abbreviation.
team_idcharacterUnique team identifier.
divisioncharacterDivision identifier.
birthdatecharacterDate of birth.
birthdate_yearcharacterPlayer birth year.
hometowncharacterProspect hometown.
homeprovcharacterPlayer home province/state.
homecntrycharacterPlayer home country.
birthtowncharacterPlayer birth town.
birthprovcharacterPlayer birth province/state.
birthcntrycharacterPlayer birth country.
hometownprovcharacterPlayer hometown and province/state.
homeplacecharacterPlayer home place description.
games_playedcharacterGames played.
game_winning_goalscharacterGame-winning goals.
game_tieing_goalscharacterGame-tying goals.
first_goalscharacterFirst goals of a game.
insurance_goalscharacterInsurance goals.
unassisted_goalscharacterUnassisted goals.
empty_net_goalscharacterEmpty-net goals.
overtime_goalscharacterOvertime goals.
ice_timecharacterTotal ice time.
ice_time_avgcharacterAverage ice time.
goalscharacterGoals scored.
shotscharacterShots on goal.
loose_ball_recoveriescharacterLoose ball recoveries.
caused_turnoverscharacterTurnovers caused.
turnoverscharacterTurnovers committed.
hitscharacterHits.
shots_blocked_by_playercharacterShots blocked by the player.
ice_time_minutes_secondscharacterIce time in minutes and seconds.
shooting_percentagecharacterShooting percentage.
assistscharacterAssists.
pointscharacterTotal points (goals + assists).
points_per_gamecharacterPoints per game.
plus_minuscharacterPlus/minus rating.
penalty_minutescharacterPenalty minutes.
penalty_minutes_per_gamecharacterPenalty minutes per game.
ice_time_per_game_avgcharacterAverage ice time per game.
hits_per_game_avgcharacterAverage hits per game.
minor_penaltiescharacterMinor penalties.
major_penaltiescharacterMajor penalties.
power_play_goalscharacterPower-play goals.
power_play_assistscharacterPower-play assists.
power_play_pointscharacterPower play points.
short_handed_goalscharacterShort-handed goals.
short_handed_assistscharacterShort-handed assists.
short_handed_pointscharacterShort-handed points.
shootout_goalscharacterShootout goals.
shootout_attemptscharacterShootout attempts.
shootout_winning_goalscharacterShootout game-winning goals.
shootout_games_playedcharacterGames played that went to a shootout.
faceoff_attemptscharacterFaceoff attempts.
faceoff_winscharacterFaceoff wins.
faceoff_pctcharacterFaceoff win percentage.
faceoff_wacharacterFaceoff wins-to-attempts metric.
shots_oncharacterShots on goal count.
shootout_percentagecharacterShootout scoring percentage.
latest_team_idcharacterMost recent team identifier.
num_teamscharacterNumber of teams the player has played for.
logocharacterURL to the team logo.
rankintegerRank of the streak.
player_page_linkcharacterURL to the player page.
player_imagecharacter
namelinkcharacterHTML link for the player name.
teamlinkcharacterHTML link for the team.
team_breakdownintegerPer-team statistical breakdown.
is_totaldoubleWhether the row is a season total.

pwhl_streaks(return_as_pandas: 'bool' = False) -> 'Any'

Current PWHL player/team streaks.

Parameters

ParameterTypeDefaultDescription
return_as_pandasboolFalse

pwhl_team_roster(team_id: 'int', season: 'Optional[int]' = None, season_id: 'Optional[int]' = None, return_as_pandas: 'bool' = False) -> 'Any'

PWHL team roster for a given team + season.

Parameters

ParameterTypeDefaultDescription
team_idint
seasonOptional[int]None
season_idOptional[int]None
return_as_pandasboolFalse

Returns

col_nametypedescription
idcharacterUnique player identifier.
person_idcharacterUnique person identifier.
activecharacterWhether athlete is currently active.
first_namecharacterPlayer first name.
last_namecharacterPlayer last name.
phonetic_namecharacterPhonetic spelling of the player name.
display_namecharacterPlayer display name.
shootscharacterShooting hand.
hometowncharacterProspect hometown.
homeprovcharacterPlayer home province/state.
homecntrycharacterPlayer home country.
homeplacecharacterPlayer home place description.
birthtowncharacterPlayer birth town.
birthprovcharacterPlayer birth province/state.
birthcntrycharacterPlayer birth country.
birthplacecharacter
heightcharacterPlayer height in inches.
weightcharacterPlayer weight in pounds.
height_hyphenatedcharacter
hiddencharacter
current_teamcharacter
player_idcharacterUnique player identifier.
statuscharacterStatus string (e.g. captain markers).
birthdatecharacterDate of birth.
birthdate_yearcharacterPlayer birth year.
rawbirthdatecharacter
latest_team_idcharacterMost recent team identifier.
veteran_statuscharacterPlayer veteran status.
veteran_descriptioncharacter
team_namecharacterTeam name.
divisioncharacterDivision identifier.
tp_jersey_numbercharacter
rookiecharacterWhether the player is a rookie.
position_idcharacterOfficial position identifier.
positioncharacterPlayer position.
nhlteamcharacter
player_id_1character
is_rookiecharacterWhether the player is a rookie.
hcharacterHits.
wcharacterWins.
draft_statuscharacter
namecharacterTeam mascot name.
player_imagecharacter
catchescharacterCatching hand (goalies).

pwhl_teams(season: 'Optional[int]' = None, season_id: 'Optional[int]' = None, return_as_pandas: 'bool' = False) -> 'Any'

PWHL teams for a given season.

Parameters

ParameterTypeDefaultDescription
seasonOptional[int]None
season_idOptional[int]None
return_as_pandasboolFalse

Returns

col_nametypedescription
team_namecharacterTeam name.
team_idcharacterUnique team identifier.
team_codecharacterTeam abbreviation.
team_nicknamecharacterTeam nickname.
team_labelcharacterShort city label.
divisioncharacterDivision identifier.
team_logocharacterURL to the team logo image.

pwhl_transactions(return_as_pandas: 'bool' = False) -> 'Any'

PWHL roster transactions.

Parameters

ParameterTypeDefaultDescription
return_as_pandasboolFalse