Remove not working recipe (RSS feeds have been discontinued)

This commit is contained in:
Kovid Goyal 2019-05-24 17:17:41 +05:30
parent 83862873ef
commit 297f8fc41a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -1,36 +0,0 @@
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;}
'''