Skip to content

Instantly share code, notes, and snippets.

@mannharleen
Created June 29, 2019 06:50
Show Gist options
  • Save mannharleen/c9b95709bbfc4bc85ea971674cba5d7e to your computer and use it in GitHub Desktop.
Save mannharleen/c9b95709bbfc4bc85ea971674cba5d7e to your computer and use it in GitHub Desktop.
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