Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader > Kobo Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 06-03-2025, 08:25 PM   #1
PamGaoshow
Junior Member
PamGaoshow began at the beginning.
 
PamGaoshow's Avatar
 
Posts: 3
Karma: 10
Join Date: Jan 2019
Device: Kobo Libra Colour
Thumbs up A RSS converter(?) for Kobo eReader

For someone who is new to the Kobo e-reader, I still don't think there is any way to compare the Kobo to the Kindle. I previously used a Kindle Oasis 3 with LTE, and connecting to the internet anytime and anywhere allows me to access fresh information often. But since I switched to Kobo, I don't have access to the internet during my commute to and from work, but I still want to read news and information. So I tried to write a Python script to fetch 5 recent articles under each RSS link and turn them into ePub files to display on my desktop.


Click on the link below to see how to install it:
https://github.com/IcingTomato/Kobo-...ster/README.md

It looks like I don't have a way to upload attachments yet, so I'll post the GitHub link here:
https://github.com/IcingTomato/Kobo-RSS/releases
Attached Files
File Type: zip Kobo-RSS_v0.0.1.zip (8.8 KB, 26 views)

Last edited by PamGaoshow; 06-03-2025 at 08:29 PM. Reason: It looks like I don't have a way to upload attachments yet
PamGaoshow is offline   Reply With Quote
Old 06-03-2025, 08:38 PM   #2
PamGaoshow
Junior Member
PamGaoshow began at the beginning.
 
PamGaoshow's Avatar
 
Posts: 3
Karma: 10
Join Date: Jan 2019
Device: Kobo Libra Colour
The effect is as follows:

The effect is as follows:
Attached Thumbnails
Click image for larger version

Name:	screen_002.png
Views:	70
Size:	362.8 KB
ID:	215984   Click image for larger version

Name:	screen_003.png
Views:	56
Size:	107.6 KB
ID:	215985   Click image for larger version

Name:	screen_001.png
Views:	57
Size:	478.3 KB
ID:	215986  
PamGaoshow is offline   Reply With Quote
Old 06-04-2025, 04:27 AM   #3
fdread
Member
fdread began at the beginning.
 
Posts: 13
Karma: 10
Join Date: Mar 2025
Device: Kobo Libra Colour
Looks great, I will give it a try!

It is resource intensive to create such ePub directly on the Kobo Libra?
fdread is offline   Reply With Quote
Old 06-04-2025, 07:23 AM   #4
PamGaoshow
Junior Member
PamGaoshow began at the beginning.
 
PamGaoshow's Avatar
 
Posts: 3
Karma: 10
Join Date: Jan 2019
Device: Kobo Libra Colour
Quote:
Originally Posted by fdread View Post
Looks great, I will give it a try!

It is resource intensive to create such ePub directly on the Kobo Libra?
Yes, I’m building the ePub files directly on the Libra Colour.
I’ve tried using 10 RSS feeds, each fetching 10 articles, and the maximum memory usage was only around 120MB.
On Linux systems, Buffers and Cache might consume a lot of memory resources, so I added two lines in NickelMenu to check memory usage and to clear the Buffer and Cache.

Code:
menu_item : main : Memory Usage : cmd_output : 500 : free -m | awk 'NR==2{printf "Used: %dMB\nBuff/Cache: %dMB\nAvailable: %dMB\n", $3, $6, $7}'
menu_item : main : Clear Memory : cmd_output : 500 : sync && echo 3 > /proc/sys/vm/drop_caches && free -m | awk 'NR==2{printf "Used: %dMB\nBuff/Cache: %dMB\nAvailable: %dMB\n", $3, $6, $7}'
By the way, this script can also run on a server. I'm also exploring whether it can be deployed to Google App Engine to automatically push to Google Drive. That way, it can be used without jailbreaking, although it would still require an internet connection.
PamGaoshow is offline   Reply With Quote
Old Yesterday, 07:50 AM   #5
denilsonsa
Junior Member
denilsonsa began at the beginning.
 
Posts: 2
Karma: 10
Join Date: May 2025
Device: Kindle Paperwhite (7th Generation)
Hello!

It is normal to have buffers/cache consume a lot of memory on Linux systems. That's expected behavior. Such memory is being used to speed up your system, and the space used by buffers/cache is automatically freed when the system needs more memory for something else. Thus, I don't understand why would you want to manually force the system to drop its cached data.

Also, KOReader has a built-in RSS feed that works pretty much in a similar way to the tool you wrote. It can fetch the last "n" articles of each feed, and download them and save them as EPUBs locally. (I've used that on an old Kindle device, I'm assuming this feature is also available on KOReader for Kobo.)
denilsonsa is offline   Reply With Quote
Old Yesterday, 04:11 PM   #6
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,103
Karma: 168961902
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by PamGaoshow View Post
By the way, this script can also run on a server. I'm also exploring whether it can be deployed to Google App Engine to automatically push to Google Drive. That way, it can be used without jailbreaking, although it would still require an internet connection.
Out of curiosity, how do you jailbreak a Kobo ereader? Inquiring minds are eager to know.
DNSB is offline   Reply With Quote
Old Yesterday, 07:14 PM   #7
PeterT
Grand Sorcerer
PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.
 
Posts: 13,486
Karma: 78910112
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
There is no real need to jailbreak a Kobo. Mods / Updates are normally installed via a custom KoboRoot.tgz file (compressed tar file) copied to the devices .kobo directory when attached via USB. The contents of this file will be extracted by the device.
PeterT is offline   Reply With Quote
Reply

Tags
rss


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Ebook Glue--free RSS feed to ebook converter Doitsu General Discussions 1 01-14-2013 03:13 PM
nmdLite - RSS Feeds to FB2 format converter igors48 Reading and Management 4 02-04-2011 02:16 AM
rss feeds to fb2 converter Traut HanLin eBook 5 12-18-2007 09:05 AM


All times are GMT -4. The time now is 02:39 AM.


MobileRead.com is a privately owned, operated and funded community.