mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-21 02:13:15 +02:00
Economic and Political Weekly by Krittika Goyal
This commit is contained in:
parent
d064348637
commit
bdecc6a588
1 changed files with 33 additions and 0 deletions
33
recipes/epw.recipe
Normal file
33
recipes/epw.recipe
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
|
||||
|
||||
class Politics(BasicNewsRecipe):
|
||||
title = u'Economic and Political Weekly'
|
||||
description = 'Economic and Political news from India'
|
||||
language = 'en_IN'
|
||||
__author__ = 'Krittika Goyal'
|
||||
oldest_article = 15 # days
|
||||
max_articles_per_feed = 20
|
||||
use_embedded_content = False
|
||||
|
||||
no_stylesheets = True
|
||||
auto_cleanup = True
|
||||
|
||||
feeds = [
|
||||
|
||||
('Editorials', ' http://www.epw.in/feed/editorials.xml'),
|
||||
|
||||
('Commentry', ' http://www.epw.in/feed/commentary.xml'),
|
||||
|
||||
('Insight', ' http://www.epw.in/feed/insight.xml'),
|
||||
|
||||
('Book Reviews', ' http://www.epw.in/feed/book-reviews.xml'),
|
||||
|
||||
('Perspectives', ' http://www.epw.in/feed/perspectives.xml'),
|
||||
|
||||
('Special Articles', ' http://www.epw.in/feed/special-articles.xml'),
|
||||
|
||||
('Discussion', ' http://www.epw.in/feed/discussion.xml'),
|
||||
|
||||
('Web Exclusives', ' http://www.epw.in/feed/web-exclusives.xml'),
|
||||
]
|
||||
Loading…
Reference in a new issue