A pure command-line RSS reader written in pure Python.
RSS Reader is a lightweight tool for parsing and displaying information from RSS feeds. It can handle both plain text and JSON output formats.
- Parse XML-formatted RSS feeds
- Display information about RSS channels and items
- Format output as plain text or JSON
pip install -r requirements.txtcd rss_reader
python main.py [source] [--json] [--limit LIMIT]`source`: RSS URL
`--json`: Print result as JSON in stdout
`--limit LIMIT`: Limit the number of news topics
- Parse an RSS feed and display information in plain text:
python main.py https://example.com/rss-feed- Parse an RSS feed and display information in JSON format:
python main.py https://example.com/rss-feed --json- Limit the number of displayed news topics:
python main.py https://example.com/rss-feed --limit 5