mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-19 20:25:09 +01:00
11 lines
305 B
Text
11 lines
305 B
Text
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class Counterpunch(BasicNewsRecipe):
|
|
title = u'Counterpunch'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
language = 'en'
|
|
|
|
feeds = [(u'Counterpunch', u'http://www.counterpunch.org/category/article/feed/')]
|