elfeed-custom-feeds.el

Custom feed generators (GitHub PR/issues and HuggingFace model releases) for elfeed.
Log | Files | Refs | LICENSE

elfeed-custom-feeds.el (1048B)


      1 ;;; elfeed-custom-feeds.el --- Custom feed generators for Elfeed -*- lexical-binding: t; -*-
      2 
      3 ;; Copyright (C) 2025
      4 
      5 ;; Author: Vineet Kumar <git@vineetk.net>
      6 ;; Version: 0.1.0
      7 ;; Package-Requires: ((emacs "27.1") (elfeed "3.4.1"))
      8 ;; Keywords: news, feeds, rss
      9 ;; URL: https://git.vineetk.net/vin/elfeed-custom-feeds
     10 
     11 ;; SPDX-License-Identifier: GPL-3.0-or-later
     12 
     13 ;;; Commentary:
     14 
     15 ;; This package provides custom feed generators for Elfeed, including:
     16 ;; - HuggingFace organization model feeds
     17 ;; - GitHub pull request feeds with custom queries
     18 ;;
     19 ;; Usage:
     20 ;;   (require 'elfeed-custom-feeds)
     21 ;;   (elfeed-custom-feeds-update-all)
     22 
     23 ;;; Code:
     24 
     25 (require 'elfeed-custom-feeds-huggingface)
     26 (require 'elfeed-custom-feeds-github)
     27 
     28 ;;;###autoload
     29 (defun elfeed-custom-feeds-update-all ()
     30   "Update all custom feeds (HuggingFace + GitHub)."
     31   (interactive)
     32   (elfeed-custom-feeds-huggingface-update)
     33   (elfeed-custom-feeds-github-update)
     34   (message "Updating custom feeds...")
     35   nil)
     36 
     37 (provide 'elfeed-custom-feeds)
     38 
     39 ;;; elfeed-custom-feeds.el ends here