calibre/recipes/republica.recipe
Kovid Goyal 567040ee1e Perform PEP8 compliance checks on the entire codebase
Some bits of PEP 8 are turned off via setup.cfg
2016-07-29 21:25:17 +05:30

22 lines
1.0 KiB
Plaintext

from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1316862613(BasicNewsRecipe):
title = u'Republica'
__author__ = 'Manish Bhattarai'
description = 'News from the Republica'
language = 'en_NP'
masthead_url = 'http://blog.nyayahealth.org/wp-content/uploads/2011/03/myrepublica1.gif'
oldest_article = 1
max_articles_per_feed = 100
auto_cleanup = True
cover_url = 'http://www.myrepublica.com/repub_front.jpg'
feeds = [
(u'Political Affairs', u'http://www.myrepublica.com/portal/news_rss.php?news_category_id=14'),
(u'Business & Economy', u'http://www.myrepublica.com/portal/news_rss.php?news_category_id=15'),
(u'International', u'http://www.myrepublica.com/portal/news_rss.php?news_category_id=21'),
(u'Social Issues', u'http://www.myrepublica.com/portal/news_rss.php?news_category_id=16'),
(u'Sports', u'http://www.myrepublica.com/portal/news_rss.php?news_category_id=18'),
(u'Lifestyle', u'http://www.myrepublica.com/portal/news_rss.php?news_category_id=17')]