From 5658211e01b232e3928460b1935b06ba6f6116d2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 5 Jan 2013 16:06:27 +0530 Subject: [PATCH] Oxford Mail by Krittika Goyal --- recipes/oxford_mail.recipe | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 recipes/oxford_mail.recipe diff --git a/recipes/oxford_mail.recipe b/recipes/oxford_mail.recipe new file mode 100644 index 0000000000..3096b867f4 --- /dev/null +++ b/recipes/oxford_mail.recipe @@ -0,0 +1,22 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class HindustanTimes(BasicNewsRecipe): + title = u'Oxford Mail' + language = 'en_GB' + __author__ = 'Krittika Goyal' + oldest_article = 1 #days + max_articles_per_feed = 25 + #encoding = 'cp1252' + use_embedded_content = False + + no_stylesheets = True + auto_cleanup = True + + + feeds = [ +('News', + 'http://www.oxfordmail.co.uk/news/rss/'), +('Sports', + 'http://www.oxfordmail.co.uk/sport/rss/'), +] +