calibre/recipes/themarketticker.recipe
Kovid Goyal 567040ee1e Perform PEP8 compliance checks on the entire codebase
Some bits of PEP 8 are turned off via setup.cfg
2016-07-29 21:25:17 +05:30

25 lines
716 B
Python

#!/usr/bin/env python2
__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')]