{"id":25020652,"url":"https://github.com/panoramicdata/panoramicdata.sheetmagic","last_synced_at":"2025-09-10T05:12:57.565Z","repository":{"id":62839503,"uuid":"178693827","full_name":"panoramicdata/PanoramicData.SheetMagic","owner":"panoramicdata","description":"Save/Load C# generics to/from Excel (XLSX) spreadsheets, easily","archived":false,"fork":false,"pushed_at":"2025-09-02T06:58:15.000Z","size":2339,"stargazers_count":12,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-02T07:08:33.446Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","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/panoramicdata.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-03-31T13:45:57.000Z","updated_at":"2025-09-02T06:56:34.000Z","dependencies_parsed_at":"2025-04-13T04:37:33.851Z","dependency_job_id":null,"html_url":"https://github.com/panoramicdata/PanoramicData.SheetMagic","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/panoramicdata/PanoramicData.SheetMagic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FPanoramicData.SheetMagic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FPanoramicData.SheetMagic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FPanoramicData.SheetMagic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FPanoramicData.SheetMagic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/panoramicdata","download_url":"https://codeload.github.com/panoramicdata/PanoramicData.SheetMagic/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FPanoramicData.SheetMagic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274416331,"owners_count":25280935,"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-09-10T02:00:12.551Z","response_time":83,"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":[],"created_at":"2025-02-05T12:17:03.130Z","updated_at":"2025-09-10T05:12:57.516Z","avatar_url":"https://github.com/panoramicdata.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PanoramicData.SheetMagic\n\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/70d9929b4d3c4d8ab2d69c5209a29b6e)](https://www.codacy.com/gh/panoramicdata/PanoramicData.SheetMagic/dashboard?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=panoramicdata/PanoramicData.SheetMagic\u0026amp;utm_campaign=Badge_Grade)\n![Commit Activity](https://img.shields.io/github/commit-activity/m/panoramicdata/PanoramicData.SheetMagic)\n\nEasily save/load from/to Excel (XLSX) documents using generics in C#\n\n## Writing to a file\n\n```c#\n// Write a list of items to an XLSX file\nvar things = new List\u003cThing\u003e\n{\n\tnew Thing\n\t{\n\t\tPropertyA = \"Value 1\",\n\t\tPropertyB = 1\n\t},\n\tnew Thing\n\t{\n\t\tPropertyA = \"Value 2\",\n\t\tPropertyB = 2\n\t},\n};\nvar fileInfo = new FileInfo($\"Output {DateTime.UtcNow:yyyyMMddTHHmmss}Z.xlsx\");\nusing var workbook = new MagicSpreadsheet(fileInfo);\nworkbook.AddSheet(things);\nworkbook.Save();\n```\n\n## Reading from a file\n\n```c#\n// Read a list of items from an XLSX file\nusing var workbook = new MagicSpreadsheet(fileInfo);\nworkbook.Load();\n// Use default worksheet\nvar cars = workbook.GetList\u003cCar\u003e();\n// Use a different worksheet\nvar animals = workbook.GetList\u003cAnimal\u003e(\"Animals\");\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanoramicdata%2Fpanoramicdata.sheetmagic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpanoramicdata%2Fpanoramicdata.sheetmagic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanoramicdata%2Fpanoramicdata.sheetmagic/lists"}