Betting
Betting Class Documentation
Represents betting data within the ESPN API framework.
This class encapsulates details about betting providers and their odds.
Attributes:
Name | Type | Description |
---|---|---|
betting_json |
dict
|
The raw JSON data representing the betting details. |
espn_instance |
PYESPN
|
The ESPN API instance for fetching additional data. |
providers |
list
|
A list of |
Methods:
Name | Description |
---|---|
_set_betting_data |
Parses and stores betting data, including providers. |
__repr__ |
Returns a string representation of the Betting instance. |
Source code in pyespn/classes/betting.py
__init__(espn_instance, betting_json)
Initializes a Betting instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
espn_instance
|
PYESPN
|
The ESPN API instance for API interaction. |
required |
betting_json
|
dict
|
The JSON data containing betting information. |
required |
Source code in pyespn/classes/betting.py
__repr__()
Returns a string representation of the Betting instance.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A formatted string with the bettings information . |