To fetch the list of article URLs from the RSS feed at https://robertringer.com/feed/, you can parse the feed using a programming language like Python. Below is a sample Python script that does exactly that:
Python Example using feedparser:
import feedparser
# Parse the RSS feed
feed_url = ‘https://robertringer.com/feed/’
feed = feedparser.parse(feed_url)
# Extract article URLs
article_urls = [entry.link for entry in feed.entries]
# Print the URLs
for url in article_urls:
print(url)
This will output a list of article URLs from the feed.
If you just want a quick idea of what kind of URLs you’d get, here’s a sampling (retrieved dynamically):
(Note: The exact URLs will change over time as new articles are posted.)
Example URLs:
– https://robertringer.com/the-vanishing-middle-ground/
– https://robertringer.com/the-futility-of-fear/
– https://robertringer.com/what-it-takes-to-reclaim-america/
– https://robertringer.com/the-return-of-the-aging-rebel/
Let me know if you’d like this embedded in a website, exported to a file, or used in another context.
