mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-06 08:15:41 +01:00
13 lines
486 B
Text
13 lines
486 B
Text
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1263409732(BasicNewsRecipe):
|
|
title = u'Think Progress'
|
|
description = u'A compilation of progressive articles on social and economic justice, healthy communities, media accountability, global and domestic security.' # noqa
|
|
__author__ = u'Xanthan Gum'
|
|
language = 'en'
|
|
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
|
|
feeds = [(u'News Articles', u'http://thinkprogress.org/feed/')]
|