Event
Event Class
Represents a sports event within the ESPN API framework.
This class encapsulates event details such as the event's name, date, venue, and the competing teams.
Attributes:
Name | Type | Description |
---|---|---|
event_json |
dict
|
The raw JSON data representing the event. |
espn_instance |
PYESPN
|
The ESPN API instance for fetching additional data. |
url_ref |
str
|
The API reference URL for the event. |
event_id |
int
|
The unique identifier of the event. |
date |
str
|
The date of the event. |
event_name |
str
|
The full name of the event. |
short_name |
str
|
The short name or abbreviation of the event. |
competition_type |
str
|
The type of competition (e.g., "regular", "playoff"). |
venue_json |
dict
|
The raw JSON data representing the event venue. |
event_venue |
Venue
|
A |
event_notes |
list
|
Additional notes about the event. |
home_team |
Team or None
|
The first competing team, initialized after |
away_team |
Team or None
|
The second competing team, initialized after |
Methods:
Name | Description |
---|---|
_load_teams |
Fetches and assigns the competing teams using API references. |
to_dict |
Returns the raw JSON representation of the event. |
Source code in pyespn/classes/event.py
__init__(event_json, espn_instance)
Initializes an Event instance with the provided JSON data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
event_json
|
dict
|
The JSON data containing event details. |
required |
espn_instance
|
PYESPN
|
The parent |
required |
Source code in pyespn/classes/event.py
__repr__()
Returns a string representation of the Team instance.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A formatted string with the events data. |
to_dict()
Converts the Event instance to its original JSON dictionary.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
The event's raw JSON data. |