With Twitter being worse than ever, I can no longer pull local news and municipal events through Nitter’s RSS feature.
Since so many groups have stopped using RSS to deliver news, and have put all their eggs in the social media basket, it leaves a void that can’t be replaced by signing up to a dozen newsletters.
Do you guys have any other solutions for maybe scraping websites to generate RSS feeds or something like that?
I’m using FresshRSS. It has web scraping, but seems to require a lot of manual syntax entry, and seems to error out regardless.
Fairly simple using Python locally with no need for a server:
requests-html
to get the website front page, then loop through the articles usingfeedgenerator
to increment a feed object, then pipe it as XML to a file.Obviously this is not simple at all but it does work. I have been consuming an RSS-free site by RSS every day for the last year. Provided you ensure the
guid
for each item is its URL, the RSS reader will keep track of what you have seen already, in order, which of course is the magic feature of RSS.