Hello. Can I get some help with a recipe for the Rochester Democrat and Chronicle? The problem I am having with the recipe below is the title of the article does not appear in the article itself, only in the calibre generated link. There is a print version of the feed but that excludes pictures which I am also trying to capture. I started this recipe using the basic template, which formats everything fine, but takes an incredibly long time to process the style sheets. This version runs in about 1/10th the time but does not have the same quality formatting.
class AdvancedUserRecipe1280953017(BasicNewsRecipe):
title = u'Democrat & Chronicle'
oldest_article = 1
max_articles_per_feed = 100
no_stylesheets = True
keep_only_tags = [dict(id=['article-bodytext', 'pictopialink'])]
feeds = [
(u'Breaking News', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=RSS&mime=xml'),
(u'News', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=RSS01&mime=xml'),
(u'Business', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=BUSINESS&template=rss_dc&mime=xml '),
(u'Sports', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=SPORTS&template=rss_dc&mime=xml') ,
(u'Living', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=LIVING&template=rss_dc&mime=xml') ,
(u'Health', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=HEALTH&template=rss_dc&mime=xml')
]
|