-
Notifications
You must be signed in to change notification settings - Fork 264
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
Missing 2017 and 2018 schedule data #298
Comments
Did you find a solution for this? When i update i am not getting any 2017 data? |
I have not yet found a solution |
I believe my fork of nflgame has all of the games played in the regular and postseason of 2017 included. No schedule has yet been posted to nfl.com for the 2018 season |
ochawkeye...how do i implement your fork? I am use to just running the nfldb-update script and the most recent data is pulled. This looks like something different? |
If you know of a solution to keep nfldb-udpate working, that would be ideal. I cant seem to figure out why when i ran it last year i was getting 2017 data and now I only get 2016 data. I did have to reinstall everything on a new machine so wondering if i just did that piece wrong...but doesnt seem like it |
Wellllll....I'm guessing that you're still running the original install from PyPI that hasn't been updated in ages. If you are, then you can go one of two routes...
|
Doesnt look like the schedule.json solution worked. This is what i get when running nfldb if that might help? As you can tell i am not a developer :) STARTING NFLDB UPDATE AT 2018-07-09 16:10:38.037000 |
With the second solution i get the following response. I didn't think git was something that needed to be installed...at least this isnt described in any of the tutorials i have gone through C:\Users\matth>pip install git+https://github.com/BurntSushi/nflgame.git |
The See #252 for related discussion on that. For your second issue...Yes, if you aren't able to |
Interesting so it looks like it added a ton more games...but i am still not getting 2017? STARTING NFLDB UPDATE AT 2018-07-09 16:29:28.216000 |
This was after installing git and then updating pip install git+https://github.com/BurntSushi/nflgame.git I feel like i am close but something is still missing |
ochawkeye...would you be interested in working on a custom solution for me? Can work out payment arrangements of some sort. Let me know. Thanks |
I'm not interested in taking payment, no, but I'm happy to assist in getting you going. Would be good to see what a semi-clean install looks like so I could take some notes to maybe get something documented to assist others in the future. If you're comfortable with me temporarily accessing your system, run TeamViewer QuickStart and contact me at benjaminDOTjDOTschroederATgmailDOTcom. I believe your schedule & games are now updating properly but you've still got an issue with the |
Any updates on getting the 2018 players roster? I get all the players coming in. But when I run it with 2018, 'Regular' or 'Preseason' -Front-End developer lost in the back-end world! |
There's not anything for you to get yet as far as a player roster. The query you performed above is aggregating statistics compiled over the course of the 2017 regular season. There haven't been any plays yet run in the 2018 regular or preseason. I succeeded in updating my schedule today and can see the games with import nfldb
db = nfldb.connect()
q = nfldb.Query(db)
q.game(season_year=2018, season_type='Regular', week=1)
for game in q.as_games():
print game
print 'v'*25
for pp in q.as_aggregate():
print pp.player
print '^'*25
|
I am missing schedule dates from 2017 up. I have seen this issue elsewhere, but the solutions suggested are not working for me as these files are not in scripts:
nfldb-update has a '--update-schedules' flag, but it does not add in the missing years.
Any ideas?
The text was updated successfully, but these errors were encountered: