mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
51 lines
2.1 KiB
Plaintext
51 lines
2.1 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class TheDailyMail(BasicNewsRecipe):
|
|
title = u'The Daily Mail'
|
|
oldest_article = 2
|
|
language = 'en_GB'
|
|
|
|
author = 'RufusA and Sujata Raman'
|
|
simultaneous_downloads= 1
|
|
max_articles_per_feed = 50
|
|
|
|
extra_css = '''#js-article-text{font-family:Arial,Helvetica,sans-serif;}
|
|
h1{font-size:x-large; font-weight:bold;}
|
|
a.author{color:#003580;}
|
|
.js-article-text{font-size:50%;}
|
|
.imageCaption{font-size:x-small; font-weight:bold}
|
|
|
|
|
|
'''
|
|
|
|
remove_tags = [ dict(name='div', attrs={'class':['article-icon-links-container','print-or-mail-links cleared',
|
|
'social-links cleared','explore-links','relatedItems','intellicrumbs box','travel','moduleHalf']}),
|
|
dict(name='div', attrs={'id':['link-unit-wrapper','pushdown-ad','reader-comments','googleAds',]}),
|
|
dict(name='h3', attrs={'class':['social-links-title']}),
|
|
dict(name='span', attrs={'class':['clickToEnlargeTop']}),
|
|
]
|
|
#remove_tags_before = dict(name='div', attrs={'id':'content'})
|
|
keep_only_tags = [dict(name='div', attrs={'id':'js-article-text'})]
|
|
|
|
no_stylesheets = True
|
|
|
|
feeds = [
|
|
(u'Home', u'http://www.dailymail.co.uk/home/index.rss'),
|
|
(u'News', u'http://www.dailymail.co.uk/news/index.rss'),
|
|
(u'Sport', u'http://www.dailymail.co.uk/sport/index.rss'),
|
|
(u'TV and Showbiz', u'http://www.dailymail.co.uk/tvshowbiz/index.rss'),
|
|
(u'Femail', u'http://www.dailymail.co.uk/femail/index.rss'),
|
|
(u'Health', u'http://www.dailymail.co.uk/health/index.rss'),
|
|
(u'Science and Technology', u'http://www.dailymail.co.uk/sciencetech/index.rss'),
|
|
(u'Money', u'http://www.dailymail.co.uk/money/index.rss'),
|
|
(u'Property', u'http://www.dailymail.co.uk/property/index.rss'),
|
|
(u'Motoring', u'http://www.dailymail.co.uk/motoring/index.rss'),
|
|
(u'Travel', u'http://www.dailymail.co.uk/travel/index.rss')
|
|
]
|
|
|
|
#def print_version(self, url):
|
|
# main = url.partition('?')[0]
|
|
# return main + '?printingPage=true'
|
|
|
|
|