{"id":51557845,"url":"https://github.com/ansichen/rss-feed-aggregator","last_synced_at":"2026-07-10T07:02:13.363Z","repository":{"id":369871359,"uuid":"1291957533","full_name":"AnSiChen/rss-feed-aggregator","owner":"AnSiChen","description":"A Flask application that aggregates RSS feeds, normalizes articles, stores them in a database, and presents them through a clean reading interface.","archived":false,"fork":false,"pushed_at":"2026-07-07T08:44:24.000Z","size":334,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-07T10:10:40.422Z","etag":null,"topics":["jinja2","python","rss","rss-aggregator","rss-feed","rss-parser","rss-reader","xml"],"latest_commit_sha":null,"homepage":"https://anthonyem.com/reading","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AnSiChen.png","metadata":{"files":{"readme":"README.md","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":"2026-07-07T07:44:40.000Z","updated_at":"2026-07-07T08:44:28.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/AnSiChen/rss-feed-aggregator","commit_stats":null,"previous_names":["ansichen/rss-feed-aggregator"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/AnSiChen/rss-feed-aggregator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnSiChen%2Frss-feed-aggregator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnSiChen%2Frss-feed-aggregator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnSiChen%2Frss-feed-aggregator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnSiChen%2Frss-feed-aggregator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AnSiChen","download_url":"https://codeload.github.com/AnSiChen/rss-feed-aggregator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnSiChen%2Frss-feed-aggregator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35323809,"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-07-10T02:00:06.465Z","response_time":60,"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":["jinja2","python","rss","rss-aggregator","rss-feed","rss-parser","rss-reader","xml"],"created_at":"2026-07-10T07:02:12.609Z","updated_at":"2026-07-10T07:02:13.348Z","avatar_url":"https://github.com/AnSiChen.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RSS Feed Aggregator\n\nA lightweight Python module for aggregating articles from multiple RSS feeds into a normalized, sortable collection.\n\nFocuses on the aggregation pipeline—downloading RSS feeds, parsing XML content, normalizing article metadata, and combining results into a single list. It excludes any web interface or presentation layer.\n\nThis aggregation engine powers to some extent the Reading section of my website:\n\n**Live Demo:** https://anthonyem.com/reading\n\n---\n\n## Features\n\n* Aggregate articles from multiple RSS feeds\n* Normalize articles into common data model\n* Sort articles by publication date\n* Extract article images when available\n* Simple, modular architecture\n* Easily extendable with additional RSS sources\n\n---\n\n## Project Structure\n\n```text\nrss_feed_aggregator/\n├── aggregator.py\n├── parser.py\n├── feeds.py\n└── models.py\n```\n\n---\n\n## Architecture\n\nThe aggregation pipeline is intentionally small and modular.\n\n![Architecture](screenshots/architecture.png)\n\n1. RSS feeds are defined in `feeds.py`\n2. `parser.py` downloads and parses each feed\n3. Feed entries are normalized into `Article` objects\n4. `aggregator.py` combines and sorts all articles\n\n---\n\n## Example\n\n```python\nfrom rss_feed_aggregator import load_articles\n\narticles = load_articles()\n\nfor article in articles:\n    print(article.title)\n```\n\n---\n\n## Screenshots\n\nReading interface powered by this aggregation engine:\n\n![Reading Page](screenshots/reading-page.png)\n\n---\n\n## Future Improvements\n\n* Improve compatibility with RSS feeds that omit fields such as `summary`, `published_parsed`, or `content`\n* Support multiple image extraction strategies for different feed formats\n* Configurable article filtering\n* Unit tests\n* Cleaning corrupted feeds\n\n---\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fansichen%2Frss-feed-aggregator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fansichen%2Frss-feed-aggregator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fansichen%2Frss-feed-aggregator/lists"}