initial commit

This commit is contained in:
2026-03-25 00:44:14 -04:00
parent 6f0e393e55
commit 0bea824098
3 changed files with 117 additions and 1 deletions

8
example2.py Normal file
View File

@@ -0,0 +1,8 @@
import feedparser
feed = feedparser.parse("https://news.google.com/rss/search?q=mathematics")
for entry in feed.entries[:5]:
print(entry.title)
print(entry.link)
print("-" * 40)