mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
67 lines
3.0 KiB
Plaintext
67 lines
3.0 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2009-2010, Darko Miletic <darko.miletic at gmail.com>, 2012 Bernd Leinfelder <skoll1975@gmail.com>'
|
|
|
|
'''
|
|
www.nzz.ch
|
|
'''
|
|
|
|
from calibre.web.feeds.recipes import BasicNewsRecipe
|
|
|
|
|
|
class Nzz(BasicNewsRecipe):
|
|
title = 'NZZ Online'
|
|
__author__ = 'Darko Miletic, Bernd Leinfelder'
|
|
description = 'Laufend aktualisierte Nachrichten, Analysen und Hintergruende zu Politik, Wirtschaft, Kultur und Sport'
|
|
publisher = 'NZZ AG'
|
|
category = 'news, politics, nachrichten, Switzerland'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
encoding = 'utf-8'
|
|
use_embedded_content = False
|
|
language = 'de'
|
|
extra_css = """
|
|
body{font-family: Georgia,"Times New Roman",Times,serif }
|
|
.artikel h3,.artikel h4,.bildLegende,.question,.autor{font-family: Arial,Verdana,Helvetica,sans-serif}
|
|
.bildLegende{font-size: small}
|
|
.autor{font-size: 0.9375em; color: #666666}
|
|
.quote{font-size: large !important;
|
|
font-style: italic;
|
|
font-weight: normal !important;
|
|
border-bottom: 1px dotted #BFBFBF;
|
|
border-top: 1px dotted #BFBFBF;
|
|
line-height: 1.25em}
|
|
.quelle{color: #666666; font-style: italic; white-space: nowrap}
|
|
"""
|
|
|
|
conversion_options = {
|
|
'comments': description, 'tags': category, 'language': language, 'publisher': publisher
|
|
}
|
|
|
|
remove_attributes = ['width', 'height', 'lang']
|
|
remove_tags_before = dict(id='main')
|
|
remove_tags_after = dict(id='articleBodyText')
|
|
remove_tags = [
|
|
dict(name=['object', 'link', 'base', 'meta', 'iframe']), dict(
|
|
id='social-media-floater'), dict(name='div', attrs={'class': ['box']})
|
|
|
|
]
|
|
|
|
feeds = [
|
|
|
|
(u'International', u'http://www.nzz.ch/aktuell/international.rss'),
|
|
(u'Schweiz', u'http://www.nzz.ch/aktuell/schweiz.rss'),
|
|
(u'Wirtschaft', u'http://www.nzz.ch/aktuell/wirtschaft/uebersicht.rss'),
|
|
(u'Finanzmaerkte', u'http://www.nzz.ch/finanzen/uebersicht/finanznachrichten.rss'),
|
|
(u'Zuerich', u'http://www.nzz.ch/aktuell/zuerich/uebersicht.rss'),
|
|
(u'Sport', u'http://www.nzz.ch/aktuell/sport/uebersicht.rss'),
|
|
(u'Panorama', u'http://www.nzz.ch/aktuell/panorama.rss'),
|
|
(u'Kultur', u'http://www.nzz.ch/aktuell/feuilleton/uebersicht.rss'),
|
|
(u'Wissenschaft', u'http://www.nzz.ch/wissen/uebersicht.rss'),
|
|
(u'Reisen', u'http://www.nzz.ch/lebensart/reisen-freizeit.rss'),
|
|
(u'Auto Mobil', u'http://www.nzz.ch/lebensart/auto-mobil.rss'),
|
|
(u'Digital', u'http://www.nzz.ch/lebensart/digital.rss'),
|
|
(u'Stil', u'http://www.nzz.ch/lebensart/stil.rss'),
|
|
(u'Wein-Keller', u'http://www.nzz.ch/lebensart/wein-keller.rss')
|
|
]
|