Very small RSS notifier using ntfy. I would highly recommend using a self hosted ntfy instance, so that you can use whatever ntfy names you want.
It's designed for use alongside certain 'alternative frontend services'. I use it for:
Both of these provide RSS feeds, which are on basically every page plus /rss
: very handy.
- Python 3
- BeautifulSoup4,
pip install beautifulsoup4
- requests
python -m pip install requests
I recommend cloning the repo to a remote server (I run it on an Ubuntu server):
git clone https://github.com/julianorchard/rss-ntfy.git
At the moment, there is a global variable called SERVICES
. Edit this to rename services/add a different URL for a preferred instance of whatever service you're using.
SERVICES = [{"service": "nitter", "url": "https://nitter.it/"},
{"service": "proxitok", "url": "https://proxitok.pabloferreiro.es/@"}]
You can then use a crontab or a systemd service (or, on Windows, a Task Scheduler task) to run the command periodically.
Under the MIT License. See license file for more information.