mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
64 lines
2.2 KiB
Plaintext
64 lines
2.2 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
|
|
|
|
'''
|
|
Fetch Hessisch Niedersachsische Allgemeine.
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class hnaDe(BasicNewsRecipe):
|
|
|
|
title = 'HNA'
|
|
description = 'local news from Hessen/Germany'
|
|
__author__ = 'Oliver Niesner'
|
|
use_embedded_content = False
|
|
language = 'de'
|
|
|
|
use_embedded_content = False
|
|
timefmt = ' [%d %b %Y]'
|
|
max_articles_per_feed = 40
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
encoding = 'utf-8'
|
|
|
|
remove_tags = [dict(id='topnav'),
|
|
dict(id='nav_main'),
|
|
dict(id='teaser'),
|
|
dict(id='suchen'),
|
|
dict(id='superbanner'),
|
|
dict(id='navigation'),
|
|
dict(id='skyscraper'),
|
|
dict(id='idNavigationWrap'),
|
|
dict(id='idHeaderSearchForm'),
|
|
dict(id='idLoginBarWrap'),
|
|
dict(id='idAccountButtons'),
|
|
dict(id='idHeadButtons'),
|
|
dict(id='idBoxesWrap'),
|
|
dict(id=''),
|
|
dict(name='span'),
|
|
dict(name='ul', attrs={'class':'linklist'}),
|
|
dict(name='a', attrs={'href':'#'}),
|
|
dict(name='div', attrs={'class':'hlist'}),
|
|
dict(name='li', attrs={'class':'idButton idIsLoginGroup idHeaderRegister '}),
|
|
dict(name='li', attrs={'class':'idVideoBar idFirst'}),
|
|
dict(name='li', attrs={'class':'idSetStartPageLink idLast'}),
|
|
dict(name='li', attrs={'class':'idKinderNetzBar idLast'}),
|
|
dict(name='li', attrs={'class':'idFotoBar '}),
|
|
dict(name='div', attrs={'class':'subc noprint'}),
|
|
dict(name='div', attrs={'class':'idBreadcrumb'}),
|
|
dict(name='div', attrs={'class':'idLay idAdvertising idClStandard '}),
|
|
dict(name='span', attrs={'class':'idHeadLineIntro'}),
|
|
dict(name='p', attrs={'class':'breadcrumb'}),
|
|
dict(name='a', attrs={'style':'cursor:hand'}),
|
|
dict(name='p', attrs={'class':'h5'}),
|
|
dict(name='p', attrs={'class':'idMoreEnd'})]
|
|
#remove_tags_after = [dict(name='div', attrs={'class':'rahmenbreaking'})]
|
|
remove_tags_after = [dict(name='p', attrs={'class':'idMoreEnd'})]
|
|
|
|
feeds = [ ('hna_soehre', 'http://feeds2.feedburner.com/hna/soehre'),
|
|
('hna_kassel', 'http://feeds2.feedburner.com/hna/kassel') ]
|
|
|
|
|