mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
36 lines
1.5 KiB
Plaintext
36 lines
1.5 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
|
|
remove_tags_before = dict(name='h1')
|
|
keep_only_tags = {'class':lambda x: x and 'article' in x}
|
|
remove_tags = [
|
|
{'class':['DMNSocialTools', 'article ', 'article first ', 'article premium']},
|
|
]
|
|
|
|
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'),
|
|
]
|
|
|