文件名称:opml_janitor:解析 OPML 文件,验证提要,并写入生成的 OPML
文件大小:9KB
文件格式:ZIP
更新时间:2024-07-02 15:53:36
Ruby
操作员 从 OPML 文件中清理损坏和陈旧的 RSS 提要的工具。 它解析 XML,对于每个提要,它下载 RSS/Atom/等,验证提要在给定的时间范围内是否处于活动状态,并将结果写入一个新的 OPML XML 文档,其中仅包含好的提要。 安装 将此行添加到应用程序的 Gemfile 中: gem 'opml_janitor' 然后执行: $ bundle 或者自己安装: $ gem install opml_janitor 用法 require 'opml_janitor' opml_janitor = OpmlJanitor::Parser.from_filehandle("example.opml") opml_janitor.debug = true opml_janitor.threads = 20 opml_janitor.validate!(Time.now -
【文件预览】:
opml_janitor-master
----.gitignore(118B)
----bin()
--------opml_janitor(2KB)
----LICENSE.txt(1KB)
----README.md(3KB)
----lib()
--------opml_janitor()
--------opml_janitor.rb(5KB)
----opml_janitor.gemspec(1KB)
----Gemfile(181B)
----Rakefile(382B)
----test()
--------test_opml_janitor.rb(669B)
--------helper.rb(192B)