This terminal RSS reader consolidates all your news sources instantly
T

This terminal RSS reader consolidates all your news sources instantly

This terminal RSS reader consolidates all your news sources instantly

CLI
896 stars
N/A forks
N/A contributors

README

Project documentation from GitHub

Eilmeldung: Your Terminal's RSS Feed Just Got a Lot Faster

If you're like me, you've probably got a list of RSS feeds you mean to check—tech blogs, project updates, news sites. But opening a browser, navigating to a reader, and waiting for it to load can feel like just enough friction to let your feed fill up for days. What if your news came to you, instantly, right in the terminal where you're already working?

That's the idea behind Eilmeldung, a new terminal-based RSS reader. It's a simple, fast tool that pulls your feeds directly into your command line, stripping away the browser and the bloat to give you just the headlines.

What It Does

Eilmeldung is a lightweight RSS and Atom feed reader built for the terminal. You configure it with a list of feed URLs, and it fetches and displays the latest entries in a clean, readable format. It's designed for speed and minimalism, letting you scan headlines and open only the stories you care about without ever leaving your shell.

Why It's Cool

The real appeal here is the consolidation and immediacy. Instead of context-switching to a web app or a separate GUI program, your news is just a command away, integrated into your existing workflow. It feels like having a live news ticker for your specific interests.

From a technical perspective, it's a neat example of a focused, single-purpose tool done well. It uses the feedparser library in Python to handle the RSS/Atom parsing, presenting the results with simple formatting. The implementation is straightforward and hackable, which is great for developers who might want to tweak it—maybe to pipe headlines into a notification system, filter for specific keywords, or log trending topics.

How to Try It

Getting started is pretty standard for a Python tool.

  1. Clone the repo:

    git clone https://github.com/christo-auer/eilmeldung
    cd eilmeldung
    
  2. Install it: The project uses Poetry for dependency management.

    poetry install
    
  3. Configure your feeds: Add your RSS feed URLs to the feeds.txt file, one per line.

  4. Run it:

    poetry run python eilmeldung.py
    

That's it. Your feeds will populate in the terminal. Check the project's README for any additional options or configuration.

Final Thoughts

Eilmeldung isn't trying to be a full-featured reader with folders

Did you like this issue?

Join our weekly newsletter

Related Projects

Love discovering amazing projects?

Help us continue bringing you the best open-source discoveries every week.

Back to Projects
Last updated: Mar 18, 2026