/CLI-Feed

A CLI tool to extract and view articles, i.e {title, link, published date, description} from RSS feeds

Primary LanguagePythonMIT LicenseMIT

rss_feed_reader

extract articles, i.e {title, link, published date, description} from RSS feeds to view in a command prompt RSS in Bash Terminal

Installation

git clone https://github.com/nkatasekonya/rss_feed_reader.git
cd rss_feed_reader
source venv/bin/activate
pip3 install -r requirements.txt
python3 ./rss_feed_reader.py

Usage

  • Insert an RSS Feed on line 38 in rss_feed_reader.py
    • on a wordpress site, add "/feed" to the end of the URL to access the RSS feed
feed_links = ["https://techcentral.co.za/feed", "https://ventureburn.com/feed"]
  • run the script
python3 rss_feed_reader.py
  • to run on Linux
chmod u+x rss_feed_reader.py
./rss_feed_reader.py