Update hindu.recipe

international edition as the default
This commit is contained in:
unkn0w7n 2024-07-20 09:47:15 +05:30
parent ddfc32899f
commit 365b80bd24

View File

@ -60,10 +60,13 @@ class TheHindu(BasicNewsRecipe):
return soup return soup
def parse_index(self): def parse_index(self):
mag_url = None
local_edition = self.recipe_specific_options.get('location') local_edition = self.recipe_specific_options.get('location')
if local_edition: if local_edition:
local_edition = 'th_' + local_edition local_edition = 'th_' + local_edition
else:
local_edition = 'th_international'
past_edition = self.recipe_specific_options.get('date') past_edition = self.recipe_specific_options.get('date')
dt = date.today() dt = date.today()
@ -71,36 +74,20 @@ class TheHindu(BasicNewsRecipe):
year, month, day = (int(x) for x in past_edition.split('-')) year, month, day = (int(x) for x in past_edition.split('-'))
dt = date(year, month, day) dt = date(year, month, day)
is_monday = dt.weekday() == 0 today = dt.strftime('%Y-%m-%d')
is_friday = dt.weekday() == 4
is_saturday = dt.weekday() == 5
is_sunday = dt.weekday() == 6
self.log('Downloading The Hindu, ' + local_edition[3:] + ' edition, ' + today)
url = absurl('/todays-paper/' + today + '/' + local_edition + '/')
if local_edition or past_edition: mag_url = None
if local_edition is None: if dt.weekday() == 0:
local_edition = 'th_chennai' mag_url = url + '?supplement=' + local_edition + '-epbs'
today = date.today().strftime('%Y-%m-%d') if dt.weekday() == 4:
if past_edition: mag_url = url + '?supplement=' + local_edition + '-fr'
today = past_edition if dt.weekday() == 5:
self.log('Downloading past edition of', local_edition + ' from ' + today) mag_url = url + '?supplement=' + local_edition + '-mp'
url = absurl('/todays-paper/' + today + '/' + local_edition + '/') if dt.weekday() == 6:
if is_monday: mag_url = url + '?supplement=' + local_edition + '-sm'
mag_url = url + '?supplement=' + local_edition + '-epbs'
if is_saturday:
mag_url = url + '?supplement=' + local_edition + '-mp'
if is_sunday:
mag_url = url + '?supplement=' + local_edition + '-sm'
else:
url = 'https://www.thehindu.com/todays-paper/'
if is_monday:
mag_url = url + '?supplement=th_chennai-epbs'
if is_friday:
mag_url = url + '?supplement=th_chennai-fr'
if is_saturday:
mag_url = url + '?supplement=th_chennai-mp'
if is_sunday:
mag_url = url + '?supplement=th_chennai-sm'
raw = self.index_to_soup(url, raw=True) raw = self.index_to_soup(url, raw=True)
soup = self.index_to_soup(raw) soup = self.index_to_soup(raw)
@ -139,7 +126,7 @@ class TheHindu(BasicNewsRecipe):
title = item['articleheadline'] title = item['articleheadline']
url = absurl(item['href']) url = absurl(item['href'])
desc = 'Page no.' + item['pageno'] + ' | ' + item['teaser_text'] or '' desc = 'Page no.' + item['pageno'] + ' | ' + item['teaser_text'] or ''
self.log('\t', title, '\n\t\t', url) self.log(' ', title, '\n\t', url)
feeds_dict[section].append({"title": title, "url": url, "description": desc}) feeds_dict[section].append({"title": title, "url": url, "description": desc})
return [(section, articles) for section, articles in feeds_dict.items()] return [(section, articles) for section, articles in feeds_dict.items()]
else: else: