Kevin Schaul

Visual journalist/hacker

Feedmaker: Quickly generate an RSS feed from any website

April 16, 2023

I’ve been diverting much of my web browsing away from social media and towards RSS feeds, but there are so many sites that don’t offer the feeds for the content I care about.

Today I’m sharing a side project called Feedmaker (Source on GitHub). It’s a service that lets you generate RSS feeds from websites in next to no time. Just figure out a couple CSS selectors and pass them as URL parameters. You’ll get an RSS feed back.

For example, say I want a feed of the stories that hit the “Most read” section of the washingtonpost.com homepage. I open up the web inspector and figure out a CSS selector that gets me the items for the feed.

This one works: div[data-link-group="most-read"] h2

Screenshot of the element inspector tool

Then I drop the URL and CSS selector into Feedmaker and hit test. The feed looks good! Copy/paste the feed link into your RSS reader, and enjoy.

Screenshot of my new RSS feed

The app is quite simple, really. It’s just a web scraper that is instructed by URL parameters. Right now, you must pass:

And you can optionally include:

In the Washington Post example above, I’ve asked Feedmaker to get each item’s metadata. This is how each item in the feed includes the description – which only appears on washingtonpost.com for the first item.

Not all feeds that I want include links. One of my favorite record stores lists recommended albums on their homepage. Feedmaker can turn that into an RSS feed too.

(Don’t be surprised if Feedmaker goes down. It’s hosted on a free hobby fly.io instance.)

I’ve found this tool quite useful to quickly build RSS feeds for exactly what I’m interested in. Try it out and let me know what you think!