{"id":14522405,"url":"https://github.com/shouya/rss-funnel","last_synced_at":"2025-04-12T21:33:51.929Z","repository":{"id":213727785,"uuid":"734786603","full_name":"shouya/rss-funnel","owner":"shouya","description":"Self-hosted RSS multi-tool","archived":false,"fork":false,"pushed_at":"2024-11-17T01:38:42.000Z","size":528,"stargazers_count":128,"open_issues_count":10,"forks_count":5,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-04-11T15:05:48.684Z","etag":null,"topics":["rss","rss-aggregator","rss-feed","self-hosted","yahoo-pipes"],"latest_commit_sha":null,"homepage":"https://rss-funnel-demo.fly.dev","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shouya.png","metadata":{"files":{"readme":"README.org","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-22T16:04:49.000Z","updated_at":"2025-04-08T05:45:01.000Z","dependencies_parsed_at":"2023-12-22T17:25:18.688Z","dependency_job_id":"f1afd18f-989c-4bf0-a5f4-f7bf8e38b00c","html_url":"https://github.com/shouya/rss-funnel","commit_stats":{"total_commits":202,"total_committers":4,"mean_commits":50.5,"dds":"0.014851485148514865","last_synced_commit":"9044baa499271eb0bcc55312b3d45cd8634bdfe8"},"previous_names":["shouya/rss-funnel"],"tags_count":31,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shouya%2Frss-funnel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shouya%2Frss-funnel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shouya%2Frss-funnel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shouya%2Frss-funnel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shouya","download_url":"https://codeload.github.com/shouya/rss-funnel/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248429111,"owners_count":21101783,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["rss","rss-aggregator","rss-feed","self-hosted","yahoo-pipes"],"created_at":"2024-09-04T08:01:51.723Z","updated_at":"2025-04-12T21:33:51.906Z","avatar_url":"https://github.com/shouya.png","language":"Rust","funding_links":[],"categories":["Rust","置顶","Applications"],"sub_categories":["9、效率工具集合","Web"],"readme":"* RSS Funnel\n\n/This project is in the early stage of development. Please expect bugs and frequent breaking changes./\n\nRSS Funnel is a modular RSS processing pipeline system. It can manipulate RSS/Atom sources in various ways.\n\n- Fetch full-text content\n- Generate an RSS feed from an HTML page\n- Remove unwanted elements or texts\n- Filter articles matching keywords\n- Highlight keywords\n- Split aggregation (e.g. top 10 links of day) into individual articles\n- Combine multiple feeds into one\n- Convert between feed formats\n- Run arbitrary JavaScript transformation\n- Apply image proxy\n- [[https://github.com/shouya/rss-funnel/wiki/Filter-config][And more!]]\n\nThe tool comes with a web UI for inspecting the feed and the result of each filter, all within a single statically-built binary with no external dependencies.\n\n[[https://rss-funnel-demo.fly.dev/][Try out the live demo!]]\n\n** Installation\n\nYou can use the Docker image ([[https://github.com/shouya/rss-funnel/pkgs/container/rss-funnel][latest version]]) in your =docker-compose.yaml=:\n\n#+begin_src yaml\nversion: \"3.8\"\nservices:\n  rss-funnel:\n    image: ghcr.io/shouya/rss-funnel:latest\n    ports:\n      - 4080:4080\n    volumes:\n      - ./funnel.yaml:/funnel.yaml\n    environment:\n      RSS_FUNNEL_CONFIG: /funnel.yaml\n      RSS_FUNNEL_BIND: 0.0.0.0:4080\n#+end_src\n\nThe web UI will be available at =http://localhost:4080=.\n\nAlternatively, you can build it directly from source:\n\n#+begin_src bash\ngit clone https://github.com/shouya/rss-funnel.git\ncd rss-funnel\n\n# First, build the front-end assets\ncd inspector \u0026\u0026 npm i \u0026\u0026 npm run build \u0026\u0026 cd ..\n\n# Then, build the binary\ncargo build --release\n#+end_src\n\nIf you prefer not to build from source, you can download the pre-built artifacts from the [[https://github.com/shouya/rss-funnel/releases][release page]].\n\n** Usage\n\nTo use =rss-funnel=, you need to supply a configuration file in YAML format. Here's an example configuration:\n\n#+begin_src yaml\nendpoints:\n  - path: /tokio-blog.xml\n    note: Full text of Tokio blog\n    source: https://tokio.rs/_next/static/feed.xml\n    filters:\n      - full_text: {}\n      - simplify_html: {}\n\n  - path: /hackernews.xml\n    note: Full text of Hacker News\n    source: https://news.ycombinator.com/rss\n    filters:\n      - full_text:\n          simplify: true\n          append_mode: true\n#+end_src\n\nSave the above file as =/path/to/funnel.yaml= and run the following command:\n\n#+begin_src\nrss-funnel -c /path/to/funnel.yaml server\n#+end_src\n\nYou can optionally specify the bind address and port (default =127.0.0.1:4080=). Detailed usage can be found in the =--help= output.\n\nThe endpoints like =http://127.0.0.1:4080/tokio-blog.xml= should serve the filtered feeds.\n\n** Documentation\n\n- [[https://github.com/shouya/rss-funnel/wiki/Config-syntax][Config syntax]] contains information about each component in the configuration file.\n- [[https://github.com/shouya/rss-funnel/wiki/Filter-config][Filter config]] details the configuration for all filters.\n- [[https://github.com/shouya/rss-funnel/wiki/Cookbook][Cookbook]] contains snippets on how to use =rss-funnel= for several practical applications.\n- [[https://github.com/shouya/rss-funnel/wiki/Deployment][Deployment]] includes examples of docker-compose and kubernetes definitions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshouya%2Frss-funnel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshouya%2Frss-funnel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshouya%2Frss-funnel/lists"}