toddrob99 / MLB-StatsAPI

Python wrapper for MLB Stats API
GNU General Public License v3.0
513 stars 98 forks source link

Extra Games in Schedule #137

Closed Haglothor closed 2 months ago

Haglothor commented 2 months ago

When pulling the game ids for a season within the opening day and last day of regular season for 2023 season, I am getting more than 162 games for some teams. schedule = statsapi.schedule(team=id[1], start_date='03/30/2023', end_date='10/02/2023') image Every team has at least 162 games and opening day game ids match, but some teams the last game of regular season is not in the 162nd spot. Any idea on how to fix this?

toddrob99 commented 2 months ago

Check the number of unique game ids, along with game status and original game date. Most likely you're counting postponed games more than once.

Haglothor commented 2 months ago

That worked, thank you!