diff --git a/recipes/mobilenations.recipe b/recipes/mobilenations.recipe new file mode 100644 index 0000000000..c81bffc029 --- /dev/null +++ b/recipes/mobilenations.recipe @@ -0,0 +1,21 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class HindustanTimes(BasicNewsRecipe): + title = u'Mobile Nations' + language = 'en' + __author__ = 'Krittika Goyal' + oldest_article = 1 #days + max_articles_per_feed = 25 + #encoding = 'cp1252' + use_embedded_content = False + + no_stylesheets = True + auto_cleanup = True + #auto_cleanup_keep = '//div[@class="story-image shadowbox entry-content-asset"]' + + + feeds = [ +('News', + 'http://www.mobilenations.com/rss/mb.xml'), +] + diff --git a/recipes/television_without_pity.recipe b/recipes/television_without_pity.recipe new file mode 100644 index 0000000000..e48bce5859 --- /dev/null +++ b/recipes/television_without_pity.recipe @@ -0,0 +1,21 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class HindustanTimes(BasicNewsRecipe): + title = u'Television Without Pity' + language = 'en' + __author__ = 'Krittika Goyal' + oldest_article = 1 #days + max_articles_per_feed = 25 + #encoding = 'cp1252' + use_embedded_content = False + + no_stylesheets = True + auto_cleanup = True + #auto_cleanup_keep = '//div[@class="float_right"]' + + + feeds = [ +('News', + 'http://www.televisionwithoutpity.com/rss.xml'), +] + diff --git a/recipes/the_verge.recipe b/recipes/the_verge.recipe new file mode 100644 index 0000000000..83c1ed5e70 --- /dev/null +++ b/recipes/the_verge.recipe @@ -0,0 +1,21 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class HindustanTimes(BasicNewsRecipe): + title = u'The Verge' + language = 'en' + __author__ = 'Krittika Goyal' + oldest_article = 1 #days + max_articles_per_feed = 25 + #encoding = 'cp1252' + use_embedded_content = False + + no_stylesheets = True + auto_cleanup = True + auto_cleanup_keep = '//div[@class="story-image shadowbox entry-content-asset"]' + + + feeds = [ +('News', + 'http://www.theverge.com/rss/index.xml'), +] +