Glenn Brenwald and Ludwig von Mises Institute by anywho

This commit is contained in:
Kovid Goyal 2013-07-07 08:47:26 +05:30
parent e836bbd203
commit 75cf58d0f1
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
from calibre.web.feeds.news import AutomaticNewsRecipe
class BasicUserRecipe1373130920(AutomaticNewsRecipe):
title = u'Glenn Greenwald | guardian.co.uk'
language = 'en_GB'
__author__ = 'anywho'
oldest_article = 7
max_articles_per_feed = 100
auto_cleanup = True
feeds = [(u'Latest', u'http://www.guardian.co.uk/profile/glenn-greenwald/rss')]

View File

@ -0,0 +1,14 @@
from calibre.web.feeds.news import AutomaticNewsRecipe
class BasicUserRecipe1373130372(AutomaticNewsRecipe):
title = u'Ludwig von Mises Institute'
__author__ = 'anywho'
language = 'en'
oldest_article = 7
max_articles_per_feed = 100
auto_cleanup = True
feeds = [(u'Daily Articles (Full text version)',
u'http://feed.mises.org/MisesFullTextArticles'),
(u'Mises Blog Posts',
u'http://mises.org/blog/index.rdf')]