Created
June 29, 2019 06:50
-
-
Save mannharleen/c9b95709bbfc4bc85ea971674cba5d7e to your computer and use it in GitHub Desktop.
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
const rp = require('request-promise-native') | |
const cheerio = require('cheerio') | |
let resP = rp('https://www.keepinspiring.me/famous-quotes/') | |
resP.then(res => { | |
let $ = cheerio.load(res) | |
let quotes = $('div.author-quotes').get() | |
let toPrint = [] | |
for (quote of quotes) { | |
try { | |
if (quote.childNodes[0].type === "text" && quote.childNodes[0].data.match(/\n/g) == null) { | |
let toPush = { | |
quote: quote.children[0].data, | |
author: quote.children[1].children[0].data | |
} | |
toPrint.push(toPush) | |
} | |
} | |
catch(e) {} | |
} | |
// printing the 3rd element in the array | |
console.log(toPrint[2]) | |
}) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment