Created
June 7, 2018 22:36
-
-
Save Planeshifter/6e598e73635a6ea5e97599b7a1b1ce9b to your computer and use it in GitHub Desktop.
scraper.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var request = require('request'); | |
var $ = require('cheerio'); | |
var url = 'http://games.espn.com/fba/scoreboard?leagueId=21154&scoringPeriodId=161'; | |
request(url, function(err, resp, body){ | |
console.log( body ) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment