home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_4382 < prev    next >
Encoding:
Text File  |  2010-09-30  |  836 b   |  26 lines

  1. #!/usr/bin/env  python
  2.  
  3. __license__   = 'GPL v3'
  4. __copyright__ = '2008, Darko Miletic <darko.miletic at gmail.com>'
  5. '''
  6. market-ticker.denninger.net
  7. '''
  8.  
  9. from calibre.web.feeds.news import BasicNewsRecipe
  10.  
  11. class Themarketticker(BasicNewsRecipe):
  12.     title                 = 'The Market Ticker'
  13.     __author__            = 'Darko Miletic'
  14.     description           = 'Commentary On The Capital Markets'    
  15.     oldest_article        = 7
  16.     max_articles_per_feed = 100
  17.     language = 'en'
  18.  
  19.     no_stylesheets        = True
  20.     use_embedded_content  = True
  21.     html2lrf_options = [  '--comment'       , description
  22.                         , '--category'      , 'blog,news,finances'
  23.                         , '--base-font-size', '10'
  24.                        ]
  25.     feeds = [(u'Posts', u'http://market-ticker.denninger.net/feeds/index.rss2')]
  26.