Quote:
Originally Posted by bthoven
I simply add the link through calibre interface, no advanced customization from the standard coding. Could you share your recipe?
|
Code:
from calibre.web.feeds.news import BasicNewsRecipe
class Test(BasicNewsRecipe):
title = 'Test'
__author__ = 'Starson17'
description = 'Test'
language = 'en'
use_embedded_content= False
no_stylesheets = True
oldest_article = 24
remove_javascript = True
feeds = [
(u'Current Feed', u'http://www.sciencedaily.com/rss/space_time.xml')
]