Venue
Venue Class
Represents a venue with associated details, such as name, address, and type of surface.
Attributes:
Name | Type | Description |
---|---|---|
venue_json |
dict
|
The raw JSON data representing the venue. |
venue_id |
str
|
The unique ID of the venue. |
name |
str
|
The full name of the venue. |
address_json |
dict
|
The address details of the venue. |
grass |
bool
|
Flag indicating if the venue has a grass surface. |
indoor |
bool
|
Flag indicating if the venue is indoors. |
images |
list
|
A list of image URLs related to the venue. |
Methods:
Name | Description |
---|---|
__repr__ |
Returns a string representation of the Venue instance. |
to_dict |
Converts the venue data to a dictionary format. |
Source code in pyespn/classes/venue.py
__init__(venue_json)
Initializes a Venue instance using the provided venue JSON data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
venue_json
|
dict
|
The raw JSON data representing the venue. |
required |
Source code in pyespn/classes/venue.py
__repr__()
Returns a string representation of the Team instance.
Returns:
Name | Type | Description |
---|---|---|
str |
A formatted string with the venues name. |
to_dict()
Converts the venue data to a dictionary format.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
The raw JSON data representing the venue. |