mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 17:48:15 +08:00
* Add Huggingface Daily Papers * Add en docs * Follow script standard * Place under huggingface namespace Move docs to programming * Fix route element in docs en * Update div selector
24 lines
825 B
JavaScript
24 lines
825 B
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
|
|
module.exports = async (ctx) => {
|
|
const { body: response } = await got('https://huggingface.co/papers');
|
|
const $ = cheerio.load(response);
|
|
const papers = $('main > div[data-target="DailyPapers"]').data('props');
|
|
|
|
const items = papers.dailyPapers.map((item) => ({
|
|
title: item.title,
|
|
link: `https://arxiv.org/abs/${item.paper.id}`,
|
|
description: item.paper.summary.replace(/\n/g, ' '),
|
|
pubDate: parseDate(item.publishedAt),
|
|
author: item.paper.authors.map((author) => author.name).join(', '),
|
|
}));
|
|
|
|
ctx.state.data = {
|
|
title: 'Huggingface Daily Papers',
|
|
link: 'https://huggingface.co/papers',
|
|
item: items,
|
|
};
|
|
};
|