How to make a RSS Parser in Python ?
What is RSS ?
RSS stands for Really Simple Syndication. RSS Feed for a site is a file that contains the content that site has published. It is usually in XML format. It is updated reguraly with new content from the site. Typically, each site has one RSS file URL. For example - https://hackernoon.com/feedIn some websites, we can also add tags in the RSS Feed URL to get the content of only that specific tag from the website.
Things you would learn
We would learn about RSS files and how to develop a simple RSS feed parser in python using python open source library feedparser.
Installing Feedparser
Make sure you have python 3.x installed in your system. For installing feedparser, run the following command in the terminal. It will install the latest version of the feedparser in the system.
pip install feedparser