mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
60 lines
2.8 KiB
Python
60 lines
2.8 KiB
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class MallorcaZeitung(BasicNewsRecipe):
|
|
title = 'Mallorca Zeitung'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
__author__ = 'vo_he'
|
|
description = 'Immer informiert dank Mallorca Zeitung und RSS '
|
|
publisher = 'https://www.mallorcazeitung.es/servicios/rss/rss.jsp'
|
|
publication_type = 'all'
|
|
language = 'de'
|
|
cover_url = 'http://getlogo.net/wp-content/uploads/2020/06/mallorca-zeitung-logo-vector.png'
|
|
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
remove_empty_feeds = True
|
|
|
|
scale_news_images = (600, 800)
|
|
|
|
masthead_url = 'http://getlogo.net/wp-content/uploads/2020/06/mallorca-zeitung-logo-vector.png'
|
|
#
|
|
# delete or mark with a # sign what you don't be interested in
|
|
#
|
|
feeds = [
|
|
('Aktuelles', 'https://www.mallorcazeitung.es/elementosInt/rss/3'),
|
|
('Arbeitswelt', 'https://www.mallorcazeitung.es/elementosInt/rss/37'),
|
|
('Auswanderer', 'https://www.mallorcazeitung.es/elementosInt/rss/75'),
|
|
('Behörden', 'https://www.mallorcazeitung.es/elementosInt/rss/36'),
|
|
('Food', 'https://www.mallorcazeitung.es/elementosInt/rss/76'),
|
|
('Gesellschaft', 'https://www.mallorcazeitung.es/elementosInt/rss/5'),
|
|
('Gesundheit', 'https://www.mallorcazeitung.es/elementosInt/rss/23'),
|
|
('Immobilien', 'https://www.mallorcazeitung.es/elementosInt/rss/42'),
|
|
('Kultur', 'https://www.mallorcazeitung.es/elementosInt/rss/5'),
|
|
('Leben', 'https://www.mallorcazeitung.es/elementosInt/rss/8'),
|
|
('Lokales', 'https://www.mallorcazeitung.es/elementosInt/rss/4'),
|
|
('Mallorca Boulevard',
|
|
'https://www.mallorcazeitung.es/elementosInt/rss/72'),
|
|
('Meinung', 'https://www.mallorcazeitung.es/elementosInt/rss/9'),
|
|
('Native AD', 'https://www.mallorcazeitung.es/elementosInt/rss/43'),
|
|
('Promis', 'https://www.mallorcazeitung.es/elementosInt/rss/74'),
|
|
('Recht und Steuern',
|
|
'https://www.mallorcazeitung.es/elementosInt/rss/38'),
|
|
('Report', 'https://www.mallorcazeitung.es/elementosInt/rss/30'),
|
|
('Sport', 'https://www.mallorcazeitung.es/elementosInt/rss/7'),
|
|
('Style', 'https://www.mallorcazeitung.es/elementosInt/rss/77'),
|
|
('Szene', 'https://www.mallorcazeitung.es/elementosInt/rss/73'),
|
|
('Tiere', 'https://www.mallorcazeitung.es/elementosInt/rss/26'),
|
|
('Travel', 'https://www.mallorcazeitung.es/elementosInt/rss/78'),
|
|
('Unternehmen', 'https://www.mallorcazeitung.es/elementosInt/rss/41'),
|
|
('Unterwegs', 'https://www.mallorcazeitung.es/elementosInt/rss/35'),
|
|
('Meistgelesen',
|
|
'https://www.mallorcazeitung.es/elementosInt/rss/LoMas'),
|
|
('Schlagzeilen',
|
|
'https://www.mallorcazeitung.es/elementosInt/rss/AlMinuto'),
|
|
]
|