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