This is a Python application for fetching and displaying the latest news articles or blog posts from RSS feeds. It provides a command-line interface for users to input the RSS feed URL and see the titles and links to the articles.
- Fetch and display the latest articles from an RSS feed.
- Simple command-line interface.
- No external dependencies; uses the feedparser library to parse RSS feeds.
main.py
: Main Python script for the application.requirements.txt
: List of project dependencies.
- Clone or download this repository to your local machine.
- Set up a Python environment (virtual environment recommended).
- Install the required library:
- pip install feedparser
- Run the RSS Feed Reader:
- python main.py
- Enter the RSS feed URL when prompted.
- The application will fetch and display the latest articles from the provided feed.
This project relies on the feedparser library for parsing RSS feeds. It doesn't have any other external dependencies.
This project is open-source and available under the MIT License.