RSS limited articles on Kindle?
Hi. I own a Kindle Paperwhite (PW1). I use a custom recipe to get rss feeds from my personal blog and create an ebook with lyrics and other texts. However I noticed that no matter what I put in "max_articles_per_feed" in the recipe, my device only shows up to 10 links in the menu. When I add a new post in my blog and run the recipe again, the latest article becomes the first item in the menu and the former 10th article disappears, keeping only 10 items listed in the menu. Is this a Kindle limitation or is there something wrong with my recipe? Here is the code:
#!/usr/bin/env python
# vim:fileencoding=utf-8
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1601310754(BasicNewsRecipe):
title = 'MÚSICAS, SERMÕES E TEXTOS DIVERSOS'
oldest_article = 120
max_articles_per_feed = 30
auto_cleanup = True
feeds = [
('SERMÕES', 'https://letrasdoheber.wordpress.com/tag/sermoes/feed'),
('ILUSTRAÇÕES', 'https://letrasdoheber.wordpress.com/tag/Ilustrações/feed'),
('POEMAS', 'https://letrasdoheber.wordpress.com/tag/poemas/feed'),
('SOLOS', 'https://letrasdoheber.wordpress.com/tag/solos/feed'),
('TRIO L3', 'https://letrasdoheber.wordpress.com/tag/trio-l3/feed'),
('AUTORAIS', 'https://letrasdoheber.wordpress.com/tag/composicoes-proprias/feed'),
]
Last edited by heberlima; 10-01-2020 at 12:09 PM.
Reason: mistype
|