Path: blob/master/node_modules/@bochilteam/scraper/lib/cjs/news/antaranews.js
1126 views
"use strict";1var __importDefault = (this && this.__importDefault) || function (mod) {2return (mod && mod.__esModule) ? mod : { "default": mod };3};4Object.defineProperty(exports, "__esModule", { value: true });5const got_1 = __importDefault(require("got"));6const cheerio_1 = __importDefault(require("cheerio"));7async function antaranews() {8const html = await (0, got_1.default)('https://www.antaranews.com/').text();9const $ = cheerio_1.default.load(html);10const results = [];11$('div.terkini > article.simple-post').each((_, el) => {12const $el = $(el);13const title = $el.find('.latest-news > a').text();14const link = $el.find('.latest-news > a').attr('href');15const $image = $el.find('picture');16const image = $image.find('img').attr('src') ||17$image.find('img').attr('data-src') ||18$image.find('source').attr('srcset') ||19$image.find('source').attr('data-srcset');20const label = $el.find('.simple-share').text();21const date = $el.find('.simple-share > span').text();22if (title && image) {23results.push({24title,25link,26image,27label: label.replace(date, '').replace('/', '').trim(),28date: date.trim()29});30}31});32return results;33}34exports.default = antaranews;35//# sourceMappingURL=antaranews.js.map3637