Spaces:
Running
Running
Update rss_processor.py
Browse files- rss_processor.py +1 -1
rss_processor.py
CHANGED
@@ -78,7 +78,7 @@ def fetch_rss_feeds():
|
|
78 |
logger.warning(f"Failed to parse {feed_url}: {feed.bozo_exception}")
|
79 |
continue
|
80 |
unique_count = 0
|
81 |
-
for entry in feed.entries[:
|
82 |
title = entry.get("title", "No Title")
|
83 |
link = entry.get("link", "")
|
84 |
# Create a unique key for deduplication (title and link)
|
|
|
78 |
logger.warning(f"Failed to parse {feed_url}: {feed.bozo_exception}")
|
79 |
continue
|
80 |
unique_count = 0
|
81 |
+
for entry in feed.entries[:100]:
|
82 |
title = entry.get("title", "No Title")
|
83 |
link = entry.get("link", "")
|
84 |
# Create a unique key for deduplication (title and link)
|