recipe for "Welt der Pkysik" de
Hi,
The receipe for the german site Welt der Physik is outdated and not refreshed by the original author.
Please replace the source to:
__license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
'''
Fetch weltderphysik.de.
'''
from calibre.web.feeds.news import BasicNewsRecipe
class WeltDerPhysikDe(BasicNewsRecipe):
title = 'Welt der Physik'
description = 'Welt der Physik - heute schon geforscht?'
__author__ = 'schuster; changed by Bernd Kunze'
use_embedded_content = False
language = 'de'
timefmt = ' [%d %b %Y]'
max_articles_per_feed = 100
no_stylesheets = True
oldest_article = 7
remove_tags = [
dict(name='div', attrs={'id':'header-top'}),
dict(name='div', attrs={'id':'logos'}),
dict(name='div', attrs={'id':'breadcrumb'}),
dict(name='nav', attrs={'id':'main-menu'}),
dict(name='footer')
]
feeds = [ ('Welt der Physik', 'http://www.weltderphysik.de/RSS-alles/') ]
regards, Bernd
|