There are several ways to get an RSS feed from a website.
What you can do is get the source code of the website and find this link tag type="application/rss+xml"
This will contain the RSS feed of this website, if any.
Here is a simple python program that will print the RSS feed of any website, if any.
import requests from bs4 import BeautifulSoup def get_rss_feed(website_url): if website_url is None: print("URL should not be null") else: source_code = requests.get(website_url) plain_text = source_code.text soup = BeautifulSoup(plain_text) for link in soup.find_all("link", {"type" : "application/rss+xml"}): href = link.get('href') print("RSS feed for " + website_url + "is -->" + str(href)) get_rss_feed("http://www.extremetech.com/")
Save this file with the extension .py and run it. It will provide you with the rss feed url of this website.
Google also provides APIs for finding website RSS feeds. Please find them here: Google Feed API
Ram Narayan Nov 13 '14 at 14:14 2014-11-13 14:14
source share