-
Notifications
You must be signed in to change notification settings - Fork 534
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: How to get the list of in season tournament games? #442
Comments
@jaratec - Will get this look at this weekend. |
Was a solution ever found by any chance? |
@jaratec / @sebasdarius - What are you looking for out of these calls? A PR was merged last year for In Season Tournaments (#363). Notes:
I saw that on a few areas of the NBA with drop-down fields on stats, the "NBA Cup" (aka In Season Tournament) wasn't present. That gives me an indication that it may not be supported in all cases. Here's a Postman call I use. When I used IST if obviously failed.
|
This code worked for me still if it helps anyone |
NBA API Version
1.4.1
Issue
How can I use the leaguegamefinder endpoint to get the list of in-season tournament games? The following code snippet does not work.
Also, are the valid values for season_type_nullable parameter documented?
Code
from nba_api.stats.endpoints import leaguegamefinder
gamefinder = leaguegamefinder.LeagueGameFinder(season_nullable='2023-24',
league_id_nullable='00',
season_type_nullable='IST', # what are the valid values? 'Regular Season', 'IST', 'PlayIn', 'Playoffs'
player_or_team_abbreviation='T')
The text was updated successfully, but these errors were encountered: