mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-06 08:15:41 +01:00
17 lines
385 B
Text
17 lines
385 B
Text
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class Shacknews(BasicNewsRecipe):
|
|
__author__ = 'Docbrown00'
|
|
__license__ = 'GPL v3'
|
|
title = u'Shacknews'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
language = 'en'
|
|
no_stylesheets = True
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
(u'Latest News', u'http://www.shacknews.com/shackfeed.xml'),
|
|
]
|