forked from kovidgoyal/calibre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlas_vegas_review.recipe
33 lines (27 loc) · 1.29 KB
/
las_vegas_review.recipe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1274742400(BasicNewsRecipe):
title = u'Las Vegas Review Journal'
__author__ = 'Kovid Goyal'
language = 'en'
oldest_article = 7
max_articles_per_feed = 100
# keep_only_tags = [dict(id='content-main')]
# remove_tags = [dict(id=['right-col-content', 'trending-topics']),
#{'class':['ppy-outer']}
#]
no_stylesheets = True
use_embedded_content = False
auto_cleanup = True
feeds = [
(u'Top Stories', u'http://www.reviewjournal.com/rss.xml'),
(u'News', u'http://www.reviewjournal.com/news/feed'),
(u'Business', u'http://www.reviewjournal.com/business/feed'),
(u'Living', u'http://www.reviewjournal.com/living/feed'),
(u'Opinion', u'http://www.reviewjournal.com/opinion/feed'),
(u'Neon', u'http://www.reviewjournal.com/neon/feed'),
#(u'Image', u'http://www.lvrj.com/image.rss'),
#(u'Home & Garden', u'http://www.lvrj.com/home_and_garden.rss'),
#(u'Furniture & Design', u'http://www.lvrj.com/furniture_and_design.rss'),
#(u'Drive', u'http://www.lvrj.com/drive.rss'),
#(u'Real Estate', u'http://www.lvrj.com/real_estate.rss'),
(u'Sports', u'http://www.reviewjournal.com/sports/feed')]