{"id":50852219,"url":"https://github.com/tamada/welfare-time","last_synced_at":"2026-06-14T14:32:00.746Z","repository":{"id":363799287,"uuid":"1240420700","full_name":"tamada/welfare-time","owner":"tamada","description":"The webapp for listing the welfare facilities in the University.","archived":false,"fork":false,"pushed_at":"2026-06-10T10:53:51.000Z","size":836,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-10T12:22:57.576Z","etag":null,"topics":["gemini","webapp"],"latest_commit_sha":null,"homepage":"https://tamada.github.io/welfare-time/","language":"HTML","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/tamada.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-05-16T05:38:46.000Z","updated_at":"2026-06-10T10:53:57.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tamada/welfare-time","commit_stats":null,"previous_names":["tamada/welfare-time"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/tamada/welfare-time","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tamada%2Fwelfare-time","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tamada%2Fwelfare-time/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tamada%2Fwelfare-time/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tamada%2Fwelfare-time/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tamada","download_url":"https://codeload.github.com/tamada/welfare-time/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tamada%2Fwelfare-time/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34324004,"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-14T02:00:07.365Z","response_time":62,"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":["gemini","webapp"],"created_at":"2026-06-14T14:31:59.463Z","updated_at":"2026-06-14T14:32:00.740Z","avatar_url":"https://github.com/tamada.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# W-TIME\n\n現代の大学生活のための、福利厚生の時間と情報ナビ（Welfare Time \u0026 Information for Modern Education）です。\n\n大学の食堂やキッチンカーのスケジュール情報を自動収集し、APIとして公開・ホスティングするプロジェクトです。\nPDFやWebサイトなど情報が散らばっているため、これらを統合して提供することを目的としています。\nこのプロジェクトは、以下の2つの主要なデータソースから情報を取得し、正規化して静的なJSON APIとして配信します。\n\n1. **学食スケジュール**: PDF形式のメニュー表から情報を抽出する、\n2. **キッチンカー**: Webサイトからスケジュール情報をスクレイピングする。\n\n## リンク集\n\n- [プロジェクト詳細ドキュメント (GEMINI.md)](GEMINI.md): 命名規則、データパイプライン、ワークフロールールなどの詳細。\n- [APIリファレンス](help/api.html): 公開されているAPIエンドポイントの仕様。\n- [フロントエンド表示](public/index.html): 収集されたデータのブラウザ上での表示。\n- [利用規約・ライセンス](LICENSE): プロジェクトのライセンス情報。\n\n## データパイプライン\n\nデータは以下の手順で処理されます：\n\n1. **Fetch**: PDFやHTMLなどの生データを取得 (`scripts/fetch_*.py`)\n2. **Parse/Scrape**: 生データを解析し、正規化されたJSONに変換 (`scripts/parse_*.py`, `scripts/scrape_*.py`)\n3. **Generate**: 解析済みデータを統合し、`public/api/` 配下にエンドポイントファイルを生成 (`scripts/generator.py`)\n\n詳細は [GEMINI.md の Data Pipeline セクション](GEMINI.md#data-pipeline) を参照してください。\n\n## 開発・セットアップ\n\nPython 3.x 環境が必要です。\n\n### 依存関係のインストール\n\n```bash\npip install -r requirements.txt\n```\n\n### スクリプトの実行\n\n主要なスクリプトの使い方は各ファイルのヘルプを確認してください。\n\n```bash\npython scripts/generator.py --help\n```\n\n## ディレクトリ構成\n\n- `scripts/`: データ収集・変換用Pythonスクリプト\n- `public/`: ホスティングされる静的ファイル（APIエンドポイントを含む）\n- `data/`, `testdata/`: 過去のデータやテスト用データ\n- `help/`: 利用者向けのヘルプ・ドキュメント\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftamada%2Fwelfare-time","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftamada%2Fwelfare-time","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftamada%2Fwelfare-time/lists"}