1
0
Fork
You've already forked custom_rss_generators
0
A collection of scripts that generate custom RSS feeds
  • Perl 67.5%
  • Python 32.5%
2025年01月09日 21:30:48 +00:00
src Move all scripts to 'src' directory 2025年01月09日 21:30:48 +00:00
.gitignore Initial commit 2024年03月11日 23:22:39 +00:00
LICENSE Initial commit 2024年03月11日 23:22:39 +00:00
README.md Update README.md 2024年07月02日 22:27:25 +01:00

custom_rss_generators

A collection of scripts that generate custom RSS feeds

The scripts in this repository do not by default generate output files, instead only outputting to stdout. This is quite elegant if your RSS feed reader supports reading in from stdout as it avoid the generation of intermediary files. For example, in my newsraft feeds configuration file, I have the following lines:

@ Events
$(python3 ~/code/python/custom_rss_generators/roisin_dubh_listings.py 2>/dev/null) " Róisín Dubh Event Listings"

However, if your RSS feed reader does not support reading in from stdout or running executables to generate feeds, you will need to find another way to utilise these scripts, e.g. generating rss.xml files on a cron schedule and reading from those in your feed reader by using the a link beginning with file:// or if possible, doing some kind of command injection attack via your configuration file to force your feed reader to execute the script (although if successful & not a deliberate design feature this likely indicates a security issue with your feed reader).