Skip to content

Instantly share code, notes, and snippets.

@gbidkar
Last active March 11, 2019 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbidkar/62933a1d6674afddd19eb2feb929d1ec to your computer and use it in GitHub Desktop.
Save gbidkar/62933a1d6674afddd19eb2feb929d1ec to your computer and use it in GitHub Desktop.
Node.js script to extract Haaretz's "survey of surveys", of Israeli Elections 2019 information as a JSON object
///
/// SURVEYS.JS
/// Extracts Haaretz's 2019 Elections survey JSON data.
/// Author: @gbidkar
///
/// npm install --save request
///
/// Final voting information is 'surveys' variable.
const request = require('request');
const ElectionsDataURL = 'https://www.haaretz.co.il/news/elections/EXT-INTERACTIVE-1.6826451';
function extractSurveysData(body) {
let votesRawBegin = body.substring(body.indexOf('var xls'));
let votesRaw = votesRawBegin.substring(votesRawBegin.indexOf('{'), votesRawBegin.indexOf(';'));
return JSON.parse(votesRaw);
}
function printStatistics(surveyInfo) {
console.log(`There are ${surveyInfo.Surveys.length} surveys, spanning ${surveyInfo.Parties.length} parties.`);
}
request(ElectionsDataURL, (err, res, body) => {
let surveys = extractSurveysData(body);
printStatistics(surveys);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment