This project is an implementation of a simple HTML RSS feed reader and aggregator with JavaScript and Python.
Clone the project.
feed-loader.js
rss_agg.py
rss.sh
rss_agg.py and rss.sh executable:chmod 750 rss_agg.py rss.sh
feed-loader.js from the HTML page where the RSS feeds will be displayed:<div id="rss-feed-box"></div>
<script src="/fetchrss/feed-loader.js"></script>
rss_agg.py and rss.sh on a schedule:0 */6 * * * cd /path/to/fetchrss && bash rss.sh >/dev/null 2>&1
3 */6 * * * cd /path/to/fetchrss && python3 rss_agg.py >/dev/null 2>&1
The blog post: https://cybrkyd.com/post/fetchrss-version-2
This project is made available under a GPL3 licence -- see COPYING for the full text.