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

No Results for Current Postseason Games #287

Open dmcrow opened 7 years ago

dmcrow commented 7 years ago

In my understanding, the following code should return the Packers @ Falcons game from the conference round:

import nflgame
game = nflgame.one(2016, 3, 'ATL', 'GB', 'POST')
print game

When run, this returns "None". This is only happening for postseason games; regular season games appear as expected.

I've tried the solution offered by @ochawkeye for issue #283 with no luck.

Thanks in advance!