Player Class Documentation
Represents a player within the ESPN API framework.
This class stores player-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 |
player_json |
dict
|
The raw player data retrieved from the ESPN API. |
api_ref |
str | None
|
API reference link for the player. |
id |
str | None
|
The unique identifier for the player. |
uid |
str | None
|
The ESPN UID for the player. |
guid |
str | None
|
The GUID associated with the player. |
type |
str | None
|
The type of player (e.g., "athlete"). |
alternate_ids |
str | None
|
Alternative ID for the player. |
first_name |
str | None
|
The player's first name. |
last_name |
str | None
|
The player's last name. |
full_name |
str | None
|
The player's full name. |
display_name |
str | None
|
The player's display name. |
short_name |
str | None
|
A shorter version of the player's name. |
weight |
int | None
|
The player's weight in pounds. |
display_weight |
str | None
|
Formatted string of the player's weight. |
height |
int | None
|
The player's height in inches. |
display_height |
str | None
|
Formatted string of the player's height. |
age |
int | None
|
The player's age. |
date_of_birth |
str | None
|
The player's date of birth (YYYY-MM-DD). |
debut_year |
int | None
|
The player's debut year. |
links |
list[dict]
|
A list of links related to the player. |
birth_city |
str | None
|
The player's birth city. |
birth_state |
str | None
|
The player's birth state. |
college_ref |
str | None
|
Reference link to the player's college. |
slug |
str | None
|
The player's slug identifier. |
jersey |
str | None
|
The player's jersey number. |
position_ref |
str | None
|
Reference link to the player's position. |
position_id |
str | None
|
The player's position ID. |
position_name |
str | None
|
The full name of the player's position. |
position_display_name |
str | None
|
The display name of the position. |
position_abbreviation |
str | None
|
The abbreviation of the position. |
position_leaf |
bool | None
|
Indicates if the position is a leaf node. |
position_parent_ref |
str | None
|
Reference link to the parent position. |
linked |
str | None
|
Linked player information. |
team_ref |
str | None
|
Reference link to the player's team. |
statistics_ref |
str | None
|
Reference link to the player's statistics. |
contracts_ref |
str | None
|
Reference link to the player's contracts. |
experience_years |
int | None
|
The number of years of experience the player has. |
active |
bool | None
|
Indicates whether the player is currently active. |
status_id |
str | None
|
The player's status ID. |
status_name |
str | None
|
The player's status name. |
status_type |
str | None
|
The type of player status. |
status_abbreviation |
str | None
|
Abbreviated form of the player's status. |
statistics_log_ref |
str | None
|
Reference link to the player's statistics log. |
Methods:
Name | Description |
---|---|
to_dict |
Returns the raw player JSON data as a dictionary. |
Source code in pyespn/classes/player.py
4 5 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 149 150 151 |
|
__init__(espn_instance, player_json)
Initializes a Player instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
espn_instance
|
PYESPN
|
The parent |
required |
player_json
|
dict
|
The raw player data retrieved from the ESPN API. |
required |
Source code in pyespn/classes/player.py
__repr__()
Returns a string representation of the Player instance.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A formatted string with the players's name, debut year and jersey. |
Source code in pyespn/classes/player.py
to_dict()
Returns the raw player JSON data as a dictionary.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
The original player data retrieved from the ESPN API. |