{"id":13419032,"url":"https://github.com/tfussell/xlnt","last_synced_at":"2025-05-14T23:07:37.377Z","repository":{"id":16745294,"uuid":"19502813","full_name":"tfussell/xlnt","owner":"tfussell","description":":bar_chart: Cross-platform user-friendly xlsx library for C++11+","archived":false,"fork":false,"pushed_at":"2024-08-16T10:16:41.000Z","size":15706,"stargazers_count":1549,"open_issues_count":209,"forks_count":428,"subscribers_count":79,"default_branch":"master","last_synced_at":"2025-05-14T15:12:59.217Z","etag":null,"topics":["api","c-plus-plus","cpp","excel","microsoft","read","spreadsheet","write","xlsx"],"latest_commit_sha":null,"homepage":"","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/tfussell.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.md","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-05-06T16:58:23.000Z","updated_at":"2025-05-11T09:13:51.000Z","dependencies_parsed_at":"2024-01-31T01:04:07.750Z","dependency_job_id":"53dd83b8-00ab-4a71-8f95-90141ba3da5e","html_url":"https://github.com/tfussell/xlnt","commit_stats":{"total_commits":1486,"total_committers":58,"mean_commits":"25.620689655172413","dds":"0.31292059219380886","last_synced_commit":"297b331435d6dee09bf89c8a5ad974b01f18039b"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfussell%2Fxlnt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfussell%2Fxlnt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfussell%2Fxlnt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tfussell%2Fxlnt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tfussell","download_url":"https://codeload.github.com/tfussell/xlnt/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254189961,"owners_count":22029624,"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":["api","c-plus-plus","cpp","excel","microsoft","read","spreadsheet","write","xlsx"],"created_at":"2024-07-30T22:01:10.395Z","updated_at":"2025-05-14T23:07:32.368Z","avatar_url":"https://github.com/tfussell.png","language":"C++","funding_links":[],"categories":["TODO scan for Android support in followings","C++"],"sub_categories":[],"readme":"\u003cimg height=\"100\" src=\"https://user-images.githubusercontent.com/1735211/29433390-f37fa28e-836c-11e7-8a60-f8df4c30b424.png\" alt=\"xlnt logo\"\u003e\u003cbr/\u003e\n====\n\n[![Travis Build Status](https://travis-ci.org/tfussell/xlnt.svg?branch=master)](https://travis-ci.org/tfussell/xlnt)\n[![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/2hs79a1xoxy16sol?svg=true)](https://ci.appveyor.com/project/tfussell/xlnt)\n[![Coverage Status](https://coveralls.io/repos/github/tfussell/xlnt/badge.svg?branch=master)](https://coveralls.io/github/tfussell/xlnt?branch=master)\n[![Documentation Status](https://legacy.gitbook.com/button/status/book/tfussell/xlnt)](https://tfussell.gitbooks.io/xlnt/content/)\n[![License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](http://opensource.org/licenses/MIT)\n\n## Introduction\nxlnt is a modern C++ library for manipulating spreadsheets in memory and reading/writing them from/to XLSX files as described in [ECMA 376 4th edition](http://www.ecma-international.org/publications/standards/Ecma-376.htm). The first public release of xlnt version 1.0 was on May 10th, 2017. Current work is focused on increasing compatibility, improving performance, and brainstorming future development goals. For a high-level summary of what you can do with this library, see [the feature list](https://tfussell.gitbooks.io/xlnt/content/docs/introduction/Features.html). Contributions are welcome in the form of pull requests or discussions on [the repository's Issues page](https://github.com/tfussell/xlnt/issues).\n\n## Example\n\nIncluding xlnt in your project, creating a new spreadsheet, and saving it as \"example.xlsx\"\n\n```c++\n#include \u003cxlnt/xlnt.hpp\u003e\n\nint main()\n{\n    xlnt::workbook wb;\n    xlnt::worksheet ws = wb.active_sheet();\n    ws.cell(\"A1\").value(5);\n    ws.cell(\"B2\").value(\"string data\");\n    ws.cell(\"C3\").formula(\"=RAND()\");\n    ws.merge_cells(\"C3:C4\");\n    ws.freeze_panes(\"B2\");\n    wb.save(\"example.xlsx\");\n    return 0;\n}\n// compile with -std=c++14 -Ixlnt/include -lxlnt\n```\n\n## Documentation\n\nDocumentation for the current release of xlnt is available [here](https://tfussell.gitbooks.io/xlnt/content/).\n\n## Building xlnt - Using vcpkg\n\nYou can download and install xlnt using the [vcpkg](https://github.com/microsoft/vcpkg) dependency manager:\n\n    git clone https://github.com/microsoft/vcpkg.git\n    cd vcpkg\n    ./bootstrap-vcpkg.sh\n    ./vcpkg integrate install\n    ./vcpkg install xlnt\n\nThe xlnt port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/microsoft/vcpkg) on the vcpkg repository.\n\n## License\nxlnt is released to the public for free under the terms of the MIT License. See [LICENSE.md](https://github.com/tfussell/xlnt/blob/master/LICENSE.md) for the full text of the license and the licenses of xlnt's third-party dependencies. [LICENSE.md](https://github.com/tfussell/xlnt/blob/master/LICENSE.md) should be distributed alongside any assemblies that use xlnt in source or compiled form.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftfussell%2Fxlnt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftfussell%2Fxlnt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftfussell%2Fxlnt/lists"}