BurntSushi / nflgame

An API to retrieve and read NFL Game Center JSON data. It can work with real-time data, which can be used for fantasy football.
http://pdoc.burntsushi.net/nflgame
The Unlicense
1.27k stars 413 forks source link

Can not retrieve Post Season Data for weeks 2 and 3 #195

Open drwofle21 opened 8 years ago

drwofle21 commented 8 years ago

I have been having this issue for sometime now. I decided to try reinstalling python inside a virtual machine. Despite a fresh installation, I am still unable to access the games for weeks 2 and 3 for the post season.

I am using version '1.2.19' as shown by nflgame version

The code used to attempt this is:

import nflgame
games = nflgame.games(2015, week=2, kind='POST')
plays = nflgame.combine_plays(games)

print nflgame.__version__

for g in games:
    print g

in the mean time, can someone upload the missing games from the json file onto github?

johnsgill3 commented 8 years ago

This appears to be a duplicate of #238