Rainfeeds watches your RSS and Atom feeds and pushes new items to your Raindrop.
Clone this repository and run
pip install .
Create a Raindrop API Test token and define it in the environment
export RAINDROP_ACCESS_TOKEN=<your-test-token>
# list feeds
rainfeeds ls
# add a feed
rainfeeds add [-t TITLE] [-c CATEGORY] url
# remove a feed
rainfeeds rm url
# edit a feed
rainfeeds edit [-h] [-t TITLE] [-c CATEGORY] url
# send new feed entries to raindrop
rainfeeds sync
Create the container
podman container create \
--name rainfeeds \
-v $PATH_TO_DATA_DIR:/app/data \
-e RAINDROP_ACCESS_TOKEN \
ghcr.io/anubhavkini/rainfeeds:main
Send new feed entries to raindrop
podman start -ai rainfeeds
This project is licensed under the MIT License - see the LICENSE file for details.