From 3ee801d1be95216f47705bdc06ed6275b186f157 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 20 Apr 2013 14:59:27 +0530 Subject: [PATCH] Voice of America by Krittika Goyal --- recipes/voice_of_america.recipe | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 recipes/voice_of_america.recipe diff --git a/recipes/voice_of_america.recipe b/recipes/voice_of_america.recipe new file mode 100644 index 0000000000..564a55bc94 --- /dev/null +++ b/recipes/voice_of_america.recipe @@ -0,0 +1,28 @@ +from calibre.web.feeds.news import BasicNewsRecipe +from calibre.ebooks.BeautifulSoup import BeautifulSoup + +class HindustanTimes(BasicNewsRecipe): + title = u'Voice of America' + language = 'en' + __author__ = 'Krittika Goyal' + oldest_article = 15 #days + max_articles_per_feed = 25 + #encoding = 'cp1252' + use_embedded_content = False + + no_stylesheets = True + auto_cleanup = True + + + feeds = [ +('All Zones', + 'http://learningenglish.voanews.com/rss/?count=20'), +('World', + 'http://learningenglish.voanews.com/rss/?count=20&zoneid=957'), +('USA', + 'http://learningenglish.voanews.com/rss/?count=20&zoneid=958'), +('Health', + 'http://learningenglish.voanews.com/rss/?count=20&zoneid=955'), + +] +