View Single Post
Old 03-04-2023, 12:30 PM   #6
unkn0wn
Fanatic
unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.
 
Posts: 598
Karma: 85520
Join Date: May 2021
Device: kindle
Code:
'''
Recipe for Die Tagespost
'''
from calibre.web.feeds.news import BasicNewsRecipe

class tagespost(BasicNewsRecipe):
    title          = 'Tagespost'
    language       = 'de'
    __author__     = 'unkn0wn'
    description = ('Die Tagespost trägt den Untertitel Wochenzeitung für Politik, Gesellschaft'
        ' und Kultur und ist eine überregionale, wöchentlich im Johann Wilhelm Naumann Verlag in Würzburg erscheinende Zeitung.')
    oldest_article = 7
    max_articles_per_feed = 100
    use_embedded_content = False
    
    keep_only_tags = [
        dict(name='article', attrs={'class':'art-detail'})
    ]

    feeds          = [
        ('Tagespost', 'https://www.die-tagespost.de/storage/rss/rss/die-tagespost-komplett.xml'),
    ]
unkn0wn is offline   Reply With Quote