Programmatic Update Caution

Episode Notes On this episode Michael discusses the following topics. Challenge Results Python import feedparser def parse_rss_feed(url): feed = feedparser.parse(url) titles = [] for entry in feed.entries: titles.append(entry.title) return titles rss_url = “https://iaccessibility.net/feed“ titles = parse_rss_feed(rss_url) for title in titles: print(title) Shell Script hash !/bin/sh rss_url=”https://iaccessibility.net/feed“ titles=$(curl -s “$rss_url” | xmlstarlet sel -t -m “//item/title” …

Read more