{"id":45482686,"url":"https://github.com/yudukikun5120/note2rss","last_synced_at":"2026-02-22T16:31:41.735Z","repository":{"id":220541353,"uuid":"751916243","full_name":"yudukikun5120/note2rss","owner":"yudukikun5120","description":"note.comのフォロイー群のRSSフィードコレクションファイルを生成する","archived":false,"fork":false,"pushed_at":"2024-02-02T16:14:17.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-24T15:10:29.388Z","etag":null,"topics":["notedotcom","rss","rss-feed"],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yudukikun5120.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}},"created_at":"2024-02-02T15:57:24.000Z","updated_at":"2024-02-02T16:27:01.000Z","dependencies_parsed_at":"2024-02-02T17:05:34.523Z","dependency_job_id":"6b7171b9-bde0-4e1a-ab7d-6a47491c1f48","html_url":"https://github.com/yudukikun5120/note2rss","commit_stats":null,"previous_names":["yudukikun5120/note2rss"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yudukikun5120/note2rss","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yudukikun5120%2Fnote2rss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yudukikun5120%2Fnote2rss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yudukikun5120%2Fnote2rss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yudukikun5120%2Fnote2rss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yudukikun5120","download_url":"https://codeload.github.com/yudukikun5120/note2rss/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yudukikun5120%2Fnote2rss/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29718411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T15:10:41.462Z","status":"ssl_error","status_checked_at":"2026-02-22T15:10:04.636Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["notedotcom","rss","rss-feed"],"created_at":"2026-02-22T16:31:41.025Z","updated_at":"2026-02-22T16:31:41.728Z","avatar_url":"https://github.com/yudukikun5120.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# note2rss\n\n[note.com](https://note.com) のフォローユーザーのRSSフィードコレクションファイル（OPMLファイル）を生成する\n\n## 使い方\n\nまず、このリポジトリをクローンします。\n\n```sh\ngit clone https://github.com/yudukikun5120/note2rss.git\n```\n\n`Note2rss.write/2` 関数を実行することで、フォロー先となるユーザー群のRSSフィードコレクションファイルを生成することができます。\n第一引数にはフォロー元となるユーザー名、第二引数には取得するページ数の最大数を指定します。\n\n\u003e [!TIP]\n\u003e フォロー一覧ページのURLは `https://note.com/{ユーザー名}/followings?pages=1` であり、ページ数の最大値は、フォロー一覧ページのページネーションの最大値（`pages` パラメータの最大値）です。\n\n### 例\n\n以下の例は、フォロー元となるユーザー名 `yudukikun5120` およびフォロイーページの最大値であるページ `5` を指定し、RSSフィードコレクションファイルを生成します。\n\n```sh\nmix run -e \"Note2rss.write('yudukikun5120', 5)\"\n```\n\nRSSフィードコレクションファイルは、`note2rss` ディレクトリに `note.opml` という名前で保存され、次のような形式で記述されます。\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\u003copml version=\"1.0\" xmlns:atom=\"http://www.w3.org/2005/Atom\" xmlns:opml=\"http://opml.org/spec2\"\u003e\n  \u003chead\u003e\n    \u003ctitle\u003eNote2rss\u003c/title\u003e\n  \u003c/head\u003e\n  \u003cbody\u003e\n    \u003coutline title=\"note\" text=\"note\"\u003e\n      \u003coutline htmlUrl=\"https://note.com/info\" text=\"note公式\" title=\"note公式\" type=\"rss\" xmlUrl=\"https://note.com/info/rss\"/\u003e\n    \u003c/outline\u003e\n  \u003c/body\u003e\n\u003c/opml\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyudukikun5120%2Fnote2rss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyudukikun5120%2Fnote2rss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyudukikun5120%2Fnote2rss/lists"}