mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-25 16:06:03 +01:00
...
This commit is contained in:
parent
419b7e42b3
commit
ae2b434b35
1 changed files with 8 additions and 0 deletions
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
|
||||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
from calibre import strftime
|
||||
|
||||
# http://online.wsj.com/page/us_in_todays_paper.html
|
||||
|
||||
|
|
@ -67,6 +68,13 @@ def wsj_get_index(self):
|
|||
def parse_index(self):
|
||||
soup = self.wsj_get_index()
|
||||
|
||||
year = strftime('%Y')
|
||||
for x in soup.findAll('td', attrs={'class':'b14'}):
|
||||
txt = self.tag_to_string(x).strip()
|
||||
if year in txt:
|
||||
self.timefmt = ' [%s]'%txt
|
||||
break
|
||||
|
||||
left_column = soup.find(
|
||||
text=lambda t: 'begin ITP Left Column' in str(t))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue