UNPKG

rsshub

Version:
39 lines (37 loc) 1.32 kB
import "./esm-shims-CzJ_djXG.mjs"; import "./config-C37vj7VH.mjs"; import "./dist-BInvbO1W.mjs"; import "./logger-Czu8UMNd.mjs"; import "./ofetch-BIyrKU3Y.mjs"; import { t as parseDate } from "./parse-date-BrP7mxXf.mjs"; import "./cache-Bo__VnGm.mjs"; import "./helpers-DxBp0Pty.mjs"; import { t as got_default } from "./got-KxxWdaxq.mjs"; import { t as timezone } from "./timezone-D8cuwzTY.mjs"; import { t as processItems } from "./utils-DdqJNVOn.mjs"; import { load } from "cheerio"; //#region lib/routes/gov/pbc/zcyj.ts const host = "http://www.pbc.gov.cn"; const route = { path: "/pbc/zcyj", radar: [{ source: ["pbc.gov.cn/redianzhuanti/118742/4122386/4122510/index.html"] }], name: "Unknown", maintainers: ["Fatpandac"], handler, url: "pbc.gov.cn/redianzhuanti/118742/4122386/4122510/index.html" }; async function handler() { const url = `${host}/redianzhuanti/118742/4122386/4122510/index.html`; const $ = load((await got_default.post(url)).data); return { title: "中国人民银行 政策研究", link: url, item: await processItems($("li.clearfix").toArray().map((item) => ({ title: $(item).find("a").text(), link: new URL($(item).find("a").attr("href"), host).href, pubDate: timezone(parseDate($(item).find("span.fr").text(), "YYYY-MM-DD"), 8) }))) }; } //#endregion export { route };