{"id":50677366,"url":"https://github.com/adityajoshi/pyfeed","last_synced_at":"2026-06-08T16:06:32.244Z","repository":{"id":263291845,"uuid":"889921628","full_name":"adityajoshi/pyfeed","owner":"adityajoshi","description":"Terminal based rss feed reader written in Python","archived":false,"fork":false,"pushed_at":"2026-02-14T06:38:50.000Z","size":81,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-14T13:47:33.428Z","etag":null,"topics":["curses-ui","feedparser","python","rss-reader"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adityajoshi.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-17T15:27:50.000Z","updated_at":"2026-02-14T06:38:53.000Z","dependencies_parsed_at":"2024-12-09T03:26:48.125Z","dependency_job_id":"52aa52c2-0d68-44bc-8771-71dbbb460b12","html_url":"https://github.com/adityajoshi/pyfeed","commit_stats":null,"previous_names":["adityajoshi/pyfeed"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/adityajoshi/pyfeed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adityajoshi%2Fpyfeed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adityajoshi%2Fpyfeed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adityajoshi%2Fpyfeed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adityajoshi%2Fpyfeed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adityajoshi","download_url":"https://codeload.github.com/adityajoshi/pyfeed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adityajoshi%2Fpyfeed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34069546,"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-08T02:00:07.615Z","response_time":111,"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":["curses-ui","feedparser","python","rss-reader"],"created_at":"2026-06-08T16:06:30.551Z","updated_at":"2026-06-08T16:06:32.237Z","avatar_url":"https://github.com/adityajoshi.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PyFeed\n\nPyFeed is a terminal-based RSS/Atom feed reader written in Python. It uses `curses` for the interface, allowing you to browse and read your news feeds directly from the command line.\n\nThe application idea is taken from [sfeed](https://codemadness.org/git/sfeed/file/README.html) which is written in C.\n\n## Features\n\n-   **Two-Pane Interface:** Browse feed sources primarily on the left and their articles on the right.\n-   **Vim-like Navigation:** Use `j`, `k`, `h`, `l` for efficient navigation.\n-   **Search:** Integrated search functionality to find specific articles or feeds.\n-   **Browser Integration:** Open articles in your default web browser.\n-   **Read State Tracking:** Mark articles or entire feeds as read.\n\n## Installation\n\n### Prerequisites\n\n-   Python 3.x\n-   `pip` (Python package installer)\n\n### Setup\n\n1.  **Clone the repository** (if you haven't already):\n    ```bash\n    git clone \u003crepository-url\u003e\n    cd pyfeed\n    ```\n\n2.  **Create a virtual environment:**\n    ```bash\n    python3 -m venv venv\n    source venv/bin/activate\n    ```\n\n3.  **Install dependencies:**\n    ```bash\n    pip install -r requirements.txt\n    ```\n\n## Configuration\n\nPyFeed requires a configuration file and a data directory in your home folder.\n\n1.  **Create the configuration directory:**\n    ```bash\n    mkdir -p ~/.pyfeed/feeds\n    ```\n\n2.  **Copy the example configuration:**\n    ```bash\n    cp pyfeedrc.example ~/.pyfeed/pyfeedrc\n    ```\n\n3.  **Edit the configuration:**\n    Open `~/.pyfeed/pyfeedrc` in your text editor and add your RSS/Atom feeds in the `FEEDS` dictionary.\n\n    ```python\n    FEEDS = {\n        'News Site': 'https://example.com/rss',\n        'Blog': 'https://blog.example.com/feed.xml'\n    }\n    ```\n\n## Usage\n\n### 1. Update Feeds\nBefore reading, you need to fetch the latest articles from your configured feeds.\n\n```bash\npython pyfeed_update.py\n```\n\n### 2. View Feeds\nLaunch the main application to browse your feeds.\n\n```bash\npython pyfeed.py\n```\n\n## specific Controls \u0026 Shortcuts\n\n| Key Control | Action |\n| :--- | :--- |\n| **Navigation** | |\n| `j` / `Down` | Move selection down |\n| `k` / `Up` | Move selection up |\n| `h` / `Left` | Switch focus to Left Pane (Feed List) |\n| `l` / `Right` | Switch focus to Right Pane (Article List) |\n| `g` | Jump to top of list |\n| `G` | Jump to bottom of list |\n| **Actions** | |\n| `Enter` | Open selected article in default browser |\n| `r` | Mark selected article as **Read** |\n| `F` | Mark all articles in current feed as **Read** |\n| **Search** | |\n| `/` | Search for text in the current list |\n| `n` | Jump to **Next** search result |\n| `p` | Jump to **Previous** search result |\n| **General** | |\n| `q` | Quit application |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadityajoshi%2Fpyfeed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadityajoshi%2Fpyfeed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadityajoshi%2Fpyfeed/lists"}