calibre/recipes/dallas.recipe
Kovid Goyal 37098e6ddf ...
2011-10-15 05:30:00 +05:30

32 lines
1.3 KiB
Plaintext

from calibre.web.feeds.news import BasicNewsRecipe
class DallasNews(BasicNewsRecipe):
title = u'The Dallas Morning News'
language = 'en'
oldest_article = 2 #days
max_articles_per_feed = 25
no_stylesheets = True
use_embedded_content = False
auto_cleanup = True
feeds = [
('Local News',
'http://www.dallasnews.com/news/politics/local-politics/?rss'),
('National Politics',
'http://www.dallasnews.com/news/politics/national-politic/?rss'),
('State Politics',
'http://www.dallasnews.com/news/politics/state-politics/?rss'),
('Religion',
'http://www.dallasnews.com/news/religion/?rss'),
('Crime',
'http://www.dallasnews.com/news/crime/headlines/?rss'),
('Celebrity News',
'http://www.dallasnews.com/entertainment/celebrity-news/?rss&listname=TopStories'),
('Nation',
'http://www.dallasnews.com/news/nation-world/nation/?rss'),
('World',
'http://www.dallasnews.com/news/nation-world/world/?rss'),
]