These are some notes on how python scripts are used in Fedora's websites to pull data from RSS feeds.
- feedparser
feedparser.parse()to parse through content from a url or file- access elements using
d.feed- set
d = feedparser.parse() - then access elements ie:
d.feed.link
- set
- you can access elements from specific entries like
d.feed[0].link