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
Every query related to the year 2018 are much slower than query related to other years.
Here is an example, but same pattern apply to every query I've tried.
import time import mlbgame start = time.time() a = mlbgame.games(2018, months=3, home="Blue Jays", away="Blue Jays") end = time.time() print(end - start) >>> 170.45325899124146 start = time.time() a = mlbgame.games(2017, months=3, home="Blue Jays", away="Blue Jays") end = time.time() print(end - start) >>> 4.973407983779907
Any idea why or suggestion?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Every query related to the year 2018 are much slower than query related to other years.
Here is an example, but same pattern apply to every query I've tried.
Any idea why or suggestion?
The text was updated successfully, but these errors were encountered: