mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
29 lines
824 B
Python
29 lines
824 B
Python
#!/usr/bin/env python
|
|
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'MrStefan <mrstefaan@gmail.com>'
|
|
|
|
'''
|
|
www.rushisaband.com
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class rushisaband(BasicNewsRecipe):
|
|
title = u'Rushisaband'
|
|
__author__ = 'MrStefan <mrstefaan@gmail.com>'
|
|
language = 'en_GB'
|
|
description =u'A blog devoted to the band RUSH and its members, Neil Peart, Geddy Lee and Alex Lifeson'
|
|
remove_empty_feeds= True
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
remove_javascript=True
|
|
no_stylesheets=True
|
|
|
|
keep_only_tags =[]
|
|
keep_only_tags.append(dict(name = 'h4'))
|
|
keep_only_tags.append(dict(name = 'h5'))
|
|
keep_only_tags.append(dict(name = 'p'))
|
|
|
|
feeds = [(u'Rush is a Band', u'http://feeds2.feedburner.com/rushisaband/blog')]
|