Team Class
Represents a sports team within the ESPN API framework.
This class stores team-related information and maintains a reference
to a PYESPN
instance, allowing access to league-specific details.
Attributes:
Name | Type | Description |
---|---|---|
espn_instance |
PYESPN
|
The parent |
team_json |
dict
|
The raw team data retrieved from the ESPN API. |
team_id |
str | None
|
The unique identifier for the team. |
guid |
str | None
|
The GUID associated with the team. |
uid |
str | None
|
The UID of the team. |
location |
str | None
|
The geographical location or city of the team. |
name |
str | None
|
The official name of the team. |
nickname |
str | None
|
The team's nickname. |
abbreviation |
str | None
|
The team's short abbreviation (e.g., "NYG", "LAL"). |
display_name |
str | None
|
The full display name of the team. |
short_display_name |
str | None
|
A shorter version of the display name. |
primary_color |
str | None
|
The team's primary color (hex code). |
alternate_color |
str | None
|
The team's alternate color (hex code). |
is_active |
bool | None
|
Indicates whether the team is currently active. |
is_all_star |
bool | None
|
Indicates if the team is an all-star team. |
logos |
list[str]
|
A list of URLs to the team’s logos. |
venue_json |
dict
|
The raw venue data associated with the team. |
home_venue |
Venue
|
The |
links |
dict
|
A dictionary mapping link types (e.g., "official site") to their URLs. |
Methods:
Name | Description |
---|---|
get_logo_img |
Returns the list of team logo URLs. |
get_team_colors |
Returns the team's primary and alternate colors. |
get_home_venue |
Retrieves the home venue of the team as a |
get_league |
Retrieves the league abbreviation associated with the team. |
to_dict |
Returns the raw team JSON data as a dictionary. |
Source code in pyespn/classes/team.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
|
__init__(espn_instance, team_json)
Initializes a Team instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
espn_instance
|
PYESPN
|
The parent |
required |
team_json
|
dict
|
The raw team data retrieved from the ESPN API. |
required |
Source code in pyespn/classes/team.py
__repr__()
Returns a string representation of the Team instance.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A formatted string with the team's location, name, abbreviation, and league. |
Source code in pyespn/classes/team.py
get_home_venue()
Retrieves the home venue of the team.
Returns:
Name | Type | Description |
---|---|---|
Venue |
Venue
|
The |
get_league()
Retrieves the league abbreviation from the associated PYESPN
instance.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The league abbreviation (e.g., "nfl", "nba", "cfb"). |
get_logo_img()
Retrieves the list of logo URLs associated with the team.
Returns:
Type | Description |
---|---|
list[str]
|
list[str]: A list of URLs to the team's logos. |
get_team_colors()
Retrieves the team's primary and alternate colors.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
A dictionary containing 'primary_color' and 'alt_color' keys with their respective hex values. |
Source code in pyespn/classes/team.py
to_dict()
Returns the raw team JSON data as a dictionary.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
The original team data retrieved from the ESPN API. |