2024-01-18 15:07:44 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import feedparser
|
|
|
|
|
|
|
|
#d = feedparser.parse('http://www.reddit.com/r/python/.rss')
|
2024-02-11 02:47:44 +01:00
|
|
|
#d = feedparser.parse('file:///home/rob/uho/html/podcast_rss.xml')
|
|
|
|
d = feedparser.parse('https://uho.rizom.si/podcast_rss.xml')
|
2024-01-18 15:07:44 +01:00
|
|
|
|
|
|
|
for post in d.entries:
|
|
|
|
# print(post.title + ": " + post.link + "")
|
|
|
|
print(post)
|
|
|
|
|