Skip to content

Commit

Permalink
Voice of America by Krittika Goyal
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Apr 20, 2013
1 parent 4d5ef02 commit 3ee801d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions recipes/voice_of_america.recipe
Original file line number Diff line number Diff line change
@@ -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'),

]

0 comments on commit 3ee801d

Please sign in to comment.