#!/usr/bin/env python __license__ = 'GPL v3' __copyright__ = '2009, Darko Miletic ' ''' 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'])]