Read The Market Ticker 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.
Commentary On The Capital Markets
Language: en
Requires Subscription: No, it's available as free ebook
Schedule Every morning
#!/usr/bin/env python
__license__ = 'GPL v3'
__copyright__ = '2008, Darko Miletic <darko.miletic at gmail.com>'
'''
market-ticker.denninger.net
'''
from calibre.web.feeds.news import BasicNewsRecipe
class Themarketticker(BasicNewsRecipe):
title = 'The Market Ticker'
__author__ = 'Darko Miletic'
description = 'Commentary On The Capital Markets'
oldest_article = 7
max_articles_per_feed = 100
language = 'en'
no_stylesheets = True
use_embedded_content = True
html2lrf_options = [ '--comment' , description
, '--category' , 'blog,news,finances'
, '--base-font-size', '10'
]
feeds = [(u'Posts', u'http://market-ticker.denninger.net/feeds/index.rss2')]