Spaces:
Running
Running
Update rss_processor.py
Browse files- rss_processor.py +1 -0
rss_processor.py
CHANGED
@@ -70,6 +70,7 @@ hf_api = HfApi()
|
|
70 |
def fetch_rss_feeds():
|
71 |
articles = []
|
72 |
for feed_url in RSS_FEEDS:
|
|
|
73 |
feed = feedparser.parse(feed_url)
|
74 |
for entry in feed.entries[:5]: # Limit to 5 per feed
|
75 |
articles.append({
|
|
|
70 |
def fetch_rss_feeds():
|
71 |
articles = []
|
72 |
for feed_url in RSS_FEEDS:
|
73 |
+
print('processing ', feed_url)
|
74 |
feed = feedparser.parse(feed_url)
|
75 |
for entry in feed.entries[:5]: # Limit to 5 per feed
|
76 |
articles.append({
|