-1

I want to figure out constantly monitor an RSS feed (Python 2.7, using feedparser) or any other library.

Means if blog add a new article we get alert. and if article in db != new article then add this article in our db.

I don't know how to do that.

Syed Aashir
  • 51
  • 1
  • 7

1 Answers1

1

Always smart to start with the documentation of the module you intend to use. In the case of Feedparser that would be in the link below:

https://pythonhosted.org/feedparser/index.html

Follow the instructions, tinker the code, make a few mistakes, learn from them, get familiar with the module. It's the only way you can learn.

Imran Said
  • 215
  • 3
  • 13
  • 1
    yes, "follow ... tinker ... learn ... get familiar ..." AND then post a Q to stackoverflow with your best attempt to solve the problem. Good luck. – shellter May 13 '18 at 23:28