Currently, py-feedr is non-asynchronous and this makes it very vulnerable to missing RSS feed updates if a RSS feed is updated quickly, i.e. if that feed is updated quicker (say 0.5s) than feedr is being called (e.g. every second).
Making py-feedr asynchronous would solve that problem (then the binary would run constantly). Not much work is needed, the most important part of the work would be finding an asynchronous HTTP library then have it call feedparser as a callback.
Currently, py-feedr is non-asynchronous and this makes it very vulnerable to missing RSS feed updates if a RSS feed is updated quickly, i.e. if that feed is updated quicker (say 0.5s) than feedr is being called (e.g. every second).
Making py-feedr asynchronous would solve that problem (then the binary would run constantly). Not much work is needed, the most important part of the work would be finding an asynchronous HTTP library then have it call feedparser as a callback.
v1.0.0 milestone.