mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
48 lines
2.8 KiB
Plaintext
48 lines
2.8 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class AdvancedUserRecipe1306097511(BasicNewsRecipe):
|
|
title = u'Metro Nieuws NL'
|
|
# Version 1.2, updated cover image to match the changed website.
|
|
# added info date on title
|
|
oldest_article = 2
|
|
max_articles_per_feed = 100
|
|
__author__ = u'DrMerry'
|
|
description = u'Metro Nederland'
|
|
language = u'nl'
|
|
simultaneous_downloads = 5
|
|
#delay = 1
|
|
auto_cleanup = True
|
|
auto_cleanup_keep = '//div[@class="article-image-caption-2column"]|//div[@id="date"]'
|
|
timefmt = ' [%A, %d %b %Y]'
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
remove_empty_feeds = True
|
|
cover_url = 'http://www.oldreadmetro.com/img/en/metroholland/last/1/small.jpg'
|
|
publication_type = 'newspaper'
|
|
remove_tags_before = dict(name='div', attrs={'id':'date'})
|
|
remove_tags_after = dict(name='div', attrs={'id':'column-1-3'})
|
|
encoding = 'utf-8'
|
|
extra_css = 'body{font-size:12px} #date, .article-image-caption {font-size: 0.583em} h2 {font-size: 0.917em} p.small, span, li, li span span, p, b, i, u, p.small.article-paragraph, p.small.article-paragraph p, p.small.article-paragraph span, p span, span {font-size: 0.833em} h1 {font-size: 1em}'
|
|
|
|
remove_tags = [dict(name='div', attrs={'class':[ 'metroCommentFormWrap',
|
|
'commentForm', 'metroCommentInnerWrap', 'article-slideshow-counter-container', 'article-slideshow-control', 'ad', 'header-links',
|
|
'art-rgt','pluck-app pluck-comm', 'share-and-byline', 'article-tools-below-title', 'col-179 ', 'related-links', 'clear padding-top-15', 'share-tools', 'article-page-auto-pushes', 'footer-edit']}),
|
|
dict(name='div', attrs={'id':['article-2', 'article-4', 'article-1', 'navigation', 'footer', 'header', 'comments', 'sidebar']}),
|
|
dict(name='iframe')]
|
|
|
|
feeds = [
|
|
(u'Binnenland', u'http://www.metronieuws.nl/rss.xml?c=1277377288-3'),
|
|
(u'Economie', u'http://www.metronieuws.nl/rss.xml?c=1278070988-0'),
|
|
(u'Den Haag', u'http://www.metronieuws.nl/rss.xml?c=1289013337-3'),
|
|
(u'Rotterdam', u'http://www.metronieuws.nl/rss.xml?c=1289013337-2'),
|
|
(u'Amsterdam', u'http://www.metronieuws.nl/rss.xml?c=1289013337-1'),
|
|
(u'Columns', u'http://www.metronieuws.nl/rss.xml?c=1277377288-17'),
|
|
(u'Entertainment', u'http://www.metronieuws.nl/rss.xml?c=1277377288-2'),
|
|
(u'Dot', u'http://www.metronieuws.nl/rss.xml?c=1283166782-12'),
|
|
(u'Familie', u'http://www.metronieuws.nl/rss.xml?c=1283166782-9'),
|
|
(u'Blogs', u'http://www.metronieuws.nl/rss.xml?c=1295586825-6'),
|
|
(u'Reizen', u'http://www.metronieuws.nl/rss.xml?c=1277377288-13'),
|
|
(u'Carrière', u'http://www.metronieuws.nl/rss.xml?c=1278070988-1'),
|
|
(u'Sport', u'http://www.metronieuws.nl/rss.xml?c=1277377288-12')
|
|
]
|