rssget 0.1.1

A tool to get RSS feeds
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# rssget default configuration file

# RSS item display ordering. Order by "date" or by "channel".
display_by: date

# channels to retrieve
channels:
  - url: "example.com/rss"
    # (optional) max max number of items to show
    max_items: 10
    # (optional) output configuration for Items of a Channel (default: all false)
    item_config:
      hide_title: true
      hide_link: true
      hide_description: true
      hide_author: true
      hide_pub_date: true
  - url: "otherexample.com/rss"