View Single Post
Old 01-17-2020, 03:53 PM   #4
vogelap
Member
vogelap began at the beginning.
 
vogelap's Avatar
 
Posts: 12
Karma: 10
Join Date: Aug 2005
Location: Cincinnati Ohio USA
Device: Kindle Oasis
I am using custom recipes for Dice Tower News and CRM Tip of the Day. Previously, they worked. For the last several weeks, they haven't been working.

The recipes I am using are:
Code:
#!/usr/bin/env python2
# vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import BasicNewsRecipe

class AdvancedUserRecipe1579294376(BasicNewsRecipe):
    title          = 'CRM Tip of the Day'
    oldest_article = 3
    max_articles_per_feed = 100
    auto_cleanup   = True

    feeds          = [
        ('CRM Tip of the Day', 'http://crmtipoftheday.com/feed/'),
    ]
...and...
Code:
#!/usr/bin/env python2
# vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import BasicNewsRecipe

class AdvancedUserRecipe1579294351(BasicNewsRecipe):
    title          = 'Dice Tower News'
    oldest_article = 2
    max_articles_per_feed = 100
    auto_cleanup   = True

    feeds          = [
        ('Dice Tower News', 'https://www.dicetowernews.com/rss.xml'),
    ]
When I visit those pages in a web browser on my computer, they display RSS as expected. But they don't work in Calibre...

Last edited by PeterT; 01-17-2020 at 08:47 PM.
vogelap is offline   Reply With Quote