League Class Documentation
Represents a sports league with associated details, such as teams, events, and rankings.
Attributes:
Name | Type | Description |
---|---|---|
espn_instance |
PyESPN
|
The ESPN API instance used to fetch data. |
league_json |
dict
|
The raw JSON data representing the league. |
ref |
str
|
The reference ID of the league. |
id |
str
|
The unique ID of the league. |
name |
str
|
The name of the league. |
display_name |
str
|
The display name of the league. |
abbreviation |
str
|
The abbreviation of the league. |
short_name |
str
|
The short name of the league. |
slug |
str
|
A URL-friendly string for the league. |
is_tournament |
bool
|
Flag indicating if the league is a tournament. |
season |
dict
|
The current season details for the league. |
seasons |
list
|
A list of seasons for the league. |
franchises |
list
|
A list of franchises in the league. |
teams |
list
|
A list of teams participating in the league. |
group |
dict
|
The group associated with the league. |
groups |
list
|
A list of groups in the league. |
events |
list
|
A list of events related to the league. |
notes |
str
|
Additional notes about the league. |
rankings |
list
|
Rankings of teams or players within the league. |
draft |
dict
|
The draft details of the league. |
links |
list
|
Hyperlinks associated with the league's data. |
Methods:
Name | Description |
---|---|
__repr__ |
Returns a string representation of the League instance. |
_set_league_json |
Populates the attributes of the League instance from the given JSON. |
Source code in pyespn/classes/league.py
__init__(espn_instance, league_json)
Initializes a League instance using the provided ESPN API instance and league JSON data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
espn_instance
|
PyESPN
|
The ESPN API instance. |
required |
league_json
|
dict
|
The raw JSON data representing the league. |
required |
Source code in pyespn/classes/league.py
__repr__()
Returns a string representation of the betting Provider instance.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A formatted string with the Providers information . |