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...