mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
41 lines
1.5 KiB
Plaintext
41 lines
1.5 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
|
|
use_embedded_content = False
|
|
auto_cleanup = True
|
|
compress_news_images = True
|
|
compress_news_images_max_size = 15
|
|
|
|
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}
|
|
|
|
|
|
'''
|
|
|
|
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')
|
|
]
|