|
|
|
|
|
by bmelton
4129 days ago
|
|
The NFL game feed is a combination of a couple of feeds. There's http://www.nfl.com/liveupdate/scorestrip -- which will show you the events and IDs that are currently going active. Right now, in the off-season, it will undoubtedly be blank. You can then take those values and plug them into this one: http://www.nfl.com/liveupdate/game-center/%s/%s_gtd.json % (year, game_id) For something to illustrate how they work together, you can check out this repository:
https://github.com/BurntSushi/nflgame I don't remember the one for the NBA, as I've never used it, but I saw an article on reddit a few weeks ago about how to get the data from the NBA using their RSS feed, so I have a good faith belief that it exists. |
|