TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: OSS to manage categorised and tagged links and search

7 pointsby rayascottabout 7 years ago
I have an OPML file of RSS feeds and want to create a website that will categorize and tag the pages in the RSS feeds. The idea is to create a searchable & explorable minisite for a topic that others will find helpful. Anyone know anything out there like this that’s open source?

1 comment

karterkabout 7 years ago
You can use a combination of open source projects. For example, you can use an OPML parser library like Listparser[0] to get the contents of the pages.<p>Then, you can index them into a search engine of sorts. You can use Elasticsearch[1] for that, or if you want to try something that&#x27;s much simpler that I have been working on, try Typesense[2].<p>Finally, you can use Flask[3] to create a simple website&#x2F;frontend for integrating with the search engine.<p>[0]: <a href="https:&#x2F;&#x2F;github.com&#x2F;kurtmckee&#x2F;listparser" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;kurtmckee&#x2F;listparser</a> [1]: <a href="https:&#x2F;&#x2F;www.elastic.co&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.elastic.co&#x2F;</a> [2]: <a href="https:&#x2F;&#x2F;typesense.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;typesense.org&#x2F;</a> [3]: <a href="http:&#x2F;&#x2F;flask.pocoo.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;flask.pocoo.org&#x2F;</a>