📊 Cross-platform user-friendly xlsx library for C++11+
Go to file
Thomas Fussell bec125d5c9 try again
2017-07-12 00:53:46 -07:00
benchmarks clean up samples and benchmarks, data handling 2017-04-13 20:18:32 -04:00
cmake intermediate commit 2017-01-21 09:04:10 -05:00
docs Adding clarification about the order of arguments 2017-05-05 08:35:09 +10:00
include/xlnt ignore arrow warnings and foward declare arrow 2017-07-12 00:03:26 -07:00
logo fix logo 2017-04-12 10:33:40 -04:00
samples include headers for memcpy and size_t in sha implementations 2017-04-13 22:31:44 -04:00
source try again 2017-07-12 00:53:46 -07:00
tests start working on streaming write 2017-07-04 17:52:46 -07:00
third-party include utfcpp for now to allow GCC <5.0 to build xlnt 2017-07-02 18:33:53 -07:00
xlntpyarrow replace backslashes with forward slashes in conda path 2017-07-12 00:31:12 -07:00
.appveyor.yml update ci scripts 2017-04-11 17:52:57 -04:00
.clang-format clang-format all source files, fix broken test helpers--lots of cleanup necessary as a result [ci skip] 2016-12-24 10:04:57 -05:00
.gitattributes clean up gitattributes 2016-11-09 17:24:47 -05:00
.gitignore now we're getting somewhere. all components are building. just need to clean up build process, test on osx/linux, and actually write the real glue code 2017-07-01 10:46:48 -04:00
.gitmodules use externalproject instead of git submodules for dependencies 2017-03-02 08:41:17 -05:00
.travis.yml point lcov removal to the moved miniz file 2017-04-20 14:57:25 -04:00
AUTHORS.md Adding tpmccallum 2017-05-04 11:59:33 +10:00
CHANGELOG.md start working on documentation [ci skip] 2017-04-12 10:17:26 -04:00
CMakeLists.txt I see no good reason to make the arrow interface a separate lib. Let's just make it optionally compiled in the main target. 2017-07-11 20:55:08 -07:00
CONTRIBUTING.md Clarify how to contribute to the project 2016-09-07 18:36:36 -04:00
LICENSE.md start working on documentation [ci skip] 2017-04-12 10:17:26 -04:00
README.md show master branch travis build status [ci skip] 2017-06-20 13:36:37 -04:00
SUMMARY.md start working on documentation [ci skip] 2017-04-12 10:17:26 -04:00

xlnt

Travis Build Status AppVeyor Build status Coverage Status ReadTheDocs Documentation Status License

Introduction

xlnt 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. 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. Contributions are welcome in the form of pull requests or discussions on the repository's Issues page.

Example

Including xlnt in your project, creating a new spreadsheet, and saving it as "example.xlsx"

#include <xlnt/xlnt.hpp>

int main()
{
    xlnt::workbook wb;
    xlnt::worksheet ws = wb.active_sheet();
    ws.cell("A1").value(5);
    ws.cell("B2").value("string data");
    ws.cell("C3").formula("=RAND()");
    ws.merge_cells("C3:C4");
    ws.freeze_panes("B2");
    wb.save("example.xlsx");
    return 0;
}
// compile with -std=c++14 -Ixlnt/include -lxlnt

Documentation

Documentation for the current release of xlnt is available here.

License

xlnt is released to the public for free under the terms of the MIT License. See LICENSE.md for the full text of the license and the licenses of xlnt's third-party dependencies. LICENSE.md should be distributed alongside any assemblies that use xlnt in source or compiled form.