mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
11 lines
303 B
Plaintext
11 lines
303 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Counterpunch(BasicNewsRecipe):
|
|
title = u'Counterpunch'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
|
|
feeds = [(u'Counterpunch', u'http://www.counterpunch.org/category/article/feed/')]
|
|
|