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