mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
Fixes #2057992 [CBC News Correct RSS Recipe](https://bugs.launchpad.net/calibre/+bug/2057992)
21 lines
933 B
Python
21 lines
933 B
Python
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1384137533(BasicNewsRecipe):
|
|
title = u'CBC Canada'
|
|
language = 'en_CA'
|
|
__author__ = 'rty'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 50
|
|
auto_cleanup = True
|
|
|
|
feeds = [(u'Top Stories', u'https://www.cbc.ca/webfeed/rss/rss-topstories'),
|
|
(u'World', u'https://www.cbc.ca/webfeed/rss/rss-world'),
|
|
(u'Canada', u'https://www.cbc.ca/webfeed/rss/rss-canada'),
|
|
(u'Politics', u'https://www.cbc.ca/webfeed/rss/rss-politics'),
|
|
(u'Business', u'https://www.cbc.ca/webfeed/rss/rss-business'),
|
|
(u'Arts', u'https://www.cbc.ca/webfeed/rss/rss-arts'),
|
|
(u'Health', u'https://www.cbc.ca/webfeed/rss/rss-health'),
|
|
(u'Technology', u'https://www.cbc.ca/webfeed/rss/rss-technology'),
|
|
(u'Indigenous', u'https://www.cbc.ca/webfeed/rss/rss-Indigenous'),]
|