Here is the recipe as I tried to customize it after creating it in the basic mode. I added the description, author, and publisher lines
#!/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 AdvancedUserRecipe1547443791(BasicNewsRecipe):
title = 'Florida Phoenix'
description = 'Quality Journalism for Critical Times'
author = 'Florida Phoenix'
publisher = 'Florida Phoenix'
oldest_article = 7
max_articles_per_feed = 100
auto_cleanup = True
feeds = [
('Florida Phoenix RSS feed', 'https://www.floridaphoenix.com/feed/'),
]
|