View Single Post
Old 11-28-2011, 05:33 PM   #3
NotTaken
Connoisseur
NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.
 
Posts: 65
Karma: 4640
Join Date: Aug 2011
Device: kindle
Code:
from calibre.web.feeds.news import BasicNewsRecipe

class DailyWritingTips(BasicNewsRecipe):
    title          = u'Daily Writing Tips'
    language       = 'en_GB'
    oldest_article = 7 #days
    max_articles_per_feed = 40
    use_embedded_content = True
    no_stylesheets = True
    auto_cleanup = False
    encoding = 'utf-8'


    feeds          = [
('Latest tips', 
 'http://feeds2.feedburner.com/DailyWritingTips'),
]
NotTaken is offline   Reply With Quote