View Single Post
Old 01-18-2019, 08:55 PM   #2
TimHare
Junior Member
TimHare began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Jan 2019
Device: Kindle Paperwhite
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/'),
]
TimHare is offline   Reply With Quote