This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# vim:fileencoding=utf-8 | |
from __future__ import unicode_literals, division, absolute_import, print_function | |
from calibre.web.feeds.news import BasicNewsRecipe | |
class AdvancedUserRecipe1526022279(BasicNewsRecipe): | |
title = 'Calibre Blog' | |
oldest_article = 1000 | |
max_articles_per_feed = 100 | |
auto_cleanup = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# vim:fileencoding=utf-8 | |
from __future__ import unicode_literals, division, absolute_import, print_function | |
from calibre.web.feeds.news import BasicNewsRecipe | |
class AdvancedUserRecipe1525856516(BasicNewsRecipe): | |
title = 'Rosa Template' | |
oldest_article = 7 | |
max_articles_per_feed = 100 | |
auto_cleanup = True |