{"id":24360391,"url":"https://github.com/dms-codes/rss-reader","last_synced_at":"2026-06-01T09:32:02.199Z","repository":{"id":269795689,"uuid":"908485033","full_name":"dms-codes/rss-reader","owner":"dms-codes","description":"The RSS Reader is a desktop application for reading and managing RSS feeds. It is built using Python and the wxPython library for the graphical user interface. The application allows users to:","archived":false,"fork":false,"pushed_at":"2024-12-26T07:28:22.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-25T21:00:38.969Z","etag":null,"topics":["ai","python","rss-reader"],"latest_commit_sha":null,"homepage":"https://github.com/dms-codes/rss-reader","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dms-codes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-26T07:26:31.000Z","updated_at":"2024-12-26T07:29:10.000Z","dependencies_parsed_at":"2024-12-26T08:25:08.136Z","dependency_job_id":"2a06417d-6d09-4adf-b0f8-f59a0d8b0e22","html_url":"https://github.com/dms-codes/rss-reader","commit_stats":null,"previous_names":["dms-codes/rss-reader"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dms-codes/rss-reader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dms-codes%2Frss-reader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dms-codes%2Frss-reader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dms-codes%2Frss-reader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dms-codes%2Frss-reader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dms-codes","download_url":"https://codeload.github.com/dms-codes/rss-reader/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dms-codes%2Frss-reader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33769490,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","python","rss-reader"],"created_at":"2025-01-18T21:19:39.109Z","updated_at":"2026-06-01T09:32:02.182Z","avatar_url":"https://github.com/dms-codes.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RSS Reader\n\n## Overview\nThe RSS Reader is a desktop application for reading and managing RSS feeds. It is built using Python and the wxPython library for the graphical user interface. The application allows users to:\n\n- Add, edit, and remove RSS feed URLs.\n- Organize feeds into categories.\n- View feed content and metadata.\n- Analyze content sentiment and extract keywords.\n- Translate feed content.\n- Copy screenshots of feed content to the clipboard.\n\n## Features\n\n- **Tree-Based Feed Organization**: Categorize and manage RSS feeds in a hierarchical structure.\n- **Content Viewer**: View and interact with feed content in an HTML panel.\n- **Sentiment Analysis**: Automatically analyze the sentiment (positive, negative, or neutral) of feed content.\n- **Keyword Extraction**: Identify and display the most relevant keywords from feed content.\n- **Translation**: Translate feed titles and content to Indonesian or other languages using Google Translator.\n- **Screenshot to Clipboard**: Copy a screenshot of the feed content panel to the clipboard.\n\n## Installation\n\n### Prerequisites\n- Python 3.8 or later\n- Pip (Python package manager)\n\n### Install Required Libraries\nRun the following command to install the necessary libraries:\n\n```bash\npip install wxPython feedparser nltk textblob Sastrawi deep-translator\n```\n\n### Download the Application\nClone or download the repository to your local machine:\n\n```bash\ngit clone https://github.com/dms-codes/rss-reader.git\ncd rss-reader\n```\n\n### Additional Setup\n1. **NLTK Setup**: Download the necessary NLTK data for tokenization and stopwords.\n   Run the following Python code:\n\n   ```python\n   import nltk\n   nltk.download('punkt')\n   nltk.download('stopwords')\n   ```\n\n2. **Feed URLs File**: Create a `feed_urls.txt` file in the project directory to store feed URLs, descriptions, and categories. Each line should be in the format:\n\n   ```\n   \u003cfeed_url\u003e|\u003cdescription\u003e|\u003ccategory\u003e\n   ```\n\n## Usage\n\n1. Run the application:\n   ```bash\n   python rss_reader.py\n   ```\n2. Add, edit, or remove feed URLs using the tree-based interface.\n3. Select a feed to view its content, metadata, and sentiment analysis.\n4. Use the toolbar to copy screenshots of feed content to the clipboard.\n\n## Key Components\n\n### Main Application (RSSReaderFrame)\n- **Feed URL Panel**: Manage RSS feeds and categories.\n- **Title Panel**: Display titles of feed entries.\n- **Content Panel**: Show the content of the selected feed entry, including metadata, keywords, sentiment, and translations.\n\n### Utility Functions\n- **Keyword Extraction**: Extracts the most common keywords using NLTK and Sastrawi.\n- **Sentiment Analysis**: Uses TextBlob to analyze content sentiment.\n- **Translation**: Uses GoogleTranslator for content translation.\n- **Feed Parsing**: Uses `feedparser` to parse RSS feeds.\n\n## File Structure\n\n```\n.\n├── rss_reader.py       # Main application script\n├── feed_urls.txt       # File storing feed URLs, descriptions, and categories\n├── rss_icon.png        # Icon for the application (optional)\n└── README.md           # Documentation\n```\n\n## Screenshots\n\n### Main Interface\n![Main Interface](example_screenshot.png)\n\n## Contributing\nFeel free to fork the repository and submit pull requests. For major changes, please open an issue to discuss the changes first.\n\n## License\nThis project is licensed under the MIT License. See the LICENSE file for details.\n\n## Author\n- **dms-codes**  \nGitHub: [github.com/dms-codes](https://github.com/dms-codes)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdms-codes%2Frss-reader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdms-codes%2Frss-reader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdms-codes%2Frss-reader/lists"}