View Single Post
Old 02-06-2013, 05:32 PM   #10
surf
Member
surf began at the beginning.
 
Posts: 22
Karma: 10
Join Date: Feb 2013
Device: kindle
Already done with following code

Code:
from calibre import strftime

    def parse_feeds(self):

        feeds = BasicNewsRecipe.parse_feeds(self)

        for currFeed in feeds:
            for a,currArticle in enumerate(currFeed.articles):
                 currArticle.text_summary =  ''
                 currArticle.formatted_date =  strftime('[%Y.%m.%d]',currArticle.date)
 
        return feeds
Thanks!
surf is offline   Reply With Quote