{"id":13581940,"url":"https://github.com/kkdai/githubrss","last_synced_at":"2026-03-06T03:32:39.308Z","repository":{"id":142869943,"uuid":"54093601","full_name":"kkdai/githubrss","owner":"kkdai","description":"A github notification (starred, follower, followed) RSS feed in Golang","archived":false,"fork":false,"pushed_at":"2021-04-14T02:27:37.000Z","size":2490,"stargazers_count":15,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-07T07:47:04.924Z","etag":null,"topics":["github","golang","rss"],"latest_commit_sha":null,"homepage":"","language":"Go","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/kkdai.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":"2016-03-17T06:17:33.000Z","updated_at":"2024-01-12T08:25:48.000Z","dependencies_parsed_at":"2023-06-25T22:52:50.611Z","dependency_job_id":null,"html_url":"https://github.com/kkdai/githubrss","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/kkdai/githubrss","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kkdai%2Fgithubrss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kkdai%2Fgithubrss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kkdai%2Fgithubrss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kkdai%2Fgithubrss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kkdai","download_url":"https://codeload.github.com/kkdai/githubrss/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kkdai%2Fgithubrss/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30160891,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T22:39:40.138Z","status":"online","status_checked_at":"2026-03-06T02:00:08.268Z","response_time":250,"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":["github","golang","rss"],"created_at":"2024-08-01T15:02:20.287Z","updated_at":"2026-03-06T03:32:39.287Z","avatar_url":"https://github.com/kkdai.png","language":"Go","readme":"githubrss:A github notification (starred, follower, followed) RSS feed in Golang\n==============\n\n [![GoDoc](https://godoc.org/github.com/kkdai/githubrss?status.svg)](https://godoc.org/github.com/kkdai/githubrss) \n![Go](https://github.com/kkdai/githubrss/workflows/Go/badge.svg)\n\n\nGithub RSS will help you to generate RSS feed string of specific user ID with  (Starred, Following, Followed).\n\nYou can use this to write a web service to host specific RSS for other services like [IFTTT](http://ifttt.com)\n\n\nInstallation and Usage\n=============\n\n\nInstall\n---------------\n\n```go\ngo get github.com/kkdai/githubrss\n```\n\nUsage\n---------------\n\n```go\n\npackage main\n\nimport (\n    \"github.com/kkdai/githubrss\"\n    \"fmt\"\n)\n\nfunc main() {\n\tg := NewGithubRss(\"kkdai\")\n\t//Get latest 5 starred RSS\n\tret, err := g.GetStarred(5)\n\n\tif err != nil {\n\t\tfmt.Println(\"Not get starred response:\", err)\n\t}\n\n\tfmt.Println(\"Starred RSS:\", ret)\n\n\n\t//Get latest 5 follower RSS\n\tret, err = g.GetFollower(5)\n\n\tif err != nil {\n\t\tfmt.Println(\"Not get follower response:\", err)\n\t}\n\n\tfmt.Println(\"Follower RSS:\", ret)\n\n\n\t//Get latest 5 following RSS\n\tret, err = g.GetFollowing(5)\n\n\tif err != nil {\n\t\tfmt.Println(\"Not get following response:\", err)\n\t}\n\n\tfmt.Println(\"Following RSS:\", ret)\n}\n\n```\n\nInspired By\n=============\n\n- [Github API doc](https://developer.github.com/v3/users/)\n- [https://github.com/lukeforeman/fever-google-starred-importer/blob/master/import.php](https://github.com/lukeforeman/fever-google-starred-importer/blob/master/import.php)\n- [http://stackoverflow.com/questions/14893287/creating-an-rss-feed-for-github-stars](http://stackoverflow.com/questions/14893287/creating-an-rss-feed-for-github-stars)\n- [https://github.com/thomasyung/twitter-json-to-rss/blob/master/twitter_json_to_rss.php](https://github.com/thomasyung/twitter-json-to-rss/blob/master/twitter_json_to_rss.php)\n- [https://gist.github.com/Sanjo/4ed367c68acc27fd9a18](https://gist.github.com/Sanjo/4ed367c68acc27fd9a18)\n\n\nProject52\n---------------\n\nIt is one of my [project 52](https://github.com/kkdai/project52).\n\n\nLicense\n---------------\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n","funding_links":[],"categories":["Go"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkkdai%2Fgithubrss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkkdai%2Fgithubrss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkkdai%2Fgithubrss/lists"}