Alright, let me tell you about this thing I worked on, which I ended up calling ‘News Munster’. It wasn’t anything super fancy, just an idea I had kicking around.

I got tired of wading through national news sites just to find out what was happening down the road. You know how it is. So, I thought, why not try and pull together just the local stuff, maybe focus on the Munster region news sources I actually read? Sounded simple enough, right?
Getting Started
So, I sat down one weekend, figured I’d give it a shot. My first thought was maybe writing a small script. People always talk about Python being good for this sort of thing, grabbing stuff from websites. I found a few tutorials, looked like I just needed to point it at the website and tell it where the headlines were.
I picked two local news sites I check regularly. The plan was just to grab the main headlines and maybe the first sentence or two. Keep it basic.
Where Things Got Sticky
Well, the first website wasn’t too bad. Got something working after a bit of fiddling. But the second one? Man, that was a headache. It felt like every time I ran my little script, it would break. Total pain.
- Sometimes it pulled weird menu text instead of headlines.
- Other times, it just grabbed nothing at all.
- I suspect they had things set up to stop exactly what I was trying to do.
I spent way too much time just trying to pinpoint the right bits of the page. The website layout seemed to change slightly, or maybe I was just doing it wrong. It felt like I was constantly patching things up, only for them to break again a day later. It was less about getting news and more about fighting with code.

Trying a Different Angle
After getting properly frustrated, I took a step back. Maybe grabbing stuff directly from the page wasn’t the best way. I remembered RSS feeds. Those used to be big, right? A simpler way to get updates.
So, I started digging around on those news sites, looking for an RSS link. Found one for the first site! That was easy. Hooked it up, and it worked perfectly. Reliable updates, no more broken scripts for that one.
But the second site? No luck. Searched everywhere, couldn’t find an RSS feed link anywhere obvious. Maybe it was hidden, maybe they just didn’t offer one. Who knows? So, that part of the plan hit a dead end.
So, What’s “News Munster” Now?
In the end, my little ‘News Munster’ project didn’t quite turn out as planned. It basically became a simple tool to pull news from just one local source via its RSS feed. Not the multi-source aggregator I imagined.
It works, does its job quietly, fetching headlines from that one place. I learned a fair bit, mostly that websites can be tricky beasts and sometimes the ‘simple’ route (like RSS) is way better if you can find it. It wasn’t a total failure, I guess. It sits on my computer, and I check it occasionally. Better than nothing, keeps me slightly in the loop locally without the fuss. Just gotta remember it’s only half the picture I wanted.
