New recipe for Our Daily Bread by Darko Miletic

This commit is contained in:
Kovid Goyal 2009-08-14 09:57:27 -06:00
parent 20468383df
commit 6ad621a920
2 changed files with 36 additions and 1 deletions

View File

@ -53,7 +53,7 @@ recipe_modules = ['recipe_' + r for r in (
'gva_be', 'hln', 'tijd', 'degentenaar', 'inquirer_net', 'uncrate',
'fastcompany', 'accountancyage', 'laprensa_hn', 'latribuna',
'eltiempo_hn', 'slate', 'tnxm', 'bbcvietnamese', 'vnexpress',
'volksrant', 'theeconomictimes_india',
'volksrant', 'theeconomictimes_india', 'ourdailybread',
)]

View File

@ -0,0 +1,35 @@
#!/usr/bin/env python
__license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
'''
rbc.org
'''
from calibre.web.feeds.news import BasicNewsRecipe
class OurDailyBread(BasicNewsRecipe):
title = 'Our Daily Bread'
__author__ = 'Darko Miletic'
description = 'Religion'
oldest_article = 15
language = _('English')
max_articles_per_feed = 100
no_stylesheets = True
use_embedded_content = False
category = 'religion'
encoding = 'utf-8'
extra_css = ' #devoTitle{font-size: x-large; font-weight: bold} '
conversion_options = {
'comments' : description
,'tags' : category
,'language' : 'en'
}
keep_only_tags = [dict(name='div', attrs={'class':['altbg','text']})]
feeds = [(u'Our Daily Bread', u'http://www.rbc.org/rss.ashx?id=50398')]
def preprocess_html(self, soup):
return self.adeify_images(soup)