Update Down To Earth

This commit is contained in:
Kovid Goyal 2022-02-04 21:47:51 +05:30
parent cf5f2ee4fc
commit cbfbe97f4d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -1,8 +1,4 @@
from __future__ import with_statement from calibre.web.feeds.news import BasicNewsRecipe, classes
__license__ = 'GPL 3'
__copyright__ = '2014, Amit <amitkp.ias@gmail.com>'
from calibre.web.feeds.news import BasicNewsRecipe
class My_Feeds(BasicNewsRecipe): class My_Feeds(BasicNewsRecipe):
@ -16,19 +12,15 @@ class My_Feeds(BasicNewsRecipe):
center_navbar = True center_navbar = True
use_embedded_content = False use_embedded_content = False
remove_empty_feeds = True remove_empty_feeds = True
remove_tags_before = dict(name='div', id='PageContent') keep_only_tags = [
remove_tags_after = [dict(name='div'), {'class': 'taxonomy-terms'}] classes('detail-heading content-main news-basic-info news-banner news-detail-content')
]
remove_tags = [ remove_tags = [
classes('add-comment btn hindi_detail_link single-news-letter'),
dict(id=['comments', 'breadcrumb', 'node_related_stories']), dict(id=['comments', 'breadcrumb', 'node_related_stories']),
dict(attrs={'class': ['commentCount', 'box']}) dict(attrs={'class': ['commentCount', 'box']})
] ]
feeds = [ feeds = [
(u'editor', u'http://www.downtoearth.org.in/taxonomy/term/20348/0/feed'), ('All', 'https://www.downtoearth.org.in/rss/all'),
(u'cover story', u'http://www.downtoearth.org.in/taxonomy/term/20345/0/feed'),
(u'special report', u'http://www.downtoearth.org.in/taxonomy/term/20384/0/feed'),
(u'features', u'http://www.downtoearth.org.in/taxonomy/term/20350/0/feed'),
(u'news', u'http://www.downtoearth.org.in/taxonomy/term/20366/0/feed'),
(u'debate', u'http://www.downtoearth.org.in/taxonomy/term/20347/0/feed'),
(u'natural disasters', u'http://www.downtoearth.org.in/taxonomy/term/20822/0/feed')
] ]