View Single Post
Old 11-25-2018, 10:59 AM   #1
schuster
Zealot
schuster doesn't litterschuster doesn't litter
 
Posts: 119
Karma: 100
Join Date: Jan 2011
Location: Germany / NRW /Köln
Device: prs-650 / prs-350 /kindle 3
Recipe - Nachdenkseiten.de [German]

Another one.........


Code:
from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import BasicNewsRecipe

class AdvancedUserRecipe1543160468(BasicNewsRecipe):
    title          = 'Nachdenkseiten.de'
    __author__ = 'schuster'
    oldest_article = 7
    max_articles_per_feed = 100
    auto_cleanup   = True
    no_stylesheets = True
    use_embedded_content = False
    language = 'de'
    remove_javascript = True
    cover_url = 'https://www.nachdenkseiten.de/upload/banner/nds_logo_144x144px.png'
    
    feeds = [
        (u'Artikel', u'https://www.nachdenkseiten.de/?feed=rss2')]
schuster is offline   Reply With Quote