Draft
DraftPick Class
Represents a draft pick in a sports league draft.
Attributes:
Name | Type | Description |
---|---|---|
pick_json |
dict
|
The raw JSON data representing the draft pick. |
espn_instance |
PyESPN
|
The ESPN API instance for fetching related data. |
athlete |
Player or None
|
The Player instance representing the drafted athlete. |
team |
Team or None
|
The Team instance representing the team that made the pick. |
round_number |
int or None
|
The round in which the pick was made. |
pick_number |
int or None
|
The pick number within the round. |
overall_number |
int or None
|
The overall pick number in the draft. |
Methods:
Name | Description |
---|---|
__repr__ |
Returns a string representation of the DraftPick instance. |
_get_pick_data |
Extracts and sets relevant data from the draft pick JSON. |
Source code in pyespn/classes/draft.py
__init__(espn_instance, pick_json)
Initializes a DraftPick instance with data from the provided JSON.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
espn_instance
|
PyESPN
|
The ESPN API instance. |
required |
pick_json
|
dict
|
The raw JSON data representing the draft pick. |
required |
Source code in pyespn/classes/draft.py
__repr__()
Returns a string representation of the draftpick instance.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A formatted string with class details |