mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
22 lines
708 B
Plaintext
22 lines
708 B
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2012, Peter Grungi <p dot grungi at gmail dot com>'
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class DesiringGodEnglish(BasicNewsRecipe):
|
|
title = u'Desiring God'
|
|
__author__ = 'Peter Grungi'
|
|
language = 'en'
|
|
|
|
cover_url = 'http://cdn0.desiringgod.org/images/layout/breadcrumbs_dg_mark.png'
|
|
masthead_url = 'http://cdn0.desiringgod.org/images/layout/breadcrumbs_dg_mark.png'
|
|
language = 'en'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 50
|
|
auto_cleanup = True
|
|
publisher = 'Desiring God Ministries'
|
|
author = 'Desiring God Ministries'
|
|
|
|
feeds = [(u'Desiring God Blog', u'http://feeds.feedburner.com/DGBlog?format=xml')]
|