calibre/recipes/toi.recipe
un-pogaz ed2930712d various whitespace (extra-edit)
!partial 'E203,E222,E241,E271,E272'
2025-01-24 11:14:24 +01:00

82 lines
3.5 KiB
Python

__license__ = 'GPL v3'
__copyright__ = '2008-2014, Karthik <hashkendistro@gmail.com>'
'''
timesofindia.indiatimes.com
'''
from calibre.web.feeds.news import BasicNewsRecipe
def classes(classes):
q = frozenset(classes.split(' '))
return dict(attrs={
'class': lambda x: x and frozenset(x.split()).intersection(q)})
class TheEconomicTimes(BasicNewsRecipe):
title = 'The Times of India'
__author__ = 'Karthik'
description = 'News from the Indian daily Times of India'
publisher = 'timesofindia.indiatimes.com'
category = 'news, finances, politics, sports, business, entertainment, India'
oldest_article = 1
max_articles_per_feed = 100
no_stylesheets = True
use_embedded_content = False
simultaneous_downloads = 1
encoding = 'utf-8'
language = 'en_IN'
publication_type = 'newspaper'
masthead_url = 'http://timesofindia.indiatimes.com/photo.cms?msid=2419189'
extra_css = '''
body{font-family: Arial,Helvetica,sans-serif}
.foto_mg{font-size: 60%;
font-weight: 700;}
h1{font-size: 150%;}
artdate{font-size: 60%}
artag{font-size: 60%}
div.storycontent{padding-top: 10px}
'''
conversion_options = {'comment': description,
'tags': category,
'publisher': publisher,
'language': language
}
remove_tags_before = dict(name='h1')
remove_tags_after = dict(name='div', attrs={'class': 'storycontent'})
remove_attributes = ['xmlns', 'style']
remove_tags = [
classes('readalso success_screen poll_withoutLogin hide')
]
feeds = [('Recent Stories', 'http://timesofindia.indiatimes.com/rssfeeds/1221656.cms'),
('India', 'http://timesofindia.indiatimes.com/rssfeeds/-2128936835.cms'),
('World', 'http://timesofindia.indiatimes.com/rssfeeds/296589292.cms'),
('Business', 'http://timesofindia.indiatimes.com/rssfeeds/1898055.cms'),
('Cricket', 'http://timesofindia.indiatimes.com/rssfeeds/4719161.cms'),
('Sports', 'http://timesofindia.indiatimes.com/rssfeeds/4719148.cms'),
('Tech', 'http://timesofindia.indiatimes.com/rssfeeds/5880659.cms'),
('Education', 'http://timesofindia.indiatimes.com/rssfeeds/913168846.cms'),
('Science', 'http://timesofindia.indiatimes.com/rssfeeds/-2128672765.cms'),
('Opinion', 'http://timesofindia.indiatimes.com/rssfeeds/784865811.cms'),
('Entertainment', 'http://timesofindia.indiatimes.com/rssfeeds/1081479906.cms')]
def print_version(self, url):
return url.replace('/articleshow/', '/articleshowprint/')
# For mobile version
# return 'http://m.timesofindia.com/PDAET/articleshow/' + article_id
def get_cover_url(self):
soup = self.index_to_soup('https://www.magzter.com/IN/Bennett-Coleman-and-Company-Limited/The-Times-of-India-Delhi/Newspaper/')
for citem in soup.findAll('meta', content=lambda s: s and s.endswith('view/3.jpg')):
return citem['content']
def get_article_url(self, article):
rurl = article.get('guid', None)
if '/articleshow/' in rurl:
return rurl
def postprocess_html(self, soup, first_fetch):
return self.adeify_images(soup)