This commit is contained in:
2025-11-28 15:50:44 +00:00
parent 1656f19077
commit 19fabacf5a
2 changed files with 40 additions and 1 deletions

View File

@@ -462,7 +462,11 @@ def crawl_rss_feed(feed_url, feed_name, feed_category='general', max_articles=10
except Exception as e:
print(f" ✗ Error processing feed {feed_name}: {e}")
return 0
return {
'crawled': 0,
'summarized': 0,
'failed_summaries': 0
}
def crawl_all_feeds(max_articles_per_feed=10):