RSS feed reader in terminal for Code Mentor. RSS Feed Reader will take a url and return title, description, and link of the original content
Install with pip
python -m pip install git+https://github.com/mvictoria/rss_feed_reader
rss_feed_reader [RSS URL LIST]
example:
rss_feed_reader https://talkpython.fm/episodes/rss https://realpython.com/podcasts/rpp/feed
Build docker image
sudo docker build --tag rss-feed-reader .
sudo docker container run --publish 80:80 --name rss-container rss-feed-reader
Connect to http://localhost/docs
Ex: http://localhost/read/https://talkpython.fm/episodes/rss
Shut it down with
sudo docker stop rss-container
sudo docker rm rss-container