calibre/recipes/nakedcapitalism.recipe
Kovid Goyal 29cd8d64ea
Change shebangs to python from python2
Also remove a few other miscellaneous references to python2
2020-08-22 18:47:51 +05:30

45 lines
1.3 KiB
Python

#!/usr/bin/env python
__license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
'''
www.nakedcapitalism.com
'''
from calibre.web.feeds.news import BasicNewsRecipe
class nakedcapitalism(BasicNewsRecipe):
title = 'Naked Capitalism'
__author__ = 'Darko Miletic'
description = 'Commentary on current economic and financial news.'
publisher = 'Aurora Advisors, Inc.'
category = 'news, business, finances, money, banking'
oldest_article = 7
max_articles_per_feed = 100
no_stylesheets = True
use_embedded_content = False
encoding = 'utf-8'
language = 'en'
extra_css = (' #BlogTitle{font-size: x-large; font-weight: bold}'
' #BlogDate{font-size: small} ')
auto_claenup = False
conversion_options = {
'comment': description,
'tags': category,
'publisher': publisher,
'language': language
}
feeds = [
(u'Articles', u'http://www.nakedcapitalism.com/feed'),
(u'Comments', u'http://www.nakedcapitalism.com/comments/feed'),
]
keep_only_tags = [
dict(name='header', attrs={'class': 'entry-header'}),
dict(name='div', attrs={'class': 'pf-content'})
]
remove_tags = [dict(name=['object', 'link', 'base'])]