play-by-play-extractdeprecated

Used to extract football play-by-play data from a popular sports website

Usage no npm install needed!

<script type="module">
  import playByPlayExtract from 'https://cdn.skypack.dev/play-by-play-extract';
</script>

README

This project has been deprecated. All active development has been moved to the cfb-data project.

playbyplay-extract

  • extract play-by-play data for football games
  • initially intended for use with NCAA data, but should also work for NFL games

install

npm install playbyplay-extract

use

var game = require('play-by-play-extract');

var gameId = 400763535;

game.getGameData(gameId, function(game){
    // log to the console, write to a file or database, or do whatever you will
    console.log(game);
});

license

MIT