View Single Post
Old 09-17-2021, 03:42 PM   #1
Yevhen Kaplia
Junior Member
Yevhen Kaplia began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Sep 2021
Device: PocketBook Pro 903
BasicNewsRecipe didn't work with xml www.swr.de

BasicNewsRecipe shows error Failed feed: SWR2 Feature
HTTP Error 404: Not Found. Please tell me what can be fixed or configured to receive news from this feed?

Code:
#!/usr/bin/env python
# vim:fileencoding=utf-8
from calibre.web.feeds.news import BasicNewsRecipe

class AdvancedUserRecipe1631906912(BasicNewsRecipe):
    title          = 'SWR2 Feature'
    oldest_article = 7
    max_articles_per_feed = 100
    auto_cleanup   = True
    use_embedded_content = True

    feeds          = [
        ('SWR2 Feature', 'https://www.swr.de/~podcast/swr2/programm/swr2-feature-podcast-106.xml'),
    ]
Yevhen Kaplia is offline   Reply With Quote