Skip to content

Configuration: RSS Reader

Oscar Ruckdeschel edited this page Feb 23, 2016 · 1 revision

Configuration: RSS Reader

In the configuration.py file you should add the following array.

rss = [
    {
        'name': '<name (showed on dashboard)>',
        'url': '<url>',
        'max_count': 5, # <maximal count of items>
    },
]

As you can see, for each rss feed you want Centr to display you have to add a new dict. The dict must have the fields name, url and max_count.

The name field is a pseudonym for you to see which rss feed delivered the new content.

The url field stands for the feed url.

The max_count field displays how much items you want to see on your Centr dashboard.

Clone this wiki locally