nhl_scrape

0.0.3 • Public • Published

nhl_scrape

turn nhl.com schedule data into json

just give it the year (like 20152016) you want to scrape

npm install nhl_scrape
var nhl_scrape=require("nhl_scrape")
 
nhl_scrape("20142015", function(data){
  var leafs_wins= data.filter(function(game){
    return game.winner==="Toronto"
  })
  console.log("(only) " + leafs_wins.length)
})

a digest of the format:

[
  { date: 'Sat Apr 11, 2015',
    time: '10:00 PM ET',
    home_team: 'Vancouver',
    away_team: 'Edmonton',
    score: { Edmonton: 5, Vancouver: 6 },
    links:
     { recap: 'http://www.nhl.com/gamecenter/en/recap?id=2014021230',
       video: 'http://video.nhl.com/videocenter/console?hlg=20142015,2,1230&lang=en',
       photos: 'http://www.nhl.com/ice/gallerylanding.htm?id=53958' },
    winner: 'Vancouver',
    loser: 'Edmonton'
  },
  ...
  ]

don't sue me

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i nhl_scrape

Weekly Downloads

5

Version

0.0.3

License

MIT

Last publish

Collaborators

  • spencermountain