Recruit Class Documentation
Represents a recruit in the ESPN recruiting system.
Attributes:
Name | Type | Description |
---|---|---|
recruit_json |
dict
|
The JSON data containing recruit details. |
espn_instance |
The ESPN API instance. |
|
api_ref |
str
|
API reference URL for the recruit. |
athlete |
dict
|
Dictionary containing athlete details. |
id |
str
|
The recruit's unique identifier. |
uid |
str
|
The unique identifier for the recruit. |
guid |
str
|
The global unique identifier. |
type |
str
|
Type of recruit data. |
alternate_ids |
str
|
Alternative ID for the recruit. |
first_name |
str
|
First name of the recruit. |
last_name |
str
|
Last name of the recruit. |
full_name |
str
|
Full name of the recruit. |
display_name |
str
|
Display name of the recruit. |
short_name |
str
|
Shortened version of the recruit's name. |
weight |
int
|
The recruit's weight in pounds (if available). |
height |
int
|
The recruit's height in inches (if available). |
recruiting_class |
str
|
The recruiting class year. |
grade |
str
|
Grade assigned to the recruit. |
links |
list
|
A list of links related to the recruit. |
birth_city |
str
|
City where the recruit was born. |
birth_state |
str
|
State where the recruit was born. |
high_school_id |
str
|
The recruit's high school ID. |
high_school_name |
str
|
Name of the recruit's high school. |
high_school_state |
str
|
State where the recruit's high school is located. |
slug |
str
|
A unique slug identifier for the recruit. |
position_ref |
str
|
API reference for the recruit's position. |
position_id |
str
|
The recruit's position ID. |
position_name |
str
|
Name of the recruit's position. |
position_display_name |
str
|
Display name of the position. |
position_abbreviation |
str
|
Abbreviated name of the recruit's position. |
position_leaf |
bool
|
Whether the position is a leaf node in the hierarchy. |
position_parent_ref |
str
|
Reference to the parent position (if any). |
linked |
dict
|
Additional linked data related to the recruit. |
schools |
list
|
A list of schools associated with the recruit. |
status_id |
str
|
The ID representing the recruit's status. |
status_name |
str
|
Description of the recruit's status. |
rank |
int or None
|
The recruit's overall rank, extracted from attributes. |
Methods:
Name | Description |
---|---|
__repr__ |
Returns a string representation of the recruit instance. |
_set_recruit_data |
Extracts and sets player data from the provided JSON. |
Source code in pyespn/classes/player.py
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
|
__init__(recruit_json, espn_instance)
Initializes a Recruit instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
recruit_json
|
dict
|
The JSON data containing recruit details. |
required |
espn_instance
|
PYESPN
|
The ESPN API instance. |
required |
Source code in pyespn/classes/player.py
__repr__()
Returns a string representation of the Recruit instance.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A formatted string with the recruits's name, debut year and jersey. |