mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2010-2015, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
www.philosophersmag.com
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class TPM_uk(BasicNewsRecipe):
|
|
title = "The Philosophers' Magazine"
|
|
__author__ = 'Darko Miletic'
|
|
description = 'Title says it all'
|
|
publisher = "The Philosophers' Magazine"
|
|
category = 'philosophy, news'
|
|
oldest_article = 80
|
|
max_articles_per_feed = 200
|
|
no_stylesheets = True
|
|
encoding = 'utf8'
|
|
use_embedded_content = False
|
|
language = 'en_GB'
|
|
remove_empty_feeds = True
|
|
publication_type = 'magazine'
|
|
extra_css = """
|
|
body{font-family: Raleway,sans-serif }
|
|
"""
|
|
|
|
conversion_options = {
|
|
'comment': description, 'tags': category, 'publisher': publisher, 'language': language
|
|
}
|
|
|
|
remove_tags = [
|
|
dict(name=['meta', 'link', 'base', 'iframe', 'embed', 'object', 'img'])]
|
|
keep_only_tags = [
|
|
dict(attrs={'class': ['article-title', 'article-content']})]
|
|
|
|
feeds = [
|
|
|
|
(u'Articles', u'http://www.philosophersmag.com/index.php/tpm-mag-articles?format=feed&type=rss'),
|
|
(u'Reflections', u'http://www.philosophersmag.com/index.php/reflections?format=feed&type=rss')
|
|
]
|