-
Notifications
You must be signed in to change notification settings - Fork 667
Description
Is there any timeline for data on the 2024 playoffs?
Perhaps I am using the wrong API but I seem to be getting a blank rowSet for the 2024 playoffs. When I am querying for the 2023 playoffs and previous years I am getting a full detailed list of all playoffs games and teams with game IDs but the 2024 playoffs query is blank
from nba_api.stats.endpoints import commonplayoffseries
def get_playoffs():
playoffs = commonplayoffseries.CommonPlayoffSeries(season='2024')
print(playoffs.get_dict())
returns
{'resource': 'commonplayoffseries', 'parameters': {'LeagueID': '00', 'Season': '2024', 'SeriesID': None}, 'resultSets': [{'name': 'PlayoffSeries', 'headers': ['GAME_ID', 'HOME_TEAM_ID', 'VISITOR_TEAM_ID', 'SERIES_ID', 'GAME_NUM'], 'rowSet': []}]}
Wherein a season of 2023 provides games up to and including the finals.
I suspect perhaps that the data has yet to be populated/connected until a certain date.
Finally, if anyone could guide me on the requests for the playins it would be very helpful :)