{"id":15108876,"url":"https://github.com/epplussoftware/epplus","last_synced_at":"2026-02-04T10:51:22.377Z","repository":{"id":37450934,"uuid":"189234354","full_name":"EPPlusSoftware/EPPlus","owner":"EPPlusSoftware","description":"EPPlus-Excel spreadsheets for .NET","archived":false,"fork":false,"pushed_at":"2025-05-13T14:30:14.000Z","size":32707,"stargazers_count":1913,"open_issues_count":80,"forks_count":293,"subscribers_count":48,"default_branch":"develop8","last_synced_at":"2025-05-13T15:49:23.085Z","etag":null,"topics":["epplus","excel","net","netcore","netframework","netstandard","ooxml","spreadsheet"],"latest_commit_sha":null,"homepage":"https://epplussoftware.com","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EPPlusSoftware.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"license.md","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-05-29T13:47:01.000Z","updated_at":"2025-05-13T12:42:55.000Z","dependencies_parsed_at":"2023-09-23T10:19:09.589Z","dependency_job_id":"342c1d66-a21b-450a-8248-4e0d9035ccb9","html_url":"https://github.com/EPPlusSoftware/EPPlus","commit_stats":{"total_commits":1655,"total_committers":39,"mean_commits":42.43589743589744,"dds":"0.38972809667673713","last_synced_commit":"624103cf1913b49297d4ccc365bd10ed224dfd00"},"previous_names":[],"tags_count":99,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EPPlusSoftware%2FEPPlus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EPPlusSoftware%2FEPPlus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EPPlusSoftware%2FEPPlus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EPPlusSoftware%2FEPPlus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EPPlusSoftware","download_url":"https://codeload.github.com/EPPlusSoftware/EPPlus/tar.gz/refs/heads/develop8","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254076850,"owners_count":22010611,"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":["epplus","excel","net","netcore","netframework","netstandard","ooxml","spreadsheet"],"created_at":"2024-09-25T22:41:59.714Z","updated_at":"2026-02-04T10:51:22.372Z","avatar_url":"https://github.com/EPPlusSoftware.png","language":"C#","readme":"﻿![Nuget](https://img.shields.io/nuget/v/epplus)\n [![Download EPPlus from nuget](https://img.shields.io/nuget/dt/epplus?label=Nuget%20downloads)](https://www.nuget.org/packages/EPPlus/)\n[![Build status](https://ci.appveyor.com/api/projects/status/qw2hvjk7yfxv7vrv?svg=true)](https://ci.appveyor.com/project/EPPlusSoftware/epplus8)\n# EPPlus 8\n\n## License\nEPPlus 8 has a dual license model with a community license for noncommercial use: [Polyform Noncommercial 1.0.0](https://polyformproject.org/licenses/noncommercial/1.0.0/).\n\nWith this license EPPlus is free to use for personal/noncommercial use, but will require a commercial license to be used in a commercial business.\n\nCommercial licenses, which includes support, can be purchased at (https://www.epplussoftware.com/). For more details on our licensing, see our [License FAQ](https://epplussoftware.com/en/LicenseOverview/LicenseFAQ).\n\nThe source code for EPPlus is available at [EPPlus Software's github repository](https://github.com/EPPlusSoftware/EPPlus)\n\n## License parameter must be set\nBefore using EPPlus 8, you must specify the license to use. This is done via the static License property of the ExcelPackage class\n\nFor commercial use, set the ExcelPackage.License.SetCommercial(string), with your license key as argument. \nYour license key is available on your license, under the section \"My Licenses\" on our website and on EPPLus license documents created after February 2025.\n\nFor noncommercial use, set the ExcelPackage.License.SetNonCommercialOrganization(string) or ExcelPackage.License.SetNonCommercialPersonal(string) with your name as argument. \nWhen configured for noncommercial use, EPPlus will reserve the Comment and Tag field of the package for license information and add a license file within the package.\n\nYou can also configure these settings in the configuration files or in an environment varialble:\n\n### 1. Via code\n```csharp\n// If you are a commercial business and have purchased a commercial license:\nExcelPackage.License.SetCommercial(\"\u003cYour License Key here\u003e\");\n\n// If you use EPPlus in a noncommercial context according to the Polyform Noncommercial license:\nExcelPackage.License.SetNonCommercialPersonal(\"\u003cYour Name\u003e\");\n// or...\nExcelPackage.License.SetNonCommercialOrganization(\"\u003cYour Noncommercial Organization\u003e\");\n    \nusing(var package = new ExcelPackage(new FileInfo(\"MyWorkbook.xlsx\")))\n{\n\n}\n```\n### 2. Via appSettings.json\nFor commercial use:\n```jsonc\n{\n    \"EPPlus\": {\n        \"ExcelPackage\": {\n            \"License\": \"Commercial:\u003cYour License Key here\u003e\" \n            }\n        }\n}\n```\nFor noncommercial use:\n```jsonc\n{\n    \"EPPlus\": {\n        \"ExcelPackage\": {\n            \"License\": \"NonCommercialPersonal:\u003cYour Name\u003e\" //..or use \"NonCommercialOrganization:\u003cYour organizations name\u003e\" \n            }\n        }\n}\n```\n\n### 3. Via app/web.config\nFor commercial use:\n```xml\n\u003cappSettings\u003e\n    \u003c!--The license context used--\u003e\n    \u003cadd key=\"EPPlus:ExcelPackage.License\" value=\"Commercial:\u003cYour License Key here\u003e\" /\u003e \n\u003c/appSettings\u003e\n```\nFor noncommercial use:\n```xml\n\u003cappSettings\u003e\n    \u003c!--The license context used--\u003e\n    \u003cadd key=\"EPPlus:ExcelPackage.License\" value=\"NonCommercialPersonal:\u003cYour Name\u003e\" /\u003e \u003c!--..or use \"NonCommercialOrganization:Your organizations name\" --\u003e\n\u003c/appSettings\u003e\n```\n### 4. Set the environment variable 'EPPlusLicense'\nThis might be the easiest way of configuring this.   \nSet the variable to `Commercial:\u003cYour License Key\u003e`, `NonCommercialPersonal:\u003cYour Name\u003e` or `NonCommercialOrganization:\u003cYour organizations name\u003e`\n\nThe example below set the license key using the SETX command in the Windows console on the user level, but you can set it in any way you prefer.\n\n```console\n\u003e SETX EPPlusLicense \"Commercial:\u003cYour License Key\u003e\"\n```\n\n## New features in EPPlus 8\nSee https://epplussoftware.com/en/Developers/EPPlus8\n## Breaking Changes\nSee https://github.com/EPPlusSoftware/EPPlus/wiki/Breaking-Changes-in-EPPlus-8\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepplussoftware%2Fepplus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fepplussoftware%2Fepplus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepplussoftware%2Fepplus/lists"}