↧
Answer by Thomas K for best algorithm to combine multiple RSS feeds using Python
Depending on how often the feeds are updated and how often you check, you could simply fix broken dates (if it's in the future, reset it to today), before adding them to the database.Other than that,...
View Articlebest algorithm to combine multiple RSS feeds using Python
I am writing a python script to combine about 20+ RSS feeds. I would like to use a custom solution instead of feedjack or planetfeed. I use feedparser to parse the feeds and mysql to cache them. The...
View Article