{"id":21810175,"url":"https://github.com/williamsmithedward/exceleration","last_synced_at":"2025-03-21T08:44:50.721Z","repository":{"id":197354384,"uuid":"698485171","full_name":"WilliamSmithEdward/Exceleration","owner":"WilliamSmithEdward","description":"Exceleration is a C# library that wraps ExcelDataReader. It helps you better interact with Excel files by simplifying the development experience.","archived":false,"fork":false,"pushed_at":"2024-06-27T18:43:04.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-17T09:55:20.833Z","etag":null,"topics":["async","automation","excel","exceldatareader","spreadsheet","workbook","worksheet"],"latest_commit_sha":null,"homepage":"https://www.nuget.org/packages/Exceleration","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/WilliamSmithEdward.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}},"created_at":"2023-09-30T04:15:55.000Z","updated_at":"2024-06-27T18:43:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"99c6177f-a1f0-4a08-99e5-3bd0bd528654","html_url":"https://github.com/WilliamSmithEdward/Exceleration","commit_stats":null,"previous_names":["williamsmithedward/exceleration"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WilliamSmithEdward%2FExceleration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WilliamSmithEdward%2FExceleration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WilliamSmithEdward%2FExceleration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WilliamSmithEdward%2FExceleration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WilliamSmithEdward","download_url":"https://codeload.github.com/WilliamSmithEdward/Exceleration/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244767542,"owners_count":20507110,"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","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":["async","automation","excel","exceldatareader","spreadsheet","workbook","worksheet"],"created_at":"2024-11-27T13:33:14.098Z","updated_at":"2025-03-21T08:44:50.695Z","avatar_url":"https://github.com/WilliamSmithEdward.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Exceleration\nExceleration is a C# library that wraps ExcelDataReader. It helps you better interact with Excel files by simplifying the development experience.\n\n## Example\n\n### Basic Usage\n```csharp\nusing Exceleration;\n\nvar wb = new Workbook(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, \"test.xlsx\"));\n\nvar ws = wb[\"Sheet1\"];\n\nvar cell = ws[\"A1\"];\n\nConsole.WriteLine(cell.Address + \": \" + cell.Value);\n\ncell = cell.Offset(1, 0);\n\nConsole.WriteLine(cell.Address + \": \" + cell.Value);\n\ncell = cell.Offset(0, 1);\n\nConsole.WriteLine(cell.Address + \": \" + cell.Value);\n```\n\n### Get All Cells\n```csharp\nusing Exceleration;\n\nvar wb = new Workbook(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, \"test.xlsx\"));\n\nvar ws = wb[\"Sheet1\"];\n\nvar cells = ws.Cells;\n\nConsole.WriteLine(cells.First().Address + \": \" + cells.First().Value);\n```\n\n### Using LINQ to Filter Cells\n```csharp\nusing Exceleration;\n\nvar wb = new Workbook(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, \"test.xlsx\"));\n\nvar ws = wb[\"Sheet1\"];\n\nvar cells = ws.Cells.Where(x =\u003e x.ColLetter.Equals(\"A\"));\n\nforeach (var item in cells)\n{\n    Console.WriteLine(item.Address + \": \" + item.Value + \" \" + item.ColLetter);\n}\n```\n\n### Accessing Rows and Columns Collections\n```csharp\nusing Exceleration;\n\nvar wb = new Workbook(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, \"test.xlsx\"));\n\nvar ws = wb[\"Sheet1\"];\n\nvar columns = ws.Columns(\"A\");\n\nvar rows = ws.Rows(1);\n\nConsole.WriteLine(string.Join(\",\", columns.Select(x =\u003e x.Value)));\n\nConsole.WriteLine(string.Join(\",\", rows.Select(x =\u003e x.Value)));\n```\n\n## Attributions\nNuGet icon \"SQLServerInteraction.png\" designed by Stockes Design on Freepik.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilliamsmithedward%2Fexceleration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwilliamsmithedward%2Fexceleration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilliamsmithedward%2Fexceleration/lists"}