RSS-lambda is a webapp that performs operations on RSS feeds.
There is a web UI available at rss-lambda.ktachibana.party
From there, you can input what you want to do with the RSS feed, and the webapp will generate a feed URL after your specified operation.
You could also construct the after-operation feed URL manually.
You need to urlencode your feed url first.
For example, if your feed url is
https://nitter.ktachibana.party/twitter_handle/rss
You need to urlencode the url first, using tools like urlencoder.org
https%3A%2F%2Fnitter.ktachibana.party%2Ftwitter_handle%2Frss
Your filtered feed url will be this if you want to only include entries with keyword1
and keyword2
in their titles
https://rss-lambda.ktachibana.party/rss?url=https%3A%2F%2Fnitter.ktachibana.party%2Ftwitter_handle%2Frss&op=filter_title_incl_substrs¶m=keyword1¶m=keyword2
Your filtered feed url will be this if you want to exclude entries with keyword1
and keyword2
in their titles
https://rss-lambda.ktachibana.party/rss?url=https%3A%2F%2Fnitter.ktachibana.party%2Ftwitter_handle%2Frss&op=filter_title_excl_substrs¶m=keyword1¶m=keyword2
Your filtered feed url will be this if you want to exclude entries with keyword1
and keyword2
in their descriptions
https://rss-lambda.ktachibana.party/rss?url=https%3A%2F%2Fnitter.ktachibana.party%2Ftwitter_handle%2Frss&op=filter_desc_excl_substrs¶m=keyword1¶m=keyword2
Your filtered feed url will be this if you want to only include entries with image(s) in their descriptions
https://rss-lambda.ktachibana.party/rss?url=https%3A%2F%2Fnitter.ktachibana.party%2Ftwitter_handle%2Frss&op=filter_desc_cont_img
Consider support us on Patreon :)
You can use the following docker-compose.yml
to run the program
version: '3'
services:
app:
restart: always
ports:
- "5000:5000"
image: ghcr.io/k-t-corp/rss-lambda:latest
The program will be exposed at port 5000 and you can then use a reverse proxy like Nginx to expose it to the Internet
Optionally you can specify the port that the program listens to. This is useful in scenarios such as setting up a Tailscale sidecar where you need to have the program listen to port 80
version: '3'
services:
app:
restart: always
image: ghcr.io/k-t-corp/rss-lambda:latest
environment:
- PORT=80
# network_mode: service:tailscale-sidecar
Open in VSCode, then run
pip install -r requirements.txt
flask run --reload
The webapp will be available at localhost:5000
Run unit tests
python -m unittest discover