mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Implement #4234 (Sort tags for an item alphabetically.) and improved recipe for The National Post
This commit is contained in:
parent
42765deb10
commit
bed548d9df
@ -1,20 +1,81 @@
|
|||||||
from calibre.web.feeds.news import BasicNewsRecipe
|
import string, re
|
||||||
|
from calibre import strftime
|
||||||
|
from calibre.web.feeds.recipes import BasicNewsRecipe
|
||||||
|
from calibre.ebooks.BeautifulSoup import BeautifulSoup
|
||||||
|
|
||||||
class AdvancedUserRecipe1261379503(BasicNewsRecipe):
|
class NYTimes(BasicNewsRecipe):
|
||||||
title = u'National Post'
|
|
||||||
language = 'en_CA'
|
|
||||||
__author__ = 'Nick Redding'
|
|
||||||
description = u"News from Canada"
|
|
||||||
oldest_article = 2
|
|
||||||
max_articles_per_feed = 25
|
|
||||||
|
|
||||||
keep_only_tags = [dict(name='div', attrs={'id':'content'})]
|
title = 'National Post'
|
||||||
remove_tags = [dict(name='div', attrs={'class':'story-tools'}),dict(name='div', attrs={'class':'newsblock'}),dict(name='p', attrs={'class':'border-top'}),dict(name='div', attrs={'id':'footer'})]
|
__author__ = 'Krittika Goyal'
|
||||||
|
description = 'Canadian national newspaper'
|
||||||
|
timefmt = ' [%d %b, %Y]'
|
||||||
|
needs_subscription = False
|
||||||
|
|
||||||
|
no_stylesheets = True
|
||||||
|
#remove_tags_before = dict(name='h1', attrs={'class':'heading'})
|
||||||
|
#remove_tags_after = dict(name='td', attrs={'class':'newptool1'})
|
||||||
|
remove_tags = [
|
||||||
|
dict(name='iframe'),
|
||||||
|
dict(name='div', attrs={'class':'story-tools'}),
|
||||||
|
#dict(name='div', attrs={'id':['qrformdiv', 'inSection', 'alpha-inner']}),
|
||||||
|
#dict(name='form', attrs={'onsubmit':''}),
|
||||||
|
#dict(name='table', attrs={'cellspacing':'0'}),
|
||||||
|
]
|
||||||
|
|
||||||
feeds = [(u'News Headlines', u'http://www.nationalpost.com/scripts/sp6query.aspx?catalog=ntnp&type=stry&tags=section| news'),
|
# def preprocess_html(self, soup):
|
||||||
(u'FP Headlines', u'http://www.nationalpost.com/scripts/sp6query.aspx?catalog=ntnp&type=stry&tags=section| financial%20post|storytype|business'),
|
# table = soup.find('table')
|
||||||
(u'Arts & Life Headlines', u'http://www.nationalpost.com/scripts/sp6query.aspx?catalog=ntnp&type=stry&tags=section| arts%20%26%20life|storytype|news'),
|
# if table is not None:
|
||||||
(u'Canada News', u'http://www.nationalpost.com/scripts/sp6query.aspx?catalog=ntnp&type=stry&tags=storytyp e|webcanada&feed=rss'),
|
# table.extract()
|
||||||
(u'World News', u'http://www.nationalpost.com/scripts/sp6query.aspx?catalog=ntnp&type=stry&tags=storytyp e|webworld&feed=rss'),(u'Editorial', u'http://www.nationalpost.com/scripts/sp6query.aspx?catalog=ntnp&type=stry&tags=section| editorial'),
|
# return soup
|
||||||
(u'FP Opinion', u'http://www.nationalpost.com/scripts/columnists.aspx?publication=national+post&columnty pe=fp')]
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#TO GET ARTICLE TOC
|
||||||
|
def nejm_get_index(self):
|
||||||
|
return self.index_to_soup('http://www.nationalpost.com/todays-paper/index.html')
|
||||||
|
|
||||||
|
# To parse artice toc
|
||||||
|
def parse_index(self):
|
||||||
|
soup = self.nejm_get_index()
|
||||||
|
|
||||||
|
div = soup.find(id='LegoText4')
|
||||||
|
|
||||||
|
current_section = None
|
||||||
|
current_articles = []
|
||||||
|
feeds = []
|
||||||
|
for x in div.findAll(True):
|
||||||
|
if x.name == 'h4':
|
||||||
|
# Section found
|
||||||
|
if current_articles and current_section:
|
||||||
|
feeds.append((current_section, current_articles))
|
||||||
|
current_section = self.tag_to_string(x)
|
||||||
|
current_articles = []
|
||||||
|
self.log('\tFound section:', current_section)
|
||||||
|
if current_section is not None and x.name == 'h3':
|
||||||
|
# Article found
|
||||||
|
title = self.tag_to_string(x)
|
||||||
|
a = x.find('a', href=lambda x: x and 'story' in x)
|
||||||
|
if a is None:
|
||||||
|
continue
|
||||||
|
url = a.get('href', False)
|
||||||
|
if not url or not title:
|
||||||
|
continue
|
||||||
|
if url.startswith('story'):
|
||||||
|
url = 'http://www.nationalpost.com/todays-paper/'+url
|
||||||
|
self.log('\t\tFound article:', title)
|
||||||
|
self.log('\t\t\t', url)
|
||||||
|
current_articles.append({'title': title, 'url':url,
|
||||||
|
'description':'', 'date':''})
|
||||||
|
|
||||||
|
if current_articles and current_section:
|
||||||
|
feeds.append((current_section, current_articles))
|
||||||
|
|
||||||
|
return feeds
|
||||||
|
def preprocess_html(self, soup):
|
||||||
|
story = soup.find(name='div', attrs={'class':'triline'})
|
||||||
|
#td = heading.findParent(name='td')
|
||||||
|
#td.extract()
|
||||||
|
soup = BeautifulSoup('<html><head><title>t</title></head><body></body></html>')
|
||||||
|
body = soup.find(name='body')
|
||||||
|
body.insert(0, story)
|
||||||
|
return soup
|
||||||
|
@ -580,7 +580,7 @@ class BooksModel(QAbstractTableModel):
|
|||||||
def tags(r):
|
def tags(r):
|
||||||
tags = self.db.data[r][tgdx]
|
tags = self.db.data[r][tgdx]
|
||||||
if tags:
|
if tags:
|
||||||
return ', '.join(tags.split(','))
|
return ', '.join(sorted(tags.split(',')))
|
||||||
|
|
||||||
def series(r):
|
def series(r):
|
||||||
series = self.db.data[r][srdx]
|
series = self.db.data[r][srdx]
|
||||||
|
@ -20,7 +20,8 @@ NS = 'http://calibre-ebook.com/recipe_collection'
|
|||||||
E = ElementMaker(namespace=NS, nsmap={None:NS})
|
E = ElementMaker(namespace=NS, nsmap={None:NS})
|
||||||
|
|
||||||
def iterate_over_builtin_recipe_files():
|
def iterate_over_builtin_recipe_files():
|
||||||
exclude = ['craigslist', 'iht', 'outlook_india', 'toronto_sun']
|
exclude = ['craigslist', 'iht', 'outlook_india', 'toronto_sun',
|
||||||
|
'indian_express', 'india_today', 'toi']
|
||||||
d = os.path.dirname
|
d = os.path.dirname
|
||||||
base = os.path.join(d(d(d(d(d(d(os.path.abspath(__file__))))))), 'resources', 'recipes')
|
base = os.path.join(d(d(d(d(d(d(os.path.abspath(__file__))))))), 'resources', 'recipes')
|
||||||
for x in os.walk(base):
|
for x in os.walk(base):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user