I am trying to skip over RSS feeds if not updated since my last visit. For this, the following guidelines of the documentation:http://pythonhosted.org/feedparser/http-etag.html, I wrote the following code:
import feedparser as fpd = fp.parse("https://geeksgod.com/category/internships/feed/")d2 = fp.parse("https://geeksgod.com/category/internships/feed/",etag=d.etag, modified=d.modified)print(d2.status)Output:200
But apparently, the page is not updated and still, it is giving 200 status. I have used both Etag and Modified. I am not able to understand how to correct this? Any help is appreciated. Thank you in advance.