You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: