mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
21 lines
671 B
Plaintext
21 lines
671 B
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2012, Peter Grungi <p dot grungi at gmail dot com>'
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class TheResurgence(BasicNewsRecipe):
|
|
title = u'The Resurgence'
|
|
__author__ = 'Peter Grungi'
|
|
language = 'en'
|
|
|
|
oldest_article = 7
|
|
max_articles_per_feed = 10
|
|
auto_cleanup = True
|
|
cover_url = 'http://cdn.theresurgence.com/images/logo.png'
|
|
masthead_url = 'http://cdn.theresurgence.com/images/logo.png'
|
|
language = 'en'
|
|
publisher = 'The Resurgence'
|
|
author = 'The Resurgence'
|
|
|
|
feeds = [(u'The Resurgence', u'http://feeds.theresurgence.com/TheResurgence?format=xml')]
|