{"id":20033178,"url":"https://github.com/dbr/pyfeedproc","last_synced_at":"2025-05-05T05:31:03.439Z","repository":{"id":439591,"uuid":"61477","full_name":"dbr/pyfeedproc","owner":"dbr","description":"Simple framework for modifying RSS/Atom feeds, in Python [Not actively maintained]","archived":false,"fork":false,"pushed_at":"2018-06-17T09:36:30.000Z","size":45,"stargazers_count":6,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-08T17:21:23.317Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dbr.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}},"created_at":"2008-10-10T08:10:18.000Z","updated_at":"2022-11-28T16:01:20.000Z","dependencies_parsed_at":"2022-07-07T14:41:21.742Z","dependency_job_id":null,"html_url":"https://github.com/dbr/pyfeedproc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbr%2Fpyfeedproc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbr%2Fpyfeedproc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbr%2Fpyfeedproc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbr%2Fpyfeedproc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dbr","download_url":"https://codeload.github.com/dbr/pyfeedproc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252445800,"owners_count":21749120,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-13T09:44:49.367Z","updated_at":"2025-05-05T05:31:03.166Z","avatar_url":"https://github.com/dbr.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is a simple feed-processing framework, written in Python.\n\nAllows you to programatically modify an RSS feed. It uses feedparser to parse the feeds.\n\nProcessors are classes, which inherent the FeedProc class. The processor uses specifically named functions to determine which item to modify. For example, proc_enteries_title will process each feed item's \"title\".\n\nEach function is given two arguments, the first is the original value, the second is the entire element (with entries, this is the entire news \u003citem\u003e). Each function simply returns the desired new value.\n\nAs a simple example processor, to truncate every RSS item's title to 20 characters:\n\n\nfrom feedproc import FeedProc\n\nclass ExampleProcessor(FeedProc):\n    proc_enteries_title(self, orig_title, full_item):\n        truncated_title = orig_title[20:]\n        return truncated_title\n\nThe whole system is quite simple. It is intended to remove annoyances from RSS feeds, such as adverts, similar to what \"Yahoo Pipes\" is, but FeedProc is *much* simpler and does not depend on third-party servers. It is also much more flexible (as processors are simple Python classes)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbr%2Fpyfeedproc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdbr%2Fpyfeedproc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbr%2Fpyfeedproc/lists"}