I am trying to build an algorithms that get rss items. I could do that using feedparser
. However, I couldn't get the update items.
When I execute the code
data = feedparser.parse(URL)
I want to do that automatically, without running the script every
for x in data
// Check if the entries is new
if x.link not in data["links"]:
// storing the data.
I though of using a Timer
so I keep the script running on server, and running it every one hour.
How can I do solve this problem ?