mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-08-30 23:00:21 -04:00
44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
##
|
|
## Written: 2013-02-05
|
|
## Version: v4.1
|
|
## Last update: 2013-02-05 V3, 2020-07-05 v4, 2023-06-16 v4.1
|
|
##
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
|
|
|
|
'''
|
|
Fetch fluter.de
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1313693926(BasicNewsRecipe):
|
|
|
|
title = u' fluter. '
|
|
description = 'fluter.de Magazin der Bundeszentrale für politische Bildung/bpb'
|
|
language = 'de'
|
|
encoding = 'UTF-8'
|
|
|
|
__author__ = 'Armin Geller' # 2013-02-05 V3
|
|
|
|
oldest_article = 14
|
|
max_articles_per_feed = 50
|
|
auto_cleanup = False
|
|
|
|
feeds = [
|
|
(u'Inhalt:', u'https://www.fluter.de/rss.xml')
|
|
]
|
|
|
|
keep_only_tags = [
|
|
dict(name='article', attrs={'class':'node node-article block fullWidth stage'})
|
|
]
|
|
|
|
remove_tags = [
|
|
dict(name='h2', attrs={'class':'element-invisible'})
|
|
]
|
|
|
|
extra_css = '''
|
|
.field-group-format, .group_additional_info, .additional-info {display: inline-block; min-width: 8rem; text-align: center}
|
|
'''
|