mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-08-11 09:13:57 -04:00
Merge branch 'master' of https://github.com/unkn0w7n/calibre
This commit is contained in:
commit
b1634c10d3
@ -175,15 +175,15 @@ class WSJ(BasicNewsRecipe):
|
||||
d, m, y = dt.split('-')
|
||||
cu = f'https://www.wsj.com/public/resources/documents/WSJNewsPaper-{int(m)}-{int(d)}-{y}.jpg'
|
||||
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())
|
||||
cu = soup.find(
|
||||
'img',
|
||||
attrs={
|
||||
'class': 'responsive-img',
|
||||
'src': lambda x: x and 'WSJNewsPaper' in x
|
||||
}
|
||||
)['src']
|
||||
'alt': 'Front Page Image',
|
||||
'src': lambda x: x and x.endswith('front-page-large.jpg'),
|
||||
},
|
||||
)['src'].replace('-large', '-medium')
|
||||
self.report_progress(1, _('Downloading cover from %s') % cu)
|
||||
with closing(br.open(cu, timeout=self.timeout)) as r:
|
||||
cdata = r.read()
|
||||
|
@ -135,15 +135,15 @@ class WSJ(BasicNewsRecipe):
|
||||
from calibre import browser
|
||||
from calibre.utils.img import save_cover_data_to
|
||||
br = browser()
|
||||
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())
|
||||
cu = soup.find(
|
||||
'img',
|
||||
attrs={
|
||||
'class': 'responsive-img',
|
||||
'src': lambda x: x and 'WSJNewsPaper' in x
|
||||
}
|
||||
)['src']
|
||||
'alt': 'Front Page Image',
|
||||
'src': lambda x: x and x.endswith('front-page-large.jpg'),
|
||||
},
|
||||
)['src'].replace('-large', '-medium')
|
||||
self.report_progress(1, _('Downloading cover from %s')%cu)
|
||||
with closing(br.open(cu, timeout=self.timeout)) as r:
|
||||
cdata = r.read()
|
||||
|
Loading…
x
Reference in New Issue
Block a user