Path: blob/master/node_modules/@bochilteam/scraper/lib/esm/news/cnbcindonesia.js
1126 views
import got from 'got';1import cheerio from 'cheerio';2export default async function cnbindonesia() {3const html = await got('https://www.cnbcindonesia.com/news').text();4const $ = cheerio.load(html);5const results = [];6$('body > div.container > div > ul.list > li').each((_, el) => {7const $el = $(el);8const title = $el.find('.box_text > h2').text();9const subtitle = $el.find('.box_text > .subjudul').text() || undefined;10const link = $el.find('a').attr('href');11const image = $el.find('span > img').attr('src');12const label = $el.find('.date > .label').text();13const date = $el.find('.date').text().replace(label, '').replace('-', '').trim();14if (title && link) {15results.push({16title,17subtitle,18link,19image,20label,21date22});23}24});25return results;26}27//# sourceMappingURL=cnbcindonesia.js.map2829