We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Where would I be able to find the game_id? MLB website?
The text was updated successfully, but these errors were encountered:
Same im a bit confused about this
Sorry, something went wrong.
@bcurl21 @mkono87 you can retrieve game_id from other endpoints available on the API, such as the "day" or "games" resources.
game_id
None of the game ids work
import mlbgame IN_PROGRESS = 'IN_PROGRESS' games = mlbgame.day(2021, 7, 31) for game in games: if game.game_status != IN_PROGRESS: team_stats = mlbgame.team_stats(game.game_id) print(team_stats) prediction = {} prediction['home_team'] = game.home_team prediction['away_team'] = game.away_team prediction['game_id'] = game.game_id print(prediction)
No branches or pull requests
Where would I be able to find the game_id? MLB website?
The text was updated successfully, but these errors were encountered: