mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
22 lines
1.0 KiB
Plaintext
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')]
|