Read Naked Capitalism on your iPad or Kindle in no time. Click download to load the free ebook on your reader.
Check out all the available public recipes or write your own with these quick start guides. ReadBeam is built on calibre, so everything in the docs and the fora applies here as well.
Naked Capitalism is a popular blog published by Yves Smith, a pen name of Susan Webber, the Principal of Aurora Advisors, Inc., a management consulting firm. The blog deals mainly with finance-related and economic news and analysis, with a particular focus throughout 2010-11 on legal and ethical issues involving the banking industry and problems with the mortgage foreclosure process.
Language: en
Requires Subscription: No, it's available as free ebook
Schedule Every morning
#!/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} '
conversion_options = {
'comment' : description
, 'tags' : category
, 'publisher' : publisher
, 'language' : language
}
feeds = [(u'Articles', u'http://www.nakedcapitalism.com/feed')]
keep_only_tags = [
dict(name='h3', attrs={'class':'post-title entry-title'})
,dict(name='div', attrs={'class':'entry'})
]
remove_tags = [dict(name=['object','link','base'])]