Update wsj.recipe

change cover source
This commit is contained in:
unkn_wn 2025-07-29 14:40:17 +05:30 committed by GitHub
parent 194116a302
commit 72cba9ee74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -175,15 +175,15 @@ class WSJ(BasicNewsRecipe):
d, m, y = dt.split('-') d, m, y = dt.split('-')
cu = f'https://www.wsj.com/public/resources/documents/WSJNewsPaper-{int(m)}-{int(d)}-{y}.jpg' cu = f'https://www.wsj.com/public/resources/documents/WSJNewsPaper-{int(m)}-{int(d)}-{y}.jpg'
else: else:
raw = br.open('https://wsjtodaysedition.cmail19.com/t/d-e-suujjg-thithlkhlr-r/') raw = br.open('https://frontpages.freedomforum.org/newspapers/wsj-The_Wall_Street_Journal')
soup = BeautifulSoup(raw.read()) soup = BeautifulSoup(raw.read())
cu = soup.find( cu = soup.find(
'img', 'img',
attrs={ attrs={
'class': 'responsive-img', 'alt': 'Front Page Image',
'src': lambda x: x and 'WSJNewsPaper' in x 'src': lambda x: x and x.endswith('front-page-large.jpg'),
} },
)['src'] )['src'].replace('-large', '-medium')
self.report_progress(1, _('Downloading cover from %s') % cu) self.report_progress(1, _('Downloading cover from %s') % cu)
with closing(br.open(cu, timeout=self.timeout)) as r: with closing(br.open(cu, timeout=self.timeout)) as r:
cdata = r.read() cdata = r.read()