mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1362501327(BasicNewsRecipe):
|
|
title = u'Deccan Herald'
|
|
__author__ = 'Muruli Shamanna'
|
|
description = 'Daily news from the Deccan Herald'
|
|
|
|
oldest_article = 1
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
category = 'News'
|
|
language = 'en_IN'
|
|
encoding = 'utf-8'
|
|
publisher = 'The Printers (Mysore) Private Ltd'
|
|
|
|
cover_url = 'http://www.quizzing.in/wp-content/uploads/2010/07/DH.gif'
|
|
|
|
conversion_options = {
|
|
'comments': description, 'tags': category, 'language': language, 'publisher': publisher
|
|
}
|
|
|
|
feeds = [
|
|
(u'News', u'http://www.deccanherald.com/rss/news.rss'),
|
|
(u'Business', u'http://www.deccanherald.com/rss/business.rss'),
|
|
(u'Entertainment', u'http://www.deccanherald.com/rss/entertainment.rss'),
|
|
(u'Sports', u'http://www.deccanherald.com/rss/sports.rss'),
|
|
(u'Environment', u'http://www.deccanherald.com/rss/environment.rss')]
|
|
|
|
extra_css = '''
|
|
h1{font-family:Arial,Helvetica,sans-serif; font-weight:bold;font-size:150%;}
|
|
h2{font-family:Arial,Helvetica,sans-serif; font-weight:bold;font-size:155%;}
|
|
img {max-width:100%; min-width:100%;}
|
|
p{font-family:Arial,Helvetica,sans-serif;font-size:large;}
|
|
body{font-family:Helvetica,Arial,sans-serif;font-size:medium;}
|
|
'''
|