{"id":30420228,"url":"https://github.com/maxzh1999tw/excely","last_synced_at":"2025-08-22T08:14:00.185Z","repository":{"id":204287954,"uuid":"711508237","full_name":"maxzh1999tw/Excely","owner":"maxzh1999tw","description":"輕鬆處理 Excel、CSV 的匯入匯出","archived":false,"fork":false,"pushed_at":"2025-05-24T02:56:34.000Z","size":523,"stargazers_count":2,"open_issues_count":5,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-21T19:59:30.057Z","etag":null,"topics":["csharp","dotnet","excel-export","excel-import"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maxzh1999tw.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":"2023-10-29T13:40:36.000Z","updated_at":"2025-05-24T02:56:38.000Z","dependencies_parsed_at":"2023-11-18T03:51:09.614Z","dependency_job_id":"e9bc0104-d6f8-4259-af9b-c4f41d35a169","html_url":"https://github.com/maxzh1999tw/Excely","commit_stats":null,"previous_names":["maxzh1999tw/excely"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/maxzh1999tw/Excely","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxzh1999tw%2FExcely","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxzh1999tw%2FExcely/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxzh1999tw%2FExcely/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxzh1999tw%2FExcely/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxzh1999tw","download_url":"https://codeload.github.com/maxzh1999tw/Excely/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxzh1999tw%2FExcely/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271606595,"owners_count":24788979,"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","status":"online","status_checked_at":"2025-08-22T02:00:08.480Z","response_time":65,"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":["csharp","dotnet","excel-export","excel-import"],"created_at":"2025-08-22T08:13:59.018Z","updated_at":"2025-08-22T08:14:00.177Z","avatar_url":"https://github.com/maxzh1999tw.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://github.com/maxzh1999tw/Excely/blob/main/logo/Excely.png?raw=true\" alt=\"image\" width=\"300\" height=\"auto\"\u003e\n\n# Excely\n一個基於 .NET 6 的套件，用於簡化各種常用資料結構與 Excel、Csv 之間的資料匯出及匯入。\n\n## 功能\n- 簡單的 API，用最快的速度上手並使用！\n- 完整的參數設定與自定義功能，每個環節都可以客製化。\n- 提供多種 Shader，用於進一步美化或調整匯出結果。\n\n## 使用範例\n\n以下是一個簡單的使用範例，展示如何將一個 `Student` 的 List 匯出為 Excel 檔案，再匯入回 List。\n\n```csharp\nstatic void Main(string[] args)\n{\n    var students = new List\u003cStudent\u003e()\n    {\n        new Student(0, \"Test1\", DateTime.Now),\n        new Student(1, \"Test2\", DateTime.Now),\n    };\n\n    // 匯出為 Excel\n    var exporter = ExcelyExporter.FromClassList\u003cStudent\u003e();\n    using var excel = exporter.ToExcel(students);\n\n    // 匯入為 List\u003cStudent\u003e\n    var worksheet = excel.Workbook.Worksheets.First();\n    var importer = new XlsxImporter();\n    IEnumerable\u003cStudent\u003e importResult = importer.ToClassList\u003cStudent\u003e(worksheet);\n}\n```\n\n您可以瀏覽 [開始使用 Excely](https://github.com/maxzh1999tw/Excely/wiki/%E9%96%8B%E5%A7%8B%E4%BD%BF%E7%94%A8-Excely) 來了解更多。\n\n## 貢獻\n可以先到 [Wiki](https://github.com/maxzh1999tw/Excely/wiki) 大致了解一下專案資訊。  \n[Issue](https://github.com/maxzh1999tw/Excely/issues) 頁面可能有些懸賞任務需要您的協助。  \n如果您有任何建議或發現任何問題，也歡迎開啟 issue 或提交 pull request。\n\n## 授權\n\n本套件使用 Apache-2.0 License 授權，詳情請參見 [LICENSE](LICENSE)。\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxzh1999tw%2Fexcely","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxzh1999tw%2Fexcely","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxzh1999tw%2Fexcely/lists"}