this post was submitted on 03 Sep 2023
550 points (95.8% liked)
Technology
59135 readers
2825 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each another!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, to ask if your bot can be added please contact us.
- Check for duplicates before posting, duplicates may be removed
Approved Bots
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
This is the reason why for me, I actually took it one step further and rebuilt a front end news site with Django and shared the link out with friends who are interested in the same topics, added a discussion feature. Essentially, I have a python script that runs and pulls RSS feed data. If the whole article isn’t included then it uses Asyncio, aiohttp, and Beautifulsoup to pull in the article. Dump all that to a Postgres instance then have Django run on top of it. It’s like deconstructing news to reconstruct it
Would you mind sharing this? I would be very interested in running my own instance of this and modifying it to fit my needs!
Newsblur also does something similar and is self-hostable.
also check out miniflux
That sounds awesome! Any chance you'd be willing to share your code?