API reference¶
ceblpy
¶
load_cebl_officials(seasons=None)
¶
Loads CEBL game officials.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seasons
|
int | list[int] | None
|
A season, a list of seasons, or None for all of them. |
None
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
One row per official per game. Games with no officials recorded produce no rows. |
Examples:
load_cebl_pbp(seasons=None)
¶
Loads CEBL play-by-play.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seasons
|
int | list[int] | None
|
A season, a list of seasons, or None for all of them. |
None
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
One row per event, oldest first, with shot coordinates on shooting events. |
Examples:
load_cebl_player_boxscore(seasons=None)
¶
Loads CEBL player box scores.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seasons
|
int | list[int] | None
|
A season, a list of seasons, or None for all of them. |
None
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
One row per player per game, including players who didn't play. |
Examples:
load_cebl_schedule(seasons=None)
¶
Loads the CEBL schedule.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seasons
|
int | list[int] | None
|
A season, a list of seasons, or None for all of them. |
None
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
One row per game. |
Examples:
load_cebl_team_boxscore(seasons=None)
¶
Loads CEBL team box scores.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seasons
|
int | list[int] | None
|
A season, a list of seasons, or None for all of them. |
None
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
One row per team per game, home team first. Includes the head coach and assistants. |
Examples: