mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
40 lines
1.9 KiB
Plaintext
40 lines
1.9 KiB
Plaintext
import re
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class autogids(BasicNewsRecipe):
|
|
title = u'Automatiseringgids IT'
|
|
oldest_article = 7
|
|
__author__ = 'DrMerry'
|
|
description = 'IT-nieuws van Automatiseringgids'
|
|
language = 'nl'
|
|
publisher = 'AutomatiseringGids'
|
|
category = 'Nieuws, IT, Nederlandstalig'
|
|
simultaneous_downloads = 5
|
|
#delay = 1
|
|
timefmt = ' [%A, %d %B, %Y]'
|
|
#timefmt = ''
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
remove_empty_feeds = True
|
|
publication_type = 'newspaper'
|
|
encoding = 'utf-8'
|
|
cover_url = 'http://www.automatiseringgids.nl/siteimg/header_logo.gif'
|
|
keep_only_tags = [dict(id=['content'])]
|
|
extra_css = '.artikelheader {font-size:0.8em; color: #666;} .artikelintro {font-weight:bold} div.imgArticle {float: right; margin: 0 0em 1em 1em; display: block; position: relative; } \
|
|
h2 { margin: 0 0 0.5em; min-height: 30px; font-size: 1.5em; letter-spacing: -0.2px; margin: 0 0 0.5em; color: black; font-weight: bold; line-height: 1.2em; padding: 4px 3px 0; }'
|
|
|
|
|
|
|
|
remove_tags = [dict(name='div', attrs={'id':['loginbox','reactiecollapsible','reactiebox']}),
|
|
dict(name='div', attrs={'class':['column_a','column_c','bannerfullsize','reactieheader','reactiecollapsible','formulier','artikel_headeroptions']}),
|
|
dict(name='ul', attrs={'class':['highlightlist']}),
|
|
dict(name='input', attrs={'type':['button']}),
|
|
dict(name='div', attrs={'style':['display:block; width:428px; height:30px; float:left;']}),
|
|
]
|
|
preprocess_regexps = [
|
|
(re.compile(r'(<h3>Reacties</h3>|<h2>Zie ook:</h2>|<div style=".*</div>|<a[^>]*>|</a>)', re.DOTALL|re.IGNORECASE),
|
|
lambda match: ''),
|
|
]
|
|
|
|
feeds = [(u'Actueel', u'http://www.automatiseringgids.nl/rss.aspx')]
|