Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qharny/rss_reader
A command-line RSS feed reader application built with Dart. This application allows users to manage RSS and Atom feed subscriptions, view feed items, and store subscriptions persistently.
https://github.com/qharny/rss_reader
dart dart-cli rss-feed rss-reader
Last synced: 13 days ago
JSON representation
A command-line RSS feed reader application built with Dart. This application allows users to manage RSS and Atom feed subscriptions, view feed items, and store subscriptions persistently.
- Host: GitHub
- URL: https://github.com/qharny/rss_reader
- Owner: Qharny
- Created: 2024-08-05T16:22:39.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-05T16:38:24.000Z (4 months ago)
- Last Synced: 2024-08-05T19:25:26.960Z (4 months ago)
- Topics: dart, dart-cli, rss-feed, rss-reader
- Language: Dart
- Homepage:
- Size: 10.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# RSS (Really Simple Syndication) Feed Reader
A command-line RSS feed reader application built with Dart. This application allows users to manage RSS and Atom feed subscriptions, view feed items, and store subscriptions persistently.
## Features
- Subscribe to RSS and Atom feeds
- List all subscribed feeds
- View items from a specific feed
- Delete feed subscriptions
- Persistent storage of feed subscriptions using SQLite
- Support for both RSS and Atom feed formats## Prerequisites
- Dart SDK (version 2.12.0 or higher)
- SQLite## Installation
1. Clone this repository:
git clone https://github.com/Qharny/rss_reader
cd rss_reader1. Install dependencies:
dart pub get## Usage
To run the application:
dart run bin/rss_reader.dartFollow the on-screen prompts to interact with the RSS Feed Reader:
1. Add Feed: Subscribe to a new RSS or Atom feed
2. List Feeds: View all subscribed feeds
3. View Feed Items: Fetch and display items from a specific feed
4. Delete Feed: Unsubscribe from a feed
5. Exit: Close the application## Project Structure
rss_reader/
│
├── bin/
│ └── rss_reader.dart
│
├── lib/
│ ├── models/
│ │ ├── feed.dart
│ │ └── feed_item.dart
│ │
│ ├── services/
│ │ ├── feed_parser.dart
│ │ ├── feed_storage.dart
│ │ └── feed_fetcher.dart
│ │
│ └── cli/
│ └── cli_manager.dart
│
├── pubspec.yaml
└── README.md## Dependencies
- http: ^0.13.5
- xml: ^6.2.2
- path: ^1.8.0
- sqflite: ^2.2.6
- sqflite_common_ffi: ^2.2.5## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
## License
This project is open source and available under the [MIT License](LICENSE).